How to Disable User Access Control (UAC) in Windows Vista

User Access Control (UAC) is the feature of Windows Vista that requires the need to always confirm administrative actions by typing in your password. If you disable this then your account can be configured to run with administrative privileges all the time like you could do in Windows XP. This results in you not having to type in your password all the time to do administrative functions on your computer like installing programs. Here is how to disable UAC:

  1. Launch the MSconfig app by opening up the command prompt and typing: msconfig
  2. Select the Tools tab.
  3. Select the Disable UAC option.
  4. Click the Launch button to execute the command line which will disable UAC.
  5. Reboot the computer to put the changes into effect.

Windows Vista Logo

How to Remove the Loading Screen in Windows Vista

Windows Vista displays a boot loading splash screen with a small progress bar animation. Behinds the scenes drivers and configurations are being loaded. For troubleshooting purposes it is useful to remove the simple boot loading screen and display the drivers and configurations being loaded while Windows Vista starts up. Here is how you remove the simple boot loading screen and display the verbose boot loading screen:

  1. Open run by pressing Window Key+r
  2. Type “msconfig” without the double quotes and press ENTER.
  3. Click on the boot tab and check the option “OS boot information“.
  4. Click ok and apply

Windows Vista

Access Windows Live Hotmail in Outlook

Microsoft Office Outlook Connector is a free program released by Microsoft which will allow you to access your Hotmail and Microsoft Office Live email accounts from within Outlook. Here is Microsoft’s official description of the application:

With Outlook Connector, you can use Outlook 2003 or Outlook 2007 to access and manage your Windows Live Hotmail or Office Live Mail accounts, including e-mail messages and contacts for free! Calendar, tasks and notes synchronization are not available on all services. If your service offers calendar synchronization, tasks and notes will synchronize as well. See the feature list for your service for details.

Outlook Connector enables you to use your Live Hotmail accounts within Outlook:

  • Read and send your Office Live Mail/Windows Live Hotmail e-mail messages.
  • Manage your Live Mail Contacts.
  • Use advanced options for blocking junk e-mail messages.
  • Manage multiple e-mail accounts in one place.

With a paid subscription, Outlook Connector enables these additional features:

  • Manage, share, and synchronize your Windows Live Calendar in Outlook.
  • Access your Tasks and Notes.

You can download the application from Microsoft from this web page: Link

Microsoft Office Connector

Using Robocopy to Copy Files and Folders While Maintaining ACLs

Robocopy is a Windows Server Resource Kit command line tool that allow you to copy files and folders while maintaining ACLs. In addition it allows you to copy files across networks with fault tolerance capabilities – if the network connection is disrupted, the copy operation will continue where it left off when the connection is restored. Robocopy will also allow you to synchronize local or remote directories and if changes are detected, only the changed bits in a file are copied as opposed to the entire file being copied.

How to use Robocopy to copy the contents of one directory to another while maintaining ACLs:

  • NOTE: Do not put a trailing backslash at the end of the directory paths. The destination directory does not have to currently exist.
robocopy c:\pathToSourceDirectory c:\pathToDestinationDirectory /E /SEC

Here is a link to a Microsoft article that talks about the GUI version of Robocopy: Link

Robo