|
|
本帖最后由 yyz2191958 于 2025-11-24 11:07 编辑
我在(【2025-06-01】WIN10PE 64位全功能版-基于官方22H2镜像)可以
http://bbs.wuyou.net/forum.php?m ... 5765&extra=page%3D1
用下面的注册表文件可以
===================================
Windows Registry Editor Version 5.00
;桌面自动排列
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Bags\1\Desktop]
"FFlags"=dword:40200225
"LogicalViewMode"=dword:00000003
"Mode"=dword:00000001
"IconSize"=dword:00000030
"Sort"=hex:00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,01,00,00,00,30,f1,\
25,b7,ef,47,1a,10,a5,f1,02,60,8c,9e,eb,ac,0a,00,00,00,01,00,00,00
"GroupView"=dword:00000000
"GroupByKey:FMTID"="{00000000-0000-0000-0000-000000000000}"
"GroupByKey:PID"=dword:00000000
"GroupByDirection"=dword:00000001
===========================================
桌面自动排列.bat:
@echo off
reg add "HKCU\Software\Microsoft\Windows\Shell\Bags\1\Desktop" /f /v "FFlags" /t REG_DWORD /d 1075839525
reg add "HKCU\Software\Microsoft\Windows\Shell\Bags\1\Desktop" /f /v "LogicalViewMode" /t REG_DWORD /d 3
reg add "HKCU\Software\Microsoft\Windows\Shell\Bags\1\Desktop" /f /v "Mode" /t REG_DWORD /d 1
reg add "HKCU\Software\Microsoft\Windows\Shell\Bags\1\Desktop" /f /v "IconSize" /t REG_DWORD /d 48
reg add "HKCU\Software\Microsoft\Windows\Shell\Bags\1\Desktop" /f /v "Sort" /t REG_BINARY /d 000000000000000000000000000000000100000030f125b7ef471a10a5f102608c9eebac0a00000001000000
reg add "HKCU\Software\Microsoft\Windows\Shell\Bags\1\Desktop" /f /v "GroupView" /t REG_DWORD /d 0
reg add "HKCU\Software\Microsoft\Windows\Shell\Bags\1\Desktop" /f /v "GroupByKey:FMTID" /t REG_SZ /d "{00000000-0000-0000-0000-000000000000}"
reg add "HKCU\Software\Microsoft\Windows\Shell\Bags\1\Desktop" /f /v "GroupByKey:PID" /t REG_DWORD /d 0
reg add "HKCU\Software\Microsoft\Windows\Shell\Bags\1\Desktop" /f /v "GroupByDirection" /t REG_DWORD /d 1
exit
|
|