Category O/S

best free antivirus windows

looking for the best free antivirus windows? Regarding free antivirus I would check out Avira AntiVir Personal or Avast antivirus. Stroll on over to to check out the anti-malware. You should also get these: To see…

copy teamsite user

To copy teamsite user permissions i’ve written a python script. You’ll need to replace the path with the path of your teamsite’s bin directory: #!/usr/bin/python #Script Name: copyTeamSiteUser.py #Use: . -s (source_user) -d (destination_user) #Note: the bin bath of teamsite…

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…