Changing Windows 7 Product Key
Changing key:
slmgr.vbs -ipk <type your product key here>
Activation:
slmgr.vbs -ato
Changing key:
slmgr.vbs -ipk <type your product key here>
Activation:
slmgr.vbs -ato
Control panel tool Command
-----------------------------------------------------------------
Accessibility Options control access.cpl
Add New Hardware control sysdm.cpl add new hardware
Add/Remove Programs control appwiz.cpl
Date/Time Properties control timedate.cpl
Display Properties control desk.cpl
FindFast control findfast.cpl
Fonts Folder control fonts
Configuration of Polish characters in Windows 7 and 8 is strightforward but apparently not widely known - some people try to use symbols instead.
Control Panel>Clock, Language, and Region>Language>Add a Language>Polish (polski)
Make sure that keyboard layout is Polish Programmers. Use ALT+SHIFT to change languages and right ALT+a,e,c,s,z,n,x.
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Lanmanworkstation\Parameters
DirectoryCacheLifetime (Dword file, set to zero)
Here is how to do that, pretty unexpected procedure which is a result of an OS developer weakness and somebody's creativity:
1. Using WMI
WMIC computersystem where caption='currentname' rename newname
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Users\administrator>wmic computersystem where caption='OLDNAME' rename NEWNAME
Executing (\\F204\ROOT\CIMV2:Win32_ComputerSystem.Name="F204")->rename()
Method execution successful.
Out Parameters:
instance of __PARAMETERS
{
ReturnValue = 0;
};
C:\Users\administrator>
Scenario:
Resolution: