DOS修改电脑桌面属性???

2025-04-06 02:07:30
推荐回答(3个)
回答1:

这个容易,新建个文本文档,输入以下内容,保存为a.reg,双击运行,按确认即可。右击桌面有显示了。当然网吧里很可能禁用注册表。

REGEDIT4

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoViewContextMenu"=-

如果上述操作不行,先导入这个:

REGEDIT4

[-HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionPolicies]
[-HKEY_USERS.DEFAULTSoftwareMicrosoftWindowsCurrentVersionPolicies]
[-HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionPolicies]
[HKEY_LOCAL_MACHINESoftwareMicrosoftInternet ExplorerMain]
"Window Title"="Microsoft Internet Explorer"
"Start Page"="about:blank"
[HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMain]

"Window Title"="Microsoft Internet Explorer"
[HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionWinlogon]
"LegalNoticeCaption"=""
"LegalNoticeText"=""
[HKEY_CURRENT_USERSoftwarePoliciesMicrosoftInternet ExplorerControl Panel]
"HomePage"=""
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionPoliciesExplorer]
"NoRun"="0"
[HKEY_USERS.DEFAULTSoftwarePoliciesMicrosoftInternet ExplorerControl Panel]

"SecurityTab"="1"

保存为b.reg导入,作用是解除注册表禁用,解除后再导入刚才那个a.reg即可。

回答2:

哎呀!~~改一下组策略就行了。还到DOS里好麻烦!~
想知道的。加空间。

回答3:

我来帮你写写吧。

@echo off
echo REGEDIT4 >%temp%\TianWang3.reg
echo [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CabinetState] >>%temp%\TianWang3.reg
echo "Use Search Asst"="no" >>%temp%\TianWang3.reg
regedit /s %temp%\TianWang3.reg
cls
gpupdate /force
echo 重启电脑之后生效!
pause
exit