|
::解除桌面限制(运行组策略编辑器(gpedit.msc),本机策略-用户配置-管理模板-桌面,禁用或取消:隐藏禁用桌面,启用:禁用或取消:禁用Active Desktop)
reg delete HKCU/Software/Microsoft/Windows/CurrentVersion/Policies/Explorer /f /v NoDesktop
reg delete HKLM/Software/Microsoft/Windows/CurrentVersion/Policies/Explorer /f /v NoDesktop
reg delete HKCU/Software/Microsoft/Windows/CurrentVersion/Policies/Explorer /f /v NoActiveDesktop
reg delete HKLM/Software/Microsoft/Windows/CurrentVersion/Policies/Explorer /f /v NoActiveDesktop
::隐藏和禁用桌面图标(运行组策略编辑器(gpedit.msc),本机策略-用户配置-管理模板-桌面,启用:隐藏禁用桌面,启用:禁用Active Desktop)
reg add HKCU/Software/Microsoft/Windows/CurrentVersion/Policies/Explorer /f /v NoDesktop /d 1 /t REG_DWORD
reg add HKLM/Software/Microsoft/Windows/CurrentVersion/Policies/Explorer /f /v NoDesktop /d 1 /t REG_DWORD
reg add HKCU/Software/Microsoft/Windows/CurrentVersion/Policies/Explorer /f /v NoActiveDesktop /d 1 /t REG_DWORD
reg add HKLM/Software/Microsoft/Windows/CurrentVersion/Policies/Explorer /f /v NoActiveDesktop /d 1 /t REG_DWORD
|
|