Difference between revisions of "Vista Made Tolerable"

From Free Knowledge Base- The DUCK Project: information for everyone
Jump to: navigation, search
m
Line 30: Line 30:
 
# Click on the the Control Panel / Folders icon
 
# Click on the the Control Panel / Folders icon
 
# Check Single click to open an item
 
# Check Single click to open an item
 +
 +
 
 +
 +
== UAC (User Account Control) ==
 +
 +
# Click Start Menu
 +
# Click File and Run
 +
# Type in 'msconfig' and ENTER
 +
# In the System Configuration Dialog click the 'Tools' tab
 +
# Scroll down and locate 'Disable UAC'
 +
 +
This simply modifies a registry key.  You can manually edit the registry to accomplish this also.  You will have to reboot the Operating System.
 +
 +
When UAC is turned on (which it is by default), you must explicitly give permission to any program that wants to use "administrator" powers. Any program that tries to use admin powers without your permission will be denied access.
 +
 +
Registry hack to disable or enable UAC from the command line.
 +
 +
Disable UAC
 +
 +
C:\Windows\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f
 +
 +
Enable UAC
 +
 +
C:\Windows\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 1 /f
  
 
 
 
 

Revision as of 20:43, 1 February 2008

The guide to making Microsoft Windows Vista Ultimate configured in a way that is almost tolerable by experienced "old school" personal computer users.

Remember, Vista is the same ugly girl hidden under a new pretty dress. You will find most of the classic dialogs running the same legacy Windows programming code hidden under new menus. The book has a new cover, but the same tired story inside.

Files and Folders

show file extensions

  1. Open a folder or open explorer
  2. Click "Organize" to open the menu and select "Folder and Search Options"
  3. Click the View tab
  4. Uncheck Hide extensions for known file types
  5. Click OK

The classic "Folder Options" dialog is hidden under ORGANIZE, FOLDER AND SEARCH OPTIONS.

sendto shell menu items

Profiles look a bit different under Vista. If you look in c:\users\<username> you will see a shortcut to "sendto." Clicking on the shortcut produces a permission denied error. Access the sendto folder via the complete profile path. For domain users look for "sendto" contents under the full profile path (hidden).

  • c:\users\<username>\AppData\Roaming\Microsoft\Windows\sendto

Classic File Edit View menu bar

To make the classic menu items visible from an explorer window simply press and release the ALT key. They can also be configured to remain visible.

Enable or Disable Single Click Icons

Traditionally windows required a double click on icons to open files or launch programs. KDE desktop in Linux requires only a single click. Your preference may be set.

  1. Click on the the Control Panel / Folders icon
  2. Check Single click to open an item

 

UAC (User Account Control)

  1. Click Start Menu
  2. Click File and Run
  3. Type in 'msconfig' and ENTER
  4. In the System Configuration Dialog click the 'Tools' tab
  5. Scroll down and locate 'Disable UAC'

This simply modifies a registry key. You can manually edit the registry to accomplish this also. You will have to reboot the Operating System.

When UAC is turned on (which it is by default), you must explicitly give permission to any program that wants to use "administrator" powers. Any program that tries to use admin powers without your permission will be denied access.

Registry hack to disable or enable UAC from the command line.

Disable UAC

C:\Windows\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f

Enable UAC

C:\Windows\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 1 /f