Thursday, September 09, 2010
   
Text Size

Search

hits.

purpleender

Rep

Gamerscore33992

ZoneUnderground

Technical Log

XP - Turn off security alerts

 WshShell.RegWrite "HKLM\Software\Microsoft\Security Center\AntiVirusDisableNotify", 1, "REG_DWORD"
 WshShell.RegWrite "HKLM\Software\Microsoft\Security Center\FireWallDisableNotify", 1, "REG_DWORD"
 WshShell.RegWrite "HKLM\Software\Microsoft\Security Center\UpdatesDisableNotify", 1, "REG_DWORD"
 

XP - Disable Auto-Play

 WshShell.RegWrite "HKLM\SYSTEM\CurrentControlSet\Services\Cdrom", 0 , "REG_DWORD"
 WshShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer", 181 , "REG_DWORD"
 

XP - Install Command Console

 WshShell.Run ("d:\i386\winnt32.exe /cmdcons /unattend"),2, True

   

Office - Update Installation Point Location

 'Update registry for office version to the new office sp3 source on software repository
 WshShell.RegWrite "HKLM\SOFTWARE\Classes\Installer\Products\" & key & "\SourceList\LastUsedSource","n;1;" & RepairPath & "Microsoft Office 2000 SP3\", "REG_SZ"
 WshShell.RegWrite "HKLM\SOFTWARE\Classes\Installer\Products\" & key & "\SourceList\Net\1", RepairPath & "Microsoft Office 2000 SP3\", "REG_SZ"
 

VB - Configure IE7 Pop-Up blocker

 App_Name = "IE Pop-Up Blocker"
 WshShell.RegWrite "HKCU\SOFTWARE\Microsoft\Internet Explorer\New Windows\Allow\*.mydomain.me.uk",0,"REG_BINARY"
 WshShell.RegWrite "HKCU\SOFTWARE\Microsoft\Internet Explorer\New Windows\Allow\www.mydomain.me.uk",0,"REG_BINARY"
   

Page 2 of 12