I found this really cool open source software that I’m currently implementing for a customer remotely. It’s called HVBackup and is of the time of writing in Beta v1. http://hypervbackup.codeplex.com/ Description from their website: The main goal of this project is to provide a very easy and powerful free tool to backup and restore Hyper-V…
Category: Winbatch
Windows BATCH-scripts
Unrar finished torrents (uTorrent) and delete archives (rar)
I couldn’t find any unpacker that would extract and delete archives for a torrent after a certain period of time or after a certain seed ratio had been reached. I’ve noticed quite alot of people complain about this on, for example, uTorrent’s official forums. So I wrote this script that will wait for a set…
Move files in folders and subfolders older than one year
A colleague asked me if I could write a script that would move files within a folder or its subfolders that were older than one year into a new location but still keep the directory structure. I figured it would be quite a challenge so I decided to do it for him; kind as I…
THE ultimate loginscript
I was given the task to rewrite the login script for a company, they had 4 sites and about 20 login scripts for various purposes. So I wrote a general one which took care of all the general stuff. You may look at my earlier post about an inventory script, because this script will use…
Inventory script for use with login scripts
I was recently asked to inventory approx 200 client computers of what programs they had installed, the specifications (cpu/ram/hdd) etc. So I was being lazy as most IT-techs are and wrote a script that I later on implemented into their usual login script. It creates a simple .txt-file on a pre-mapped network drive and appends…
Simplified robocopy backup script
So I work with many servers and many customers. Usually I had to write a new backup script for every new customer and server. Therefore I figured I might as well just write a template that I can copy/paste everytime I have to implement a robocopy backup script. So here goes. Share on Facebook
Connect/map Printers Login Script
I’ve already mentioned I work with many customers and servers. Everytime I install a new server that hosts printers I have to handwrite a loginscript that connects/maps the printers on the clients. So I made a template for that as well. There is only a few variables needed to change for it to rock. Check…
Batch Ping Tool/IP-Scanner
I had a scenario where I wanted to see what was on the network at a location. So I figured I’d just ping them all, man was this a pain or what! So I wrote a script for it instead. :) And yes, I know there is alot of IP-scanners out there. But what hacker…