新建bat文件,贴入以下代码即可
echo off
set tmp=%~dp0\tmp
set res=%localappdata%\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets
echo Store image Temporary directory %tmp%
for %%i in ( %tmp% ) do if not exist %%i md %%i
for /f "delims=" %%b in ('dir /a-d /b /s %res%') do (
if %%~zb GTR 409600 xcopy %%b %tmp%
)
ren %tmp%\* *.jpg
echo Select Picture
start /w %tmp%
exit
通过bat文件设置windows壁纸
博客介绍了设置windows壁纸的方法,只需新建bat文件,并将特定代码粘贴进去即可完成操作,涉及信息技术领域的脚本应用。

1万+

被折叠的 条评论
为什么被折叠?



