From time to time you may wish to find out who is logged into a machine. I find this batch file handy for doing this. Its quick, simple and easy.
Just copy and paste the below code into notepad and save the file as who.bat
Code:@echo off :CHECK echo Checking Connection ... ping %1 -n 1 | findstr "TTL=" >nul && GOTO MAIN || GOTO ERROR GOTO END :ERROR echo Device Unreachable GOTO END
From time to time we need to rename computers on the domain. The computers can sometimes be in a locked room, in a remote site or you simply cant be bothered visiting them.
This code below will allow you to rename computers on the domain form the comfort of your own desk. Once you have entered you old name and your new name the computer concerned will automatically reboot and your all done! All you have to do is make sure nobody is using the machine and that the new computer name
I originally posted this in the forums, but i think it fits here better.
I have had a few people ask how to deploy VNC via group policy. If you have a large network where you want to install VNC on a large amount of computers this would be an ideal solution.
For this guide i used TightVNC - the website is here: tightvnc.com
I decide to go for TightVNC becuase
- Easy to use
- Free
- Ability to hide the icon in the system tray
- Built in

