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/02/17 11:14]
smayr
systems:windows_setup_and_configuration [2018/07/13 08:51] (current)
smayr [Tips]
Line 1: Line 1:
 == Windows Setup and Configuration == == Windows Setup and Configuration ==
 +
 +== Troubleshooting ==
 +
 +===== How To Do A Clean Boot Using the System Configuration Utility =====
 +
 + # Run MSCONFIG: Go to Start > Run, type ''msconfig''.
 + # Hide Microsoft Services. Go to "System Configuration Utility" > "Services" tab, and then select the "Hide all Microsoft Services" check box.
 + # Click "Disable All".
 + # Click "Startup" tab.
 + # Click "Disable All".
 + # Click "Apply" then "Close".
 + # Restart computer.
 +
 +Restore your computer back.
 +
 + # Run MSCONFIG: Got to Start > Run, type ''msconfig''. Note: you can choose to do the following steps or just click "Normal Startup" on the General tab.
 + # In "System Configuration Utility", click the "Services" tab, and then click "Enable All"
 + # Click "Startup" tab.
 + # Click "Enable" All
 + # Click "Apply" then Close
 + # 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 154: 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>