Here’s a quick script to add a user to the local computer in the administrators group and hide the user account from the logon screen. This is intended for Windows XP. Wrote this after brief research (noted in script) because I needed to add user accounts across multiple computers easily. Of course, the password [...]
Posts Tagged ‘batch’
Cleanup Temporary Internet Files and Temp Files
This is for Windows 2000/XP, Server 2000/2003
cd /d c:\Documents and Settings
for /d %%X in (*) do rd /s /q “C:\Documents and Settings\%%X\Local Settings\Temporary Internet Files”
for /d %%X in (*) do rd /s /q “C:\documents and settings\%%X\Local Settings\Temp”
Quick and dirty.
Download the batch from here (run-as).
Backup all Windows Device Drivers
Using Windows’ Devon utility, you can backup your device drivers with ease.
Rob van der Woude has put together a batch script to make it even easier. You can visit his site and look at the other information and scripts he has available for Devcon.
Here is the batch script in source format or you can download [...]