Category Windows

Fix HTTP Error 401.3 IIS 6.0

Details This particular error is indicating that some file in your site’s directory structure does not have permissions to be viewed by your web site. You need to ensure all files for your site are readable/executable One easy way to…

IIS 6.0 Add Host Headers in Bulk

IIS 6.0 Add Host Headers in Bulk To add host headers in bulk (IIS 6.0) you will need these two scripts in C:\Inetpub\AdminScripts: AppendHostHeaders.vbs chglist.vbs Additionally you will need an input csv called “c:\sites.csv” that follows this format (id, sitename…

iis 6.0 script 301 redirect

How can you script a 301 redirect in IIS 6.0? @REM Redirect site #1 in IIS 6.0 to brakertech.com cscript.exe c:\inetpub\adminscripts\adsutil.vbs set w3svc/1/Root/HttpRedirect “, EXACT_DESTINATION,PERMANENT” @REM List redirect properties for site #1 in IIS 6.0 cscript.exe c:\inetpub\adminscripts\adsutil.vbs get w3svc/1/Root/HttpRedirect @REM…

Export All Users from OU

How can you export all users from an OU in active directory on server 2003? Create a file called exportusers.vbs and paste in this text: Dim ObjWb Dim zz Set objRoot = GetObject(“LDAP://RootDSE”) strDNC = objRoot.Get(“DefaultNamingContext”) Set objDomain = GetObject(“LDAP://”…

install ssh windows

How can you install ssh on windows? Follow this step-by-step how to: How to install a ssh client (called ssh, from OpenSSH) (1) Create a folder c:\cygwin (2)  Download cygwin’s setup.exe from  and save setup.exe in c:\cygwin Click Start…Run…and type c:\cygwin\setup.exe When it asks for “Local Package Directory”,…