最简单的,第5条:- @reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Browser\Parameters" /v "MaintainServerList" /t reg_sz /d "No" /f >NUL
- @reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v "RegisteredOrganization" /t reg_sz /d "test1" /f >NUL
- @reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v "RegisteredOrganization" /t reg_sz /d "test2" /f >NUL
- @reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v "LegalNoticeCaption" /t reg_sz /d "Notice" /f >NUL
- @reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v "LegalNoticeText" /t reg_sz /d "This computer system is the property of XXX and is intended only for operation by authorized users. You agree to comply with the company's established security and computer use policies and procedures and acknowledge that XXX has discretion to monitor, use, record, or disclose any data on the system at any time." /f >NUL
- @reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Browser" /v "Start" /t reg_dword /d "00000004" /f >NUL
复制代码
|