|
本帖最后由 foxfirefox 于 2021-7-8 17:07 编辑
从20226预览版和19041.X某个版本起, 系统 属性(计算机右键菜单 属性)指向了 新的 设置程序了。本人测试了最新的20348、21390和22000版本可以换回旧版的。(在PE启动的最后 运行下面的批处理)
@Echo Off
Reg.exe add "HKCR\CLSID\{BB06C0E4-D293-4f75-8A90-CB05B6477EED}" /ve /t REG_SZ /d "System" /f
Reg.exe add "HKCR\CLSID\{BB06C0E4-D293-4f75-8A90-CB05B6477EED}" /v "InfoTip" /t REG_EXPAND_SZ /d "@%%SystemRoot%%\System32\systemcpl.dll,-2#immutable1" /f
Reg.exe add "HKCR\CLSID\{BB06C0E4-D293-4f75-8A90-CB05B6477EED}" /v "LocalizedString" /t REG_EXPAND_SZ /d "@%%SystemRoot%%\System32\systemcpl.dll,-1#immutable1" /f
Reg.exe add "HKCR\CLSID\{BB06C0E4-D293-4f75-8A90-CB05B6477EED}" /v "System.ApplicationName" /t REG_SZ /d "Microsoft.System" /f
Reg.exe add "HKCR\CLSID\{BB06C0E4-D293-4f75-8A90-CB05B6477EED}" /v "System.ControlPanel.Category" /t REG_SZ /d "5" /f
Reg.exe add "HKCR\CLSID\{BB06C0E4-D293-4f75-8A90-CB05B6477EED}" /v "System.ControlPanel.EnableInSafeMode" /t REG_DWORD /d "3" /f
Reg.exe add "HKCR\CLSID\{BB06C0E4-D293-4f75-8A90-CB05B6477EED}" /v "System.Software.TasksFileUrl" /t REG_SZ /d "Internal" /f
Reg.exe add "HKCR\CLSID\{BB06C0E4-D293-4f75-8A90-CB05B6477EED}\DefaultIcon" /ve /t REG_EXPAND_SZ /d "%%SystemRoot%%\System32\imageres.dll,-149" /f
Reg.exe add "HKCR\CLSID\{BB06C0E4-D293-4f75-8A90-CB05B6477EED}\InProcServer32" /ve /t REG_EXPAND_SZ /d "%%SystemRoot%%\System32\shdocvw.dll" /f
Reg.exe add "HKCR\CLSID\{BB06C0E4-D293-4f75-8A90-CB05B6477EED}\InProcServer32" /v "ThreadingModel" /t REG_SZ /d "Apartment" /f
Reg.exe add "HKCR\CLSID\{BB06C0E4-D293-4f75-8A90-CB05B6477EED}\Instance" /v "CLSID" /t REG_SZ /d "{328B0346-7EAF-4BBE-A479-7CB88A095F5B}" /f
Reg.exe add "HKCR\CLSID\{BB06C0E4-D293-4f75-8A90-CB05B6477EED}\Instance\InitPropertyBag" /v "ResourceDLL" /t REG_EXPAND_SZ /d "%%SystemRoot%%\System32\systemcpl.dll" /f
Reg.exe add "HKCR\CLSID\{BB06C0E4-D293-4f75-8A90-CB05B6477EED}\Instance\InitPropertyBag" /v "ResourceID" /t REG_DWORD /d "100" /f
Reg.exe add "HKCR\CLSID\{BB06C0E4-D293-4f75-8A90-CB05B6477EED}\ShellFolder" /v "Attributes" /t REG_DWORD /d "2684354560" /f
Reg.exe add "HKCR\CLSID\{BB06C0E4-D293-4f75-8A90-CB05B6477EED}\ShellFolder" /v "WantsParseDisplayName" /t REG_SZ /d "" /f
Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel\NameSpace\{BB06C0E4-D293-4f75-8A90-CB05B6477EED}" /ve /t REG_SZ /d "System" /f
reg delete "HKCR\CLSID\{BB06C0E4-D293-4f75-8A90-CB05B6477EEE}" /f
reg delete "HKEY_CLASSES_ROOT\WOW6432Node\CLSID\{BB06C0E4-D293-4f75-8A90-CB05B6477EEE}" /f |
评分
-
查看全部评分
|