|
一般这种注册表问题,可以自已在PE或桌面系统通过工具监视比较
注册表比较工具.rar
(17.73 KB, 下载次数: 64)
例如:设定桌面为 E:\桌面 文件夹
XX.CMD文件,在PECMD.INI中加入
Exec =!路径\XX.CMD
————————————————————————————————
reg add "HKCU\Software\Microsoft\Windows\Shell\Bags\1\Desktop" /f /v "IconSize" /t REG_DWORD /d 32
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /f /v "Desktop" /t REG_SZ /d "E:\桌面"
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /f /v "Desktop" /t REG_SZ /d "E:\桌面"
reg add "HKU\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /f /v "Desktop" /t REG_SZ /d "E:\桌面"
————————————————————————————————
XX.REG文件,在PECMD.INI中加入
Exec =!REGEDIT /S "路径\XX.REG"
————————————————————————————————
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Bags\1\Desktop]
"IconSize"=dword:00000020
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders]
"Desktop"="E:\\桌面"
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders]
"Desktop"="E:\\桌面"
Windows Registry Editor Version 5.00
[HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders]
"Desktop"="E:\\桌面"
———————————————————————————————— |
|