Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
systems:windows_setup_and_configuration [2010/03/16 11:39]
smayr
systems:windows_setup_and_configuration [2018/07/13 08:51] (current)
smayr [Tips]
Line 21: Line 21:
  # Click "Apply" then Close  # Click "Apply" then Close
  # Restart computer  # Restart computer
 +
 +===== How to run Control Panel as Administrator =====
 +
 +<code>
 +C:\WINDOWS> runas /user:Machinename\Administrator "Control.exe"
 +</code>
 +
 +===== How to Enable Administrator Login (Windows XP Home) =====
 +  * Run ''regedit''.
 +  * Edit registry key <code>HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows NT \ CurrentVersion \ Winlogon \ SpecialAccounts \ UserList</code>
 +  * Create a new DWORD Value named ''Administrator'', with content ''1''.
  
 == Optimization == == Optimization ==
Line 175: Line 186:
 NOTE: /savecred is not compatible with /smartcard. NOTE: /savecred is not compatible with /smartcard.
 </code> </code>
 +
 +== Backup ==
 +  *  [[http://technet.microsoft.com/en-us/sysinternals/ee656415.aspx|disk2vhd (Microsoft)]]: Create a VHD (Virtual HDD).
 +
 +== Tips ==
 +==== Explorer ====
 +* Set Explorer short to 'Computer': <code>%windir%\explorer.exe /root,::{20D04FE0-3AEA-1069-A2D8-08002B30309D}</code>
 +
 +==== Reset Environment Without Rebooting ====
 +After changing environment variables, these changes do not take place immediately when using the command line.  To have them take effect right away without rebooting, perform these steps:
 +  * In a command prompt type: <code> C:\> runas /user:myusername@mydomain cmd </code> or <code> C:\> runas /user:mymachine/myusername cmd </code>
 +  * It will open up a new command prompt, then type: <code> C:\> taskkill /f /im explorer.exe </code>
 +  * Type (or from Task Manager: File > Run new task): <code> C:\> explorer.exe </code>