Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Suppress Windows Activation NoticesContent of Suppress Windows Activation Notices.vbsMD5 Hash: 5CDB09A40E9B7F6A39F28896B04B9F5A |
||
' Description: Suppresses the Windows Activation reminder notices on a computer. This does not preclude the need to activate the computer; it simply prevents users from seeing the periodic reminders.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colWPASettings = objWMIService.ExecQuery _ ("Select * from Win32_WindowsProductActivation") For Each objWPASetting in colWPASettings objWPASetting.SetNotification(0) Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |