Batch file to check for 64Bit system

The following can be used in a batch script to check if a system is 64Bit or 32Bit. @echo off :START REM SYSTEM Check IF EXIST %WINDIR%\SysWOW64\NUL GOTO :64BIT goto :32BIT :64BIT REM Run 64bit command goto :END :32BIT REM Run 32bit command goto :END :END Just add the...

Managing Printers via Command Line

If you have a large network that has a large number of machines not connected to the domain but still have access to a shared local network printer. e.g. Remote sites that act mostly as thin clients. Here is a quick way to manage the printers on those sites. Download...