Re: ntbackup scripts

2008-11-07 Thread Kurt Buff
To follow up on this...

recode.exe was not recoding the entire log file, so I was getting only
a truncated version of it, which was very frustrating.

I have found that the newest version of blat (2.6.2, from
www.blat.net) deals nicely with the backup logs - no conversion
necessary. I'm in the middle of reworking the script to accomodate
this.

On Wed, Feb 20, 2008 at 12:36 PM, Ken Cornetet <[EMAIL PROTECTED]> wrote:
> Here's a script I use. It requires grep, blat and recode.
>
> You will have to create your BKS file (it must be Unicode).
>
> Watch for line wrap.
>
> rem *
> rem *
> rem * Perform fullback to whatever tape is in the drive and email
> rem * report
> rem *
> rem * Ken Cornetet - 06/10/2002
> rem *
> rem * Revision History
> rem *
> rem * WhenWhoWhat
> rem * ---
> rem * 06/10/2002  Ken Cornetet   Original Issue
> rem * 06/24/2002  Ken Cornetet   Added RSM command per Q267574
> rem *
> rem *
> rem * Requires external programs blat, grep, and recode
> rem *
> rem *
>
> set [EMAIL PROTECTED]
> set SMTP={Name of your SMTP relay host here}
> set NAME=FULL BACKUP %DATE% %TIME%
> set LOGS=%USERPROFILE%\Local Settings\Application Data\Microsoft\Windows
> NT\NTBackup\data
>
> c:
> cd \backup
>
> rem Delete any extraneous log files
> del "%LOGS%\backup*.log"
>
> rem 
> rem * Have removable storage management look at tape in drive
> rem * (See Q267574 for details)
> rem 
>
> start /wait rsm refresh /lf"BNCHMARK DLT1 SCSI Sequential Device"
> c:\bin\sleep 30
>
> rem 
> rem * Do Backup
> rem 
>
> start /wait ntbackup backup @c:\backup\everything.bks /M normal /J
> "%NAME%" /P DLT /N "%NAME%" /l:s /HC:on /UM /D "%NAME%"
>
> rem 
> rem * find newest (should be only) log file
> rem 
>
> dir /s /b /o-d "%LOGS%\backup*.log" >c:\backup\backup.tmp
> set /P FILE= 
> rem 
> rem * Make ASCII version of log file
> rem 
>
> c:\bin\recode -f unicode..us <"%FILE%" >log.txt
>
>
> rem 
> rem * Set subject for email
> rem 
>
> set SUBJ=Backup ran OK
> grep -v "Error: You do not have permission" log.txt > log1.txt
>
> findstr /i error: log1.txt
> if not ERRORLEVEL 1 set SUBJ=Backup ran - FAILED
>
> rem 
> rem * Send email
> rem 
>
> c:\bin\blat log.txt -t %RECIPIENT% -subject "%SUBJ%" -server %SMTP% -f
> %RECIPIENT%
>
> rem 
> rem * Move log file to our directory
> rem 
>
> move /Y "%FILE%" c:\backup

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~   ~


RE: ntbackup scripts

2008-02-22 Thread Carl Houseman
Forbidden
You don't have permission to access /UnxUtils.zip on this server. 

-Original Message-
From: Ken Cornetet [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 22, 2008 11:39 AM
To: NT System Admin Issues
Subject: RE: ntbackup scripts

I got mine from here: http://unxutils.sourceforge.net/

-Original Message-
From: Carl Houseman [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 21, 2008 10:13 PM
To: NT System Admin Issues
Subject: RE: ntbackup scripts

I had a devil of a time finding this one the first time, been using it
for a
couple years now with no complaints.

http://recode.progiciels-bpi.ca/archives

(I don't remember if this is where I got it, but fc/b says this
recode.exe
is identical to my copy.)

Carl

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 21, 2008 10:02 PM
To: NT System Admin Issues
Subject: RE: ntbackup scripts

Where can I get recode for Windows? Google was less than helpful.

 
Dave
 
 ---
|Beach Computers|
|Affordable Hosting Solutions   |
|http://www.beachcomp.com   |
 ===
|Cheap Domain Warehouse |
|Get Your Own Dot!  |
|http://www.cheapdomainwarehouse.com|
 -- 


Disclaimer and confidentiality note:

The contents of this communication are intended/meant only for
addressee(s)
and may contain information that is privileged or otherwise
confidential.
If you are not the intended recipient you are hereby notified that any
disclosure, copying, distribution or taking any action in reliance on
the
contents of this information is strictly prohibited and may be unlawful.
The contents of this e-mail shall not be forwarded to any third party.
If
you have received this electronic mail transmission in error, please
delete
it from your system without copying or forwarding it, and notify the
sender
of the error by reply email, so that the sender's address records
can be corrected.
Views and opinions are solely those of the sender unless clearly
indicated
as being that of Beach Computers or any of it's affiliated companies.
Beach Computers cannot assure that the integrity of this communication
has
been maintained or that it is free of errors, virus, interception or
interference.

-Original Message-
From: Ken Cornetet [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 20, 2008 3:36 PM
To: NT System Admin Issues
Subject: RE: ntbackup scripts

Here's a script I use. It requires grep, blat and recode.

You will have to create your BKS file (it must be Unicode).

Watch for line wrap.

rem *
rem *
rem * Perform fullback to whatever tape is in the drive and email 
rem * report 
rem * 
rem * Ken Cornetet - 06/10/2002 
rem * 
rem * Revision History 
rem *
rem * WhenWhoWhat
rem * ---
rem * 06/10/2002  Ken Cornetet   Original Issue
rem * 06/24/2002  Ken Cornetet   Added RSM command per Q267574
rem *
rem *
rem * Requires external programs blat, grep, and recode
rem *
rem *

set [EMAIL PROTECTED]
set SMTP={Name of your SMTP relay host here}
set NAME=FULL BACKUP %DATE% %TIME%
set LOGS=%USERPROFILE%\Local Settings\Application Data\Microsoft\Windows
NT\NTBackup\data

c:
cd \backup

rem Delete any extraneous log files
del "%LOGS%\backup*.log"

rem 
rem * Have removable storage management look at tape in drive 
rem * (See Q267574 for details) 
rem 

start /wait rsm refresh /lf"BNCHMARK DLT1 SCSI Sequential Device" 
c:\bin\sleep 30

rem 
rem * Do Backup
rem 

start /wait ntbackup backup @c:\backup\everything.bks /M normal /J
"%NAME%" /P DLT /N "%NAME%" /l:s /HC:on /UM /D "%NAME%"

rem 
rem * find newest (should be only) log file
rem 

dir /s /b /o-d "%LOGS%\backup*.log" >c:\backup\backup.tmp
set /P FILE= log.txt


rem 
rem * Set subject for email
rem 

set SUBJ=Backup ran OK
grep -v "Error: You do not have permission" log.txt > log1.txt 

findstr /i error: log1.txt 
if not ERRORLEVEL 1 set SUBJ=Backup ran - FAILED

rem 
rem * Send email
rem 

Re: ntbackup scripts

2008-02-22 Thread Kurt Buff
Try http://gnuwin32.sf.net - excellent core tools there.

On Fri, Feb 22, 2008 at 3:01 AM,  <[EMAIL PROTECTED]> wrote:
> Where can I get recode for Windows? Google was less than helpful.
>
>
>  Dave
>
>   ---
>  |Beach Computers|
>  |Affordable Hosting Solutions   |
>  |http://www.beachcomp.com   |
>   ===
>  |Cheap Domain Warehouse |
>  |Get Your Own Dot!  |
>  |http://www.cheapdomainwarehouse.com|
>   --
>
>  
>  Disclaimer and confidentiality note:
>
>  The contents of this communication are intended/meant only for addressee(s)
>  and may contain information that is privileged or otherwise confidential.
>  If you are not the intended recipient you are hereby notified that any
>  disclosure, copying, distribution or taking any action in reliance on the
>  contents of this information is strictly prohibited and may be unlawful.
>  The contents of this e-mail shall not be forwarded to any third party. If
>  you have received this electronic mail transmission in error, please delete
>  it from your system without copying or forwarding it, and notify the sender
>  of the error by reply email, so that the sender's address records
>  can be corrected.
>  Views and opinions are solely those of the sender unless clearly indicated
>  as being that of Beach Computers or any of it's affiliated companies.
>  Beach Computers cannot assure that the integrity of this communication has
>  been maintained or that it is free of errors, virus, interception or
>  interference.
>
>
>  -Original Message-
>  From: Ken Cornetet [mailto:[EMAIL PROTECTED]
>  Sent: Wednesday, February 20, 2008 3:36 PM
>  To: NT System Admin Issues
>
>
> Subject: RE: ntbackup scripts
>
>  Here's a script I use. It requires grep, blat and recode.
>
>  You will have to create your BKS file (it must be Unicode).
>
>  Watch for line wrap.
>
>  rem *
>  rem *
>  rem * Perform fullback to whatever tape is in the drive and email
>  rem * report
>  rem *
>  rem * Ken Cornetet - 06/10/2002
>  rem *
>  rem * Revision History
>  rem *
>  rem * WhenWhoWhat
>  rem * ---
>  rem * 06/10/2002  Ken Cornetet   Original Issue
>  rem * 06/24/2002  Ken Cornetet   Added RSM command per Q267574
>  rem *
>  rem *
>  rem * Requires external programs blat, grep, and recode
>  rem *
>  rem *
>
>  set [EMAIL PROTECTED]
>  set SMTP={Name of your SMTP relay host here}
>  set NAME=FULL BACKUP %DATE% %TIME%
>  set LOGS=%USERPROFILE%\Local Settings\Application Data\Microsoft\Windows
>  NT\NTBackup\data
>
>  c:
>  cd \backup
>
>  rem Delete any extraneous log files
>  del "%LOGS%\backup*.log"
>
>  rem 
>  rem * Have removable storage management look at tape in drive
>  rem * (See Q267574 for details)
>  rem 
>
>  start /wait rsm refresh /lf"BNCHMARK DLT1 SCSI Sequential Device"
>  c:\bin\sleep 30
>
>  rem 
>  rem * Do Backup
>  rem 
>
>  start /wait ntbackup backup @c:\backup\everything.bks /M normal /J
>  "%NAME%" /P DLT /N "%NAME%" /l:s /HC:on /UM /D "%NAME%"
>
>  rem 
>  rem * find newest (should be only) log file
>  rem 
>
>  dir /s /b /o-d "%LOGS%\backup*.log" >c:\backup\backup.tmp
>  set /P FILE= 
>  rem 
>  rem * Make ASCII version of log file
>  rem 
>
>  c:\bin\recode -f unicode..us <"%FILE%" >log.txt
>
>
>  rem 
>  rem * Set subject for email
>  rem 
>
>  set SUBJ=Backup ran OK
>  grep -v "Error: You do not have permission" log.txt > log1.txt
>
>  findstr /i error: log1.txt
>  if not ERRORLEVEL 1 set SUBJ=Backup ran - FAILED
>
>  rem 
>  rem * Send ema

RE: ntbackup scripts

2008-02-22 Thread Ken Cornetet
I got mine from here: http://unxutils.sourceforge.net/

-Original Message-
From: Carl Houseman [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 21, 2008 10:13 PM
To: NT System Admin Issues
Subject: RE: ntbackup scripts

I had a devil of a time finding this one the first time, been using it
for a
couple years now with no complaints.

http://recode.progiciels-bpi.ca/archives

(I don't remember if this is where I got it, but fc/b says this
recode.exe
is identical to my copy.)

Carl

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 21, 2008 10:02 PM
To: NT System Admin Issues
Subject: RE: ntbackup scripts

Where can I get recode for Windows? Google was less than helpful.

 
Dave
 
 ---
|Beach Computers|
|Affordable Hosting Solutions   |
|http://www.beachcomp.com   |
 ===
|Cheap Domain Warehouse |
|Get Your Own Dot!  |
|http://www.cheapdomainwarehouse.com|
 -- 


Disclaimer and confidentiality note:

The contents of this communication are intended/meant only for
addressee(s)
and may contain information that is privileged or otherwise
confidential.
If you are not the intended recipient you are hereby notified that any
disclosure, copying, distribution or taking any action in reliance on
the
contents of this information is strictly prohibited and may be unlawful.
The contents of this e-mail shall not be forwarded to any third party.
If
you have received this electronic mail transmission in error, please
delete
it from your system without copying or forwarding it, and notify the
sender
of the error by reply email, so that the sender's address records
can be corrected.
Views and opinions are solely those of the sender unless clearly
indicated
as being that of Beach Computers or any of it's affiliated companies.
Beach Computers cannot assure that the integrity of this communication
has
been maintained or that it is free of errors, virus, interception or
interference.

-Original Message-
From: Ken Cornetet [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 20, 2008 3:36 PM
To: NT System Admin Issues
Subject: RE: ntbackup scripts

Here's a script I use. It requires grep, blat and recode.

You will have to create your BKS file (it must be Unicode).

Watch for line wrap.

rem *
rem *
rem * Perform fullback to whatever tape is in the drive and email 
rem * report 
rem * 
rem * Ken Cornetet - 06/10/2002 
rem * 
rem * Revision History 
rem *
rem * WhenWhoWhat
rem * ---
rem * 06/10/2002  Ken Cornetet   Original Issue
rem * 06/24/2002  Ken Cornetet   Added RSM command per Q267574
rem *
rem *
rem * Requires external programs blat, grep, and recode
rem *
rem *

set [EMAIL PROTECTED]
set SMTP={Name of your SMTP relay host here}
set NAME=FULL BACKUP %DATE% %TIME%
set LOGS=%USERPROFILE%\Local Settings\Application Data\Microsoft\Windows
NT\NTBackup\data

c:
cd \backup

rem Delete any extraneous log files
del "%LOGS%\backup*.log"

rem 
rem * Have removable storage management look at tape in drive 
rem * (See Q267574 for details) 
rem 

start /wait rsm refresh /lf"BNCHMARK DLT1 SCSI Sequential Device" 
c:\bin\sleep 30

rem 
rem * Do Backup
rem 

start /wait ntbackup backup @c:\backup\everything.bks /M normal /J
"%NAME%" /P DLT /N "%NAME%" /l:s /HC:on /UM /D "%NAME%"

rem 
rem * find newest (should be only) log file
rem 

dir /s /b /o-d "%LOGS%\backup*.log" >c:\backup\backup.tmp
set /P FILE= log.txt


rem 
rem * Set subject for email
rem 

set SUBJ=Backup ran OK
grep -v "Error: You do not have permission" log.txt > log1.txt 

findstr /i error: log1.txt 
if not ERRORLEVEL 1 set SUBJ=Backup ran - FAILED

rem 
rem * Send email
rem 

c:\bin\blat log.txt -t %RECIPIENT% -subject "%SUBJ%" -server %SMTP% -f
%RECIPIENT%

rem 
rem * Move log file to our directory
rem *

RE: ntbackup scripts

2008-02-21 Thread Carl Houseman
I had a devil of a time finding this one the first time, been using it for a
couple years now with no complaints.

http://recode.progiciels-bpi.ca/archives

(I don't remember if this is where I got it, but fc/b says this recode.exe
is identical to my copy.)

Carl

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 21, 2008 10:02 PM
To: NT System Admin Issues
Subject: RE: ntbackup scripts

Where can I get recode for Windows? Google was less than helpful.

 
Dave
 
 ---
|Beach Computers|
|Affordable Hosting Solutions   |
|http://www.beachcomp.com   |
 ===
|Cheap Domain Warehouse |
|Get Your Own Dot!  |
|http://www.cheapdomainwarehouse.com|
 -- 


Disclaimer and confidentiality note:

The contents of this communication are intended/meant only for addressee(s)
and may contain information that is privileged or otherwise confidential.
If you are not the intended recipient you are hereby notified that any
disclosure, copying, distribution or taking any action in reliance on the
contents of this information is strictly prohibited and may be unlawful.
The contents of this e-mail shall not be forwarded to any third party. If
you have received this electronic mail transmission in error, please delete
it from your system without copying or forwarding it, and notify the sender
of the error by reply email, so that the sender's address records
can be corrected.
Views and opinions are solely those of the sender unless clearly indicated
as being that of Beach Computers or any of it's affiliated companies.
Beach Computers cannot assure that the integrity of this communication has
been maintained or that it is free of errors, virus, interception or
interference.

-Original Message-
From: Ken Cornetet [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 20, 2008 3:36 PM
To: NT System Admin Issues
Subject: RE: ntbackup scripts

Here's a script I use. It requires grep, blat and recode.

You will have to create your BKS file (it must be Unicode).

Watch for line wrap.

rem *
rem *
rem * Perform fullback to whatever tape is in the drive and email 
rem * report 
rem * 
rem * Ken Cornetet - 06/10/2002 
rem * 
rem * Revision History 
rem *
rem * WhenWhoWhat
rem * ---
rem * 06/10/2002  Ken Cornetet   Original Issue
rem * 06/24/2002  Ken Cornetet   Added RSM command per Q267574
rem *
rem *
rem * Requires external programs blat, grep, and recode
rem *
rem *

set [EMAIL PROTECTED]
set SMTP={Name of your SMTP relay host here}
set NAME=FULL BACKUP %DATE% %TIME%
set LOGS=%USERPROFILE%\Local Settings\Application Data\Microsoft\Windows
NT\NTBackup\data

c:
cd \backup

rem Delete any extraneous log files
del "%LOGS%\backup*.log"

rem 
rem * Have removable storage management look at tape in drive 
rem * (See Q267574 for details) 
rem 

start /wait rsm refresh /lf"BNCHMARK DLT1 SCSI Sequential Device" 
c:\bin\sleep 30

rem 
rem * Do Backup
rem 

start /wait ntbackup backup @c:\backup\everything.bks /M normal /J
"%NAME%" /P DLT /N "%NAME%" /l:s /HC:on /UM /D "%NAME%"

rem 
rem * find newest (should be only) log file
rem 

dir /s /b /o-d "%LOGS%\backup*.log" >c:\backup\backup.tmp
set /P FILE= log.txt


rem 
rem * Set subject for email
rem 

set SUBJ=Backup ran OK
grep -v "Error: You do not have permission" log.txt > log1.txt 

findstr /i error: log1.txt 
if not ERRORLEVEL 1 set SUBJ=Backup ran - FAILED

rem 
rem * Send email
rem 

c:\bin\blat log.txt -t %RECIPIENT% -subject "%SUBJ%" -server %SMTP% -f
%RECIPIENT%

rem 
rem * Move log file to our directory
rem 

move /Y "%FILE%" c:\backup





-Original Message-
From: Christopher Boggs [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 20, 2008 3:16 PM
To: NT System Admin Issues
Subject: Re: ntbackup scripts

Re

RE: ntbackup scripts

2008-02-21 Thread Groups


 
Dave
 
 ---
|Beach Computers|
|Affordable Hosting Solutions   |
|http://www.beachcomp.com   |
 ===
|Cheap Domain Warehouse |
|Get Your Own Dot!  |
|http://www.cheapdomainwarehouse.com|
 -- 


Disclaimer and confidentiality note:

The contents of this communication are intended/meant only for addressee(s)
and may contain information that is privileged or otherwise confidential.
If you are not the intended recipient you are hereby notified that any
disclosure, copying, distribution or taking any action in reliance on the
contents of this information is strictly prohibited and may be unlawful.
The contents of this e-mail shall not be forwarded to any third party. If
you have received this electronic mail transmission in error, please delete
it from your system without copying or forwarding it, and notify the sender
of the error by reply email, so that the sender's address records
can be corrected.
Views and opinions are solely those of the sender unless clearly indicated
as being that of Beach Computers or any of it's affiliated companies.
Beach Computers cannot assure that the integrity of this communication has
been maintained or that it is free of errors, virus, interception or
interference.

-Original Message-
From: Michael B. Smith [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 21, 2008 10:08 PM
To: NT System Admin Issues
Subject: RE: ntbackup scripts

http://www.google.com/search?hl=en&q=windows+download+recode.exe

Four different versions on the first page. At least.

Regards,

Michael B. Smith
MCSE/Exchange MVP
http://TheEssentialExchange.com


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 21, 2008 10:02 PM
To: NT System Admin Issues
Subject: RE: ntbackup scripts

Where can I get recode for Windows? Google was less than helpful.

 
Dave
 
 ---
|Beach Computers|
|Affordable Hosting Solutions   |
|http://www.beachcomp.com   |
 ===
|Cheap Domain Warehouse |
|Get Your Own Dot!  |
|http://www.cheapdomainwarehouse.com|
 -- 


Disclaimer and confidentiality note:

The contents of this communication are intended/meant only for addressee(s)
and may contain information that is privileged or otherwise confidential.
If you are not the intended recipient you are hereby notified that any
disclosure, copying, distribution or taking any action in reliance on the
contents of this information is strictly prohibited and may be unlawful.
The contents of this e-mail shall not be forwarded to any third party. If
you have received this electronic mail transmission in error, please delete
it from your system without copying or forwarding it, and notify the sender
of the error by reply email, so that the sender's address records
can be corrected.
Views and opinions are solely those of the sender unless clearly indicated
as being that of Beach Computers or any of it's affiliated companies.
Beach Computers cannot assure that the integrity of this communication has
been maintained or that it is free of errors, virus, interception or
interference.

-Original Message-
From: Ken Cornetet [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 20, 2008 3:36 PM
To: NT System Admin Issues
Subject: RE: ntbackup scripts

Here's a script I use. It requires grep, blat and recode.

You will have to create your BKS file (it must be Unicode).

Watch for line wrap.

rem *
rem *
rem * Perform fullback to whatever tape is in the drive and email 
rem * report 
rem * 
rem * Ken Cornetet - 06/10/2002 
rem * 
rem * Revision History 
rem *
rem * WhenWhoWhat
rem * ---
rem * 06/10/2002  Ken Cornetet   Original Issue
rem * 06/24/2002  Ken Cornetet   Added RSM command per Q267574
rem *
rem *
rem * Requires external programs blat, grep, and recode
rem *
rem *

set [EMAIL PROTECTED]
set SMTP={Name of your SMTP relay host here}
set NAME=FULL BACKUP %DATE% %TIME%
set LOGS=%USERPROFILE%\Local Settings\Application Data\Microsoft\Windows
NT\NTBackup\data

c:
cd \backup

rem Delete any extraneous log files
del "%LOGS%\backup*.log"

rem 
rem * Have removable storage management look at tape in drive 
rem * (See Q267574 for details) 
rem 

start /wait rsm refresh /lf"BNCHMARK DLT1 S

RE: ntbackup scripts

2008-02-21 Thread Michael B. Smith
http://www.google.com/search?hl=en&q=windows+download+recode.exe

Four different versions on the first page. At least.

Regards,

Michael B. Smith
MCSE/Exchange MVP
http://TheEssentialExchange.com


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 21, 2008 10:02 PM
To: NT System Admin Issues
Subject: RE: ntbackup scripts

Where can I get recode for Windows? Google was less than helpful.

 
Dave
 
 ---
|Beach Computers|
|Affordable Hosting Solutions   |
|http://www.beachcomp.com   |
 ===
|Cheap Domain Warehouse |
|Get Your Own Dot!  |
|http://www.cheapdomainwarehouse.com|
 -- 


Disclaimer and confidentiality note:

The contents of this communication are intended/meant only for addressee(s)
and may contain information that is privileged or otherwise confidential.
If you are not the intended recipient you are hereby notified that any
disclosure, copying, distribution or taking any action in reliance on the
contents of this information is strictly prohibited and may be unlawful.
The contents of this e-mail shall not be forwarded to any third party. If
you have received this electronic mail transmission in error, please delete
it from your system without copying or forwarding it, and notify the sender
of the error by reply email, so that the sender's address records
can be corrected.
Views and opinions are solely those of the sender unless clearly indicated
as being that of Beach Computers or any of it's affiliated companies.
Beach Computers cannot assure that the integrity of this communication has
been maintained or that it is free of errors, virus, interception or
interference.

-Original Message-
From: Ken Cornetet [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 20, 2008 3:36 PM
To: NT System Admin Issues
Subject: RE: ntbackup scripts

Here's a script I use. It requires grep, blat and recode.

You will have to create your BKS file (it must be Unicode).

Watch for line wrap.

rem *
rem *
rem * Perform fullback to whatever tape is in the drive and email 
rem * report 
rem * 
rem * Ken Cornetet - 06/10/2002 
rem * 
rem * Revision History 
rem *
rem * WhenWhoWhat
rem * ---
rem * 06/10/2002  Ken Cornetet   Original Issue
rem * 06/24/2002  Ken Cornetet   Added RSM command per Q267574
rem *
rem *
rem * Requires external programs blat, grep, and recode
rem *
rem *

set [EMAIL PROTECTED]
set SMTP={Name of your SMTP relay host here}
set NAME=FULL BACKUP %DATE% %TIME%
set LOGS=%USERPROFILE%\Local Settings\Application Data\Microsoft\Windows
NT\NTBackup\data

c:
cd \backup

rem Delete any extraneous log files
del "%LOGS%\backup*.log"

rem 
rem * Have removable storage management look at tape in drive 
rem * (See Q267574 for details) 
rem 

start /wait rsm refresh /lf"BNCHMARK DLT1 SCSI Sequential Device" 
c:\bin\sleep 30

rem 
rem * Do Backup
rem 

start /wait ntbackup backup @c:\backup\everything.bks /M normal /J
"%NAME%" /P DLT /N "%NAME%" /l:s /HC:on /UM /D "%NAME%"

rem 
rem * find newest (should be only) log file
rem 

dir /s /b /o-d "%LOGS%\backup*.log" >c:\backup\backup.tmp
set /P FILE= log.txt


rem 
rem * Set subject for email
rem 

set SUBJ=Backup ran OK
grep -v "Error: You do not have permission" log.txt > log1.txt 

findstr /i error: log1.txt 
if not ERRORLEVEL 1 set SUBJ=Backup ran - FAILED

rem 
rem * Send email
rem 

c:\bin\blat log.txt -t %RECIPIENT% -subject "%SUBJ%" -server %SMTP% -f
%RECIPIENT%

rem 
rem * Move log file to our directory
rem 

move /Y "%FILE%" c:\backup





-Original Message-
From: Christopher Boggs [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 20, 2008 3:16 PM
To: NT System Admin Issues
Subject: Re: ntbackup scripts

Rename it with 

RE: ntbackup scripts

2008-02-21 Thread Groups
Where can I get recode for Windows? Google was less than helpful.

 
Dave
 
 ---
|Beach Computers|
|Affordable Hosting Solutions   |
|http://www.beachcomp.com   |
 ===
|Cheap Domain Warehouse |
|Get Your Own Dot!  |
|http://www.cheapdomainwarehouse.com|
 -- 


Disclaimer and confidentiality note:

The contents of this communication are intended/meant only for addressee(s)
and may contain information that is privileged or otherwise confidential.
If you are not the intended recipient you are hereby notified that any
disclosure, copying, distribution or taking any action in reliance on the
contents of this information is strictly prohibited and may be unlawful.
The contents of this e-mail shall not be forwarded to any third party. If
you have received this electronic mail transmission in error, please delete
it from your system without copying or forwarding it, and notify the sender
of the error by reply email, so that the sender's address records
can be corrected.
Views and opinions are solely those of the sender unless clearly indicated
as being that of Beach Computers or any of it's affiliated companies.
Beach Computers cannot assure that the integrity of this communication has
been maintained or that it is free of errors, virus, interception or
interference.

-Original Message-
From: Ken Cornetet [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 20, 2008 3:36 PM
To: NT System Admin Issues
Subject: RE: ntbackup scripts

Here's a script I use. It requires grep, blat and recode.

You will have to create your BKS file (it must be Unicode).

Watch for line wrap.

rem *
rem *
rem * Perform fullback to whatever tape is in the drive and email 
rem * report 
rem * 
rem * Ken Cornetet - 06/10/2002 
rem * 
rem * Revision History 
rem *
rem * WhenWhoWhat
rem * ---
rem * 06/10/2002  Ken Cornetet   Original Issue
rem * 06/24/2002  Ken Cornetet   Added RSM command per Q267574
rem *
rem *
rem * Requires external programs blat, grep, and recode
rem *
rem *

set [EMAIL PROTECTED]
set SMTP={Name of your SMTP relay host here}
set NAME=FULL BACKUP %DATE% %TIME%
set LOGS=%USERPROFILE%\Local Settings\Application Data\Microsoft\Windows
NT\NTBackup\data

c:
cd \backup

rem Delete any extraneous log files
del "%LOGS%\backup*.log"

rem 
rem * Have removable storage management look at tape in drive 
rem * (See Q267574 for details) 
rem 

start /wait rsm refresh /lf"BNCHMARK DLT1 SCSI Sequential Device" 
c:\bin\sleep 30

rem 
rem * Do Backup
rem 

start /wait ntbackup backup @c:\backup\everything.bks /M normal /J
"%NAME%" /P DLT /N "%NAME%" /l:s /HC:on /UM /D "%NAME%"

rem 
rem * find newest (should be only) log file
rem 

dir /s /b /o-d "%LOGS%\backup*.log" >c:\backup\backup.tmp
set /P FILE= log.txt


rem 
rem * Set subject for email
rem 

set SUBJ=Backup ran OK
grep -v "Error: You do not have permission" log.txt > log1.txt 

findstr /i error: log1.txt 
if not ERRORLEVEL 1 set SUBJ=Backup ran - FAILED

rem 
rem * Send email
rem 

c:\bin\blat log.txt -t %RECIPIENT% -subject "%SUBJ%" -server %SMTP% -f
%RECIPIENT%

rem 
rem * Move log file to our directory
rem 

move /Y "%FILE%" c:\backup





-Original Message-
From: Christopher Boggs [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 20, 2008 3:16 PM
To: NT System Admin Issues
Subject: Re: ntbackup scripts

Rename it with a .txt extension :)

Christopher Boggs
Security System Administrator
Miltec Corporation   

office.256-428-1370  
mobile.256-468-0922
fax.256-428-1461

Painstakingly sent to you from my Blackberry...

- Original Message -----
From: Ben Scott <[EMAIL PROTECTED]>
To: NT System Admin Issues 
Sent: Wed Feb 20 13:12:58 2008
Su

Re: ntbackup scripts

2008-02-21 Thread Kurt Buff
This is most excellent.

Thanks very much!

Kurt

On Wed, Feb 20, 2008 at 8:36 PM, Ken Cornetet <[EMAIL PROTECTED]> wrote:
> Here's a script I use. It requires grep, blat and recode.
>
>  You will have to create your BKS file (it must be Unicode).
>
>  Watch for line wrap.
>
>  rem *
>  rem *
>  rem * Perform fullback to whatever tape is in the drive and email
>  rem * report
>  rem *
>  rem * Ken Cornetet - 06/10/2002
>  rem *
>  rem * Revision History
>  rem *
>  rem * WhenWhoWhat
>  rem * ---
>  rem * 06/10/2002  Ken Cornetet   Original Issue
>  rem * 06/24/2002  Ken Cornetet   Added RSM command per Q267574
>  rem *
>  rem *
>  rem * Requires external programs blat, grep, and recode
>  rem *
>  rem *
>
>  set [EMAIL PROTECTED]
>  set SMTP={Name of your SMTP relay host here}
>  set NAME=FULL BACKUP %DATE% %TIME%
>  set LOGS=%USERPROFILE%\Local Settings\Application Data\Microsoft\Windows
>  NT\NTBackup\data
>
>  c:
>  cd \backup
>
>  rem Delete any extraneous log files
>  del "%LOGS%\backup*.log"
>
>  rem 
>  rem * Have removable storage management look at tape in drive
>  rem * (See Q267574 for details)
>  rem 
>
>  start /wait rsm refresh /lf"BNCHMARK DLT1 SCSI Sequential Device"
>  c:\bin\sleep 30
>
>  rem 
>  rem * Do Backup
>  rem 
>
>  start /wait ntbackup backup @c:\backup\everything.bks /M normal /J
>  "%NAME%" /P DLT /N "%NAME%" /l:s /HC:on /UM /D "%NAME%"
>
>  rem 
>  rem * find newest (should be only) log file
>  rem 
>
>  dir /s /b /o-d "%LOGS%\backup*.log" >c:\backup\backup.tmp
>  set /P FILE= 
>  rem 
>  rem * Make ASCII version of log file
>  rem 
>
>  c:\bin\recode -f unicode..us <"%FILE%" >log.txt
>
>
>  rem 
>  rem * Set subject for email
>  rem 
>
>  set SUBJ=Backup ran OK
>  grep -v "Error: You do not have permission" log.txt > log1.txt
>
>  findstr /i error: log1.txt
>  if not ERRORLEVEL 1 set SUBJ=Backup ran - FAILED
>
>  rem 
>  rem * Send email
>  rem 
>
>  c:\bin\blat log.txt -t %RECIPIENT% -subject "%SUBJ%" -server %SMTP% -f
>  %RECIPIENT%
>
>  rem ************
>  rem * Move log file to our directory
>  rem 
>
>  move /Y "%FILE%" c:\backup
>
>
>
>
>
>
>  -Original Message-
>  From: Christopher Boggs [mailto:[EMAIL PROTECTED]
>  Sent: Wednesday, February 20, 2008 3:16 PM
>  To: NT System Admin Issues
>
>
> Subject: Re: ntbackup scripts
>
>  Rename it with a .txt extension :)
>  
>  Christopher Boggs
>  Security System Administrator
>  Miltec Corporation
>
>  office.256-428-1370
>  mobile.256-468-0922
>  fax.256-428-1461
>
>  Painstakingly sent to you from my Blackberry...
>
>  - Original Message -
>  From: Ben Scott <[EMAIL PROTECTED]>
>  To: NT System Admin Issues 
>  Sent: Wed Feb 20 13:12:58 2008
>  Subject: Re: ntbackup scripts
>
>  On Wed, Feb 20, 2008 at 7:17 AM, Kurt Buff <[EMAIL PROTECTED]> wrote:
>  >  Anyone have any ntbackup scripts they'd care to share?
>
>   NTBACKUP is, in my experience, idiosyncratic and poorly-documented.
>  Reporting/logging is limited, and selective restores are somewhat
>  cumbersome.  All that said, one you know what works and what doesn't,
>  it is very servicable.  And, of course, you already paid for it, so it
>  doesn't cost extra.  It use it on some servers here at %DAYJOB%.
>
>   The biggest limitation I find is that anything other than "unmanaged
>  media mode" (i.e., /UM switch) doesn't appear to work in any sane or
>  relia

Re: ntbackup scripts

2008-02-21 Thread Kurt Buff
1) It's Symantec - I'm prejudiced, and it's probably irrational, but
there you have it.

2) If I want to get supported, I'll have to buy a copy after a
while,and upgrade - see point one, above, plust is will cost. That's
not going to be popular.

Kurt

On Wed, Feb 20, 2008 at 8:36 PM, Sherry Abercrombie <[EMAIL PROTECTED]> wrote:
> Indeed, why not BE?  Backup Exec 11d has a built in media rotation policy
> for Grandfather, Father, Son that is customizable.
>
> I've actually been happy with Backup Exec since Symantec bought out Veritas,
> they haven't messed up the product, it's still a very good product.
>
>
> On Feb 20, 2008 11:08 AM, René de Haas <[EMAIL PROTECTED]> wrote:
> >
> > Why don't you want to use Backup Exec?
> >
> >
> >
> >
> >
> > -Original Message-
> > From: Kurt Buff [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, February 20, 2008 1:18 PM
> > To: NT System Admin Issues
> >
> > Subject: ntbackup scripts
> >
> > I've got a nice shiny new LTO3 drive and 21 tapes for the UK office.
> > It came with BE 11d, but I'd like to avoid that if possible.
> >
> > I want to use ntbackup to set up a parent/child/grandchild rotation,
> > so that I can have them send tapes offsite - the capacity of the tape
> > is more than sufficient for a full backup each day, but I want to make
> > sure that I extend the functionality as long as possible, as I won't
> > be back for quite some time.
> >
> > Anyone have any ntbackup scripts they'd care to share? We use Tivoli
> > in the US office, so I haven't had to touch ntbackup in 6 years, and
> > I've been frustrated by what I found on the web.
> >
> > Kurt
> >
> >
> > ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> > ~   ~
> >
> >
> >
> > ***
> > The information in this e-mail is confidential and intended solely for the
> individual or entity to whom it is addressed.  If you have received this
> e-mail in error please notify the sender by return e-mail delete this e-mail
> and refrain from any disclosure or action based on the information.
> > ***
> >
> >
> >
> >
> >
> > ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> > ~   ~
>
>
>
> --
> Sherry Abercrombie
>
> "Any sufficiently advanced technology is indistinguishable from magic."
> Arthur C. Clarke
>
>
>
>
>

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~   ~


RE: ntbackup scripts

2008-02-21 Thread Christopher Boggs
How about a cut and paste over at pastebin.com ?

Or do you actually want a file upload?


-Original Message-
From: Ben Scott [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 20, 2008 8:46 PM
To: NT System Admin Issues
Subject: Re: ntbackup scripts

On Wed, Feb 20, 2008 at 3:15 PM, Christopher Boggs <[EMAIL PROTECTED]>
wrote:
> Rename it with a .txt extension :)

  Thought of that, but it might still run afoul of signature matching
somewhere, plus it's just an ugly method.  Surely there's gotta be a
website somewhere that's appropriate to use to share this kind of
stuff with?

-- Ben

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


Re: ntbackup scripts

2008-02-20 Thread Ben Scott
On Wed, Feb 20, 2008 at 3:15 PM, Christopher Boggs <[EMAIL PROTECTED]> wrote:
> Rename it with a .txt extension :)

  Thought of that, but it might still run afoul of signature matching
somewhere, plus it's just an ugly method.  Surely there's gotta be a
website somewhere that's appropriate to use to share this kind of
stuff with?

-- Ben

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~   ~


Re: ntbackup scripts

2008-02-20 Thread Sherry Abercrombie
Indeed, why not BE?  Backup Exec 11d has a built in media rotation policy
for Grandfather, Father, Son that is customizable.

I've actually been happy with Backup Exec since Symantec bought out Veritas,
they haven't messed up the product, it's still a very good product.

On Feb 20, 2008 11:08 AM, René de Haas <[EMAIL PROTECTED]> wrote:

> Why don't you want to use Backup Exec?
>
> -Original Message-
> From: Kurt Buff [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, February 20, 2008 1:18 PM
> To: NT System Admin Issues
> Subject: ntbackup scripts
>
> I've got a nice shiny new LTO3 drive and 21 tapes for the UK office.
> It came with BE 11d, but I'd like to avoid that if possible.
>
> I want to use ntbackup to set up a parent/child/grandchild rotation,
> so that I can have them send tapes offsite - the capacity of the tape
> is more than sufficient for a full backup each day, but I want to make
> sure that I extend the functionality as long as possible, as I won't
> be back for quite some time.
>
> Anyone have any ntbackup scripts they'd care to share? We use Tivoli
> in the US office, so I haven't had to touch ntbackup in 6 years, and
> I've been frustrated by what I found on the web.
>
> Kurt
>
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~   ~
>
>
> ***
> The information in this e-mail is confidential and intended solely for the
> individual or entity to whom it is addressed.  If you have received this
> e-mail in error please notify the sender by return e-mail delete this e-mail
> and refrain from any disclosure or action based on the information.
> ***
>
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~   ~
>



-- 
Sherry Abercrombie

"Any sufficiently advanced technology is indistinguishable from magic."
Arthur C. Clarke

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~   ~

RE: ntbackup scripts

2008-02-20 Thread Ken Cornetet
Here's a script I use. It requires grep, blat and recode.

You will have to create your BKS file (it must be Unicode).

Watch for line wrap.

rem *
rem *
rem * Perform fullback to whatever tape is in the drive and email 
rem * report 
rem * 
rem * Ken Cornetet - 06/10/2002 
rem * 
rem * Revision History 
rem *
rem * WhenWhoWhat
rem * ---
rem * 06/10/2002  Ken Cornetet   Original Issue
rem * 06/24/2002  Ken Cornetet   Added RSM command per Q267574
rem *
rem *
rem * Requires external programs blat, grep, and recode
rem *
rem *

set [EMAIL PROTECTED]
set SMTP={Name of your SMTP relay host here}
set NAME=FULL BACKUP %DATE% %TIME%
set LOGS=%USERPROFILE%\Local Settings\Application Data\Microsoft\Windows
NT\NTBackup\data

c:
cd \backup

rem Delete any extraneous log files
del "%LOGS%\backup*.log"

rem 
rem * Have removable storage management look at tape in drive 
rem * (See Q267574 for details) 
rem 

start /wait rsm refresh /lf"BNCHMARK DLT1 SCSI Sequential Device" 
c:\bin\sleep 30

rem 
rem * Do Backup
rem 

start /wait ntbackup backup @c:\backup\everything.bks /M normal /J
"%NAME%" /P DLT /N "%NAME%" /l:s /HC:on /UM /D "%NAME%"

rem 
rem * find newest (should be only) log file
rem 

dir /s /b /o-d "%LOGS%\backup*.log" >c:\backup\backup.tmp
set /P FILE= log.txt


rem 
rem * Set subject for email
rem 

set SUBJ=Backup ran OK
grep -v "Error: You do not have permission" log.txt > log1.txt 

findstr /i error: log1.txt 
if not ERRORLEVEL 1 set SUBJ=Backup ran - FAILED

rem 
rem * Send email
rem 

c:\bin\blat log.txt -t %RECIPIENT% -subject "%SUBJ%" -server %SMTP% -f
%RECIPIENT%

rem 
rem * Move log file to our directory
rem 

move /Y "%FILE%" c:\backup





-Original Message-
From: Christopher Boggs [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 20, 2008 3:16 PM
To: NT System Admin Issues
Subject: Re: ntbackup scripts

Rename it with a .txt extension :)

Christopher Boggs
Security System Administrator
Miltec Corporation   

office.256-428-1370  
mobile.256-468-0922
fax.256-428-1461

Painstakingly sent to you from my Blackberry...

- Original Message -
From: Ben Scott <[EMAIL PROTECTED]>
To: NT System Admin Issues 
Sent: Wed Feb 20 13:12:58 2008
Subject: Re: ntbackup scripts

On Wed, Feb 20, 2008 at 7:17 AM, Kurt Buff <[EMAIL PROTECTED]> wrote:
>  Anyone have any ntbackup scripts they'd care to share?

  NTBACKUP is, in my experience, idiosyncratic and poorly-documented.
Reporting/logging is limited, and selective restores are somewhat
cumbersome.  All that said, one you know what works and what doesn't,
it is very servicable.  And, of course, you already paid for it, so it
doesn't cost extra.  It use it on some servers here at %DAYJOB%.

  The biggest limitation I find is that anything other than "unmanaged
media mode" (i.e., /UM switch) doesn't appear to work in any sane or
reliable fashion.  There's some kind of drain bamage involved which
I've never figured out.

  I've got a set of batch files that automate things reasonably well
for our purposes.  Notable features include hands-off operation, tape
name reporting and preservation, and the ability to email the log
file.  The design is basically put a tape in and it will run the
backup to it that night.  If that tape is ejected the next morning, it
worked.  Media rotation scheduling has to be handled manually, but I
use a basic daily/weekly/monthly scheme that makes that a no-brainer.
KISS.

  I attempted to attach the scripts to this message, but Gmail refuses
executable files.  I guess I should have seen that coming.  Anyone got
some place I can upload 'em to?

-- Ben

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

~ Upgrade to Next Generation Antispam/Antivir

Re: ntbackup scripts

2008-02-20 Thread Christopher Boggs
Rename it with a .txt extension :)

Christopher Boggs
Security System Administrator
Miltec Corporation   

office.256-428-1370  
mobile.256-468-0922
fax.256-428-1461

Painstakingly sent to you from my Blackberry...

- Original Message -
From: Ben Scott <[EMAIL PROTECTED]>
To: NT System Admin Issues 
Sent: Wed Feb 20 13:12:58 2008
Subject: Re: ntbackup scripts

On Wed, Feb 20, 2008 at 7:17 AM, Kurt Buff <[EMAIL PROTECTED]> wrote:
>  Anyone have any ntbackup scripts they'd care to share?

  NTBACKUP is, in my experience, idiosyncratic and poorly-documented.
Reporting/logging is limited, and selective restores are somewhat
cumbersome.  All that said, one you know what works and what doesn't,
it is very servicable.  And, of course, you already paid for it, so it
doesn't cost extra.  It use it on some servers here at %DAYJOB%.

  The biggest limitation I find is that anything other than "unmanaged
media mode" (i.e., /UM switch) doesn't appear to work in any sane or
reliable fashion.  There's some kind of drain bamage involved which
I've never figured out.

  I've got a set of batch files that automate things reasonably well
for our purposes.  Notable features include hands-off operation, tape
name reporting and preservation, and the ability to email the log
file.  The design is basically put a tape in and it will run the
backup to it that night.  If that tape is ejected the next morning, it
worked.  Media rotation scheduling has to be handled manually, but I
use a basic daily/weekly/monthly scheme that makes that a no-brainer.
KISS.

  I attempted to attach the scripts to this message, but Gmail refuses
executable files.  I guess I should have seen that coming.  Anyone got
some place I can upload 'em to?

-- Ben

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

Re: ntbackup scripts

2008-02-20 Thread Ben Scott
On Wed, Feb 20, 2008 at 7:17 AM, Kurt Buff <[EMAIL PROTECTED]> wrote:
>  Anyone have any ntbackup scripts they'd care to share?

  NTBACKUP is, in my experience, idiosyncratic and poorly-documented.
Reporting/logging is limited, and selective restores are somewhat
cumbersome.  All that said, one you know what works and what doesn't,
it is very servicable.  And, of course, you already paid for it, so it
doesn't cost extra.  It use it on some servers here at %DAYJOB%.

  The biggest limitation I find is that anything other than "unmanaged
media mode" (i.e., /UM switch) doesn't appear to work in any sane or
reliable fashion.  There's some kind of drain bamage involved which
I've never figured out.

  I've got a set of batch files that automate things reasonably well
for our purposes.  Notable features include hands-off operation, tape
name reporting and preservation, and the ability to email the log
file.  The design is basically put a tape in and it will run the
backup to it that night.  If that tape is ejected the next morning, it
worked.  Media rotation scheduling has to be handled manually, but I
use a basic daily/weekly/monthly scheme that makes that a no-brainer.
KISS.

  I attempted to attach the scripts to this message, but Gmail refuses
executable files.  I guess I should have seen that coming.  Anyone got
some place I can upload 'em to?

-- Ben

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~   ~


RE: ntbackup scripts

2008-02-20 Thread René de Haas
Why don't you want to use Backup Exec?

-Original Message-
From: Kurt Buff [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 20, 2008 1:18 PM
To: NT System Admin Issues
Subject: ntbackup scripts

I've got a nice shiny new LTO3 drive and 21 tapes for the UK office.
It came with BE 11d, but I'd like to avoid that if possible.

I want to use ntbackup to set up a parent/child/grandchild rotation,
so that I can have them send tapes offsite - the capacity of the tape
is more than sufficient for a full backup each day, but I want to make
sure that I extend the functionality as long as possible, as I won't
be back for quite some time.

Anyone have any ntbackup scripts they'd care to share? We use Tivoli
in the US office, so I haven't had to touch ntbackup in 6 years, and
I've been frustrated by what I found on the web.

Kurt

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~   ~


***
The information in this e-mail is confidential and intended solely for the 
individual or entity to whom it is addressed.  If you have received this e-mail 
in error please notify the sender by return e-mail delete this e-mail and 
refrain from any disclosure or action based on the information.
***

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~   ~