Remote Check Config

Ever want to quickly check the configuration of a computer on your network? With this script, you can get a ton of info in seconds! Hostname, OS name, original install date, boot time, domain, RAM info, Windows hotfix application, network card status, system uptime, processor info, and even hard drive space!

CheckConfig(remote).bat

cls
@pushd %~dp0
@echo off
ECHO ============================
ECHO REMOTE CONFIGURATION CHECK
ECHO ============================
ECHO ____________________________
color 0A
set /p "id=Enter IP of computer you want to check: "
ECHO Please wait... Checking system information.
:: Section 1: OS information.
ECHO ============================
ECHO OS INFO
ECHO ============================
systeminfo /s %id%
PSTools\PsInfo -d \\%id%
@popd
pause

:: Love, CJ Pollock

This script DOES require PSTools. The PSTools folder should be in the same directory as this Batch file in order to work properly. Here’s a download for everything you need in one place:

Download: Remote Check Config.zip
(right-click and Save Link As)

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s