Automation for the SOHO Business
Automation for the SOHO Business
9.13.2006
Andy Stetzinger
I'm going to take a thing or two forgranted for this article.
#1 - You have a Small Office / Home Office Business.
#2 - You are running a primarily Windows based environment.
#3 - You'd like to make your day run a little smoother.
The good news is: You can!
The better news is: It's Free!
Windows comes with a Task Scheduler built in. (Start->Programs->Accessories->Scheduled Tasks)
A basic wizard will walk you through the process of setting up things to run on their own. However, you'll just do some basic tasks with that.
My suggestion is to create a Batch File and list the things you want to do in there, then schedule the batch file to run at certain times.
I also highly recommend you download NirCmd, a free command line tool from http://www.nirsoft.net/utils/nircmd.html . It's got some great examples of things it can do.
For example, my personal automated schedule is as follows:
12:01am - Back up files
02:00am - Virus Scan
03:00am - Burn backup to DVD (if needed)
04:00am - FTP download of various work-related sites
06:30am - Open various webpages (my morning routine)
Open personal email client (not my work one)
Display notification regarding backup
Eject DVD drawer
Run ccleaner (great win32 program)
System Unmuted
07:00am - I sit down, swap the DVD for a blank one if needed.
I do my morning routine / personal email
07:45am - One click of a button:
Web Browser closed.
Personal Email closed.
IM Client started
Skype Started
Work Email Started
Open work-related websites
Various work-related programs launched
12:00pm - Notification of time
Quick backup (file copy only) of work folder
Personal Email Client run (gotta check it too)
1:00pm - Notification of time
Personal email client closed
5:00pm - Notification of time
Quick backup (file copy only) of work folder
Blank DVD check
Personal Email client launched
End Of Day One button routine:
System Muted
Monitors shut down
All browsers closed
All email apps closed
IM client closed
Skype closed
Work-related Apps save/close
Ccleaner run
A sample of a batch file I use is:
----
@echo off
taskkill /im outlook.exe /f
taskkill /im firefox.exe /f
taskkill /im thunderbird.exe /f
taskkill /im trillian.exe /f
nircmd.exe monitor off
nircmd.exe mutesysvolume 1
nircmd.exe emptybin
----
takkill is a program that comes with WindowsXP. Quite nice. Quite helpfull.
Simple SOHO Automation of repeated tasks saves time and energy. Not to mention the brain cells you'll save never having to wonder if you did that daily task or not today.
Until next time,
Andy


























