Skip to main content

Disable Automatic Windows Activation


In Windows 7 
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion \SoftwareProtectionPlatform\Activation
In the right pane of the registry editor, you will find REG_DWORD value ‘Manual’. Right-click on it and select Modify. In the Value Data window which appears, change the DWORD value to 1.
The default is 0 which means auto-activation is enabled. Changing the value to 1 will disable auto-activation.
Close the Registry Editor and restart your system.
In Windows Vista 
The relevant key is:
HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SL\Activation

Comments

Popular posts from this blog

Javascript Form Validation

It's real simple. All you need to do is call a javascript function in a html  " onsubmit " in the form tag as a javascript return, like this       <form method="post" action="dosomething.php" onsubmit="return validateForm();"> If the code completes ok, the form is then sent to the page listed in "action" http://www.w3schools.com/js/js_form_validation.asp If the function specified in the onsubmit returns false, then the form is not sent to the page mentioned in action.