March 7th, 2010
Windows provides the following backup tools:
- File backup: Windows Backup allows you to make copies of data files. You can let Windows choose what to back up or you can select the individual folders, libraries, and drives that you want to back up. By default, your backups are created on a regular schedule. You can change the schedule and you can manually create a backup at any time. Once you set up Windows Backup, Windows keeps track of the files and folders that are new or modified and adds them to your backup. To set up file backup, see the following backup steps
Read more »
Tags: automated, image, previous versions, shadow copies, windows, Windows 7
Posted in FAQ, Windows 7
» No Comments
January 27th, 2010
Many people use Microsoft Outlook to download mail from their POP3 or IMAP server. While some may only link their Outlook to one particular email, many today have multiple email accounts all pouring into the same data file. Backing up Microsoft Outlook consists essentially of backing up two different components; the pst file that stores messages (or in the case of IMAP a cached version of the server) together with the registry entry that stores all the different email accounts that are being processed by Outlook.
Backing up the data file
The folk who decided on the default location of the Outlook data file chose a location that is difficult to figure out. Also when installing Outlook (or when running it for the first time) there is no way to specify a different folder.
Read more »
Tags: backup, backup media, windows, Windows 7, Windows Vista
Posted in Code and Solutions, Windows 7, Windows Vista, Windows XP
» No Comments
November 1st, 2009
- Open the Control Panel Home window from Start / Settings / Control Panel
- Click Backup and Restore Center
- Click Back up files button
- Select location where you want to save your backed up files
- Select disks that you want to include in the backup
- Select type of files to include in your backup
- Create a backup schedule
- Click the Save settings and start backup button
Alternatively, you can create a complete backup of your entire computer by clicking the Back up computer button and follow the simple wizard :)
Tags: backup, data backup, windows, Windows Vista
Posted in FAQ, Windows Vista
» No Comments
October 12th, 2009
email notification
The native backup utility found on Windows servers is one cool application that has saved many SMBs real cash! Apart from fulfilling its main functionality, it is found to be very reliable and effective. Problems arise when extra features are required such as, backing up to external storage devices and/or utilizing advanced backup features! One useful feature that is standard in purchasable applications is email notification of backup jobs. The script below gives you that functionality!!!! It’s free and simple to implement!!!!
The implementation steps of the script are as follows:
- Create a backup job using Windows backup – Start/All Programs/Accessories/System Tools/Backup and set a job schedule
- Open the window Scheduled Tasks – Start/Control Panel/Scheduled Tasks and find the newly created scheduled job.
- From the properties window of this job copy the highlighted text from the Run text field
- Copy this text in a new batch file called ‘mybackup.bat’ (any name you like without quotes)
- Take a note of the batch file location and enter the full path in the Run text field of step 3 ex: c:\documents\mybackup.bat
- Close the properties window by clicking OK and enter an admin password if prompted
- Add the sample script shown below in the batch file after the text entered in step 4
- Edit the script text to reflect your email & path settings
Sample script
Copied text from step 3 goes here
@echo off
set Sender=”source email addess”
set Receiver=”your email address”
set Host=”IP address of source email server”
set Subject=”Backup name/title”
set logdir=”%USERPROFILE%\Local Settings\Application Data\Microsoft\Windows NT\NTBackup\data”
REM ex – C:\Documents and Settings\administrator\ for %USERPROFILE%
set result=”%temp%\latestlog.txt”
pushd %logdir%
for /f “tokens=1 delims=” %%I in (‘dir /B /O-D’) do (
if “%%~xI”==”.log” (
type “%%~fI” > %result%
goto :end
)
)
:end
popd
c:\windows\system32\blat.exe %result% -f %Sender% -to %Receiver% -server %Host% -subject %Subject%
del /q /f “%result%”

explanation
Explanation of the sample script:
pushd
==> stores the current directory for use by the POPD command, then change to the specified directory
for /f “tokens=1 delims=” %%I in (‘dir /B /O-D’) do
=> parse each line of the directory listing (log files) and get the name of each file one by one
dir /B /O-D ==> remove heading info from directory list, and list files by date in reverse order
until
if “%%~xI”==”.log”
==>if the current file (its extension only) is .log
then
type “%%~fI” > %result%
==> then copy the contents of the current log file to the variable file latestlog.txt
c:\windows\system32\blat.exe ==> Blat is a Win32 command line utility that sends eMail using SMTP – http://www.blat.net/?docs/credits.html
Tags: automated, batch, data, email, notification, script, servers, shell, windows
Posted in Scripts, Windows Servers
» No Comments