I needed a script to find out the status of Windows Task Scheduler. If one has a problem, to echo it out as a problem and exit on an error code
I needed a script to find out the status of Windows Task Scheduler. If one has a problem, to echo it out as a problem and exit on an error code
The final script i needed to get all emails addresses out there was for 2003, google helped me.
With help from http://exchangepedia.com/2005/09/how-to-export-all-email-addresses-from-a-domain.html i managed to get the script working.
On Terminal server, with re-directed printers setting the printer more often than not goes to the wrong one.
The simple solution is this VBS Script. Placed in the users Startup folder, it maps the default printer to the one named.
Simply name the local printer
Option Explicit
Dim objPrinter
Set objPrinter = CreateObject(“WScript.Network”)
objPrinter.SetDefaultPrinter “serverprinter name“
Sometimes this needs to be ran twice, but 99% of the time its happy.
On Terminal server, with re-directed printers setting the printer more often than not goes to the wrong one.
The simple solution is this VBS Script. Placed in the users Startup folder, it maps the default printer to the one named.
We noticed that we had let some clients server slip through the cracks in replacing.
For us, all servers are replaced in 3 years.
So the script View full article »
Just an updated script to check on version 6 products or the latest V5 build
I needed to see when a Windows Server 2000 was installed, but SYSTEMINFO didnt work. After a bit of looking and playing, i came up with this.
I needed a nice easy script to output the version number of Exchange 2003 to i can see what Server Pack is installed
I needed a nice easy script to output the version number of Exchange 2007 to i can see what Server Pack is installed
With the release of GFIMax agent V8.5 i wanted to test it, but don’t have the time to log on and install. So i made a script.
Download the agent agent_8_5_0.exe Save it 2 your web server, edit the script, save as VBS, away you go.