- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- Windows Server 2003
- >
- need an ntbackup script for Windows 2003 that work...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-09-2004 08:18 AM
тАО02-09-2004 08:18 AM
need an ntbackup script for Windows 2003 that works
Has anyone figured this one out yet? I have read all the posts here and at several other sites...nothing has helped.
And, yes, I do reward points to all answers...check out my porfile.
Thanks!
Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-09-2004 09:35 AM
тАО02-09-2004 09:35 AM
Re: need an ntbackup script for Windows 2003 that works
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-09-2004 09:40 AM
тАО02-09-2004 09:40 AM
Re: need an ntbackup script for Windows 2003 that works
i found this one too.. hope this helps..
Ganesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-09-2004 04:07 PM
тАО02-09-2004 04:07 PM
Re: need an ntbackup script for Windows 2003 that works
http://support.microsoft.com/default.aspx?scid=kb;en-us;817688
Jon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-10-2004 12:33 AM
тАО02-10-2004 12:33 AM
Re: need an ntbackup script for Windows 2003 that works
Thanks for the replies, but neither one of them apply to my issue. The first one you posted refers to a known compatability issue od reading tapes from previous versions of Windows. The second one is essentially a "Backup 101" introductory that has no references to running a batch file/script backup.
I'm looking to write a script that will perform a backup on a previously used tape. The problem is occurring on tapes that have already been used. I've tried using the rsm command line to clear and mark the tape as free, but I'm missing something.
I would really like someone to post a copy of a script that is working on 2003, and overwrites used tapes.
Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-10-2004 12:43 AM
тАО02-10-2004 12:43 AM
Re: need an ntbackup script for Windows 2003 that works
Thanks for the reply, but the backup doesn't even start. I receive the error:
"Cannot locate the specified media or backup device. This backup operation will terminate."
The only article in technet was:
http://support.microsoft.com/default.aspx?scid=kb;en-us;816588&Product=winsvr2003
At tektips this problem has been discussed at length, but no one has been able to get it to work yet.
http://www.tek-tips.com/gviewthread.cfm/lev2/3/lev3/19/pid/931/qid/755282
Again, if anyone has a script thta works please post it. Thanks.
Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-30-2004 12:45 PM
тАО11-30-2004 12:45 PM
Re: need an ntbackup script for Windows 2003 that works
try this one
@echo off
cls
echo.
echo Please insert correct tape for backup or press CTRL_C to Abort..
echo.
ntbackup backup systemstate C:\ E:\ /v:yes /j "MS-SQL server Backup" /d "SERVER & REGISTRY BACKUP" /hc:on /l:s /p "4mm DDS" /UM
This worked fine on win2k server, although I find that leaving the UM at the end will give you an error at the start of your log "Error returned while creating the volume shadow copy:800423f4". But if you take it out then I receive the error that you get "Cannot locate the specified media or backup device. This backup operation will terminate."
I am going to experiment with turning /SNAP:{on | off} to see if that will fix that error with creating the volume shadow copy:800423f4. However backups seem to be ok and I have also managed to restore rom tape.
Cheers
Joel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-01-2004 12:50 AM
тАО12-01-2004 12:50 AM
Re: need an ntbackup script for Windows 2003 that works
Your script wouldn't be useful for a scheduled backup; which would be unattended. I need one that will work unattended. Thnaks anyways.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-01-2004 11:04 AM
тАО12-01-2004 11:04 AM
Re: need an ntbackup script for Windows 2003 that works
I tried the script with the switch snap:off and it yielded a better result last night, i.e.
ntbackup backup systemstate C:\Backup C:\Defrag_Logs C:\download C:\Drivers C:\tapediagnostics E:\ /v:yes /j "MS-SQL server Backup" /d "SERVER & REGISTRY BACKUP" /hc:on /l:s /p "4mm DDS" /um /snap:off
Sorry I should have mentioned that I use something called runner.exe to automate my backups every night. It's basically some sort of scheduler that creates a text file RCOMM.TXT and in it this is the entry:
[every day]
[su]
[mn]
[tu]
[we]
[th]
[fr]
[sa]
[wo]
23:00 c:\Backup\backnow.bat
[wd]
Backnow.bat is the batch line where I put the command line script above.
Let me know how I can email you this runner.exe scheduler. So far so good with our win2k and win2003 servers every night.
Cheers
Joel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-02-2004 09:10 AM
тАО12-02-2004 09:10 AM
Re: need an ntbackup script for Windows 2003 that works
Thanks for the info - I'll give it a shot next week. My email is:
rdarling@southwickclothingX.com
Please remove capital X after "g" and before "."