Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using TAPETEST to format in Pre-Batch

Status
Not open for further replies.

Zim14

MIS
Feb 12, 2002
3
0
0
US
I have a situation, due to the brilliant idea of tape pooling with UNIX and NT machines, where I need to automate a format prior to the backup job running. The TAPETEST utility prompts for a name before it formats. I saw a post back in 2000, but there was not a response. Does anyone know if this will work??

X:\arcserve\tapetest.exe -d1 -f <%computername%
OR
X:\arcserve\tapetest.exe -d1 -f <name.txt


 
tapetest -d1 -f < names.txt WORKS!!!!!

In order to not have to make a names.txt for each system. A batch file with the following should work for you:

echo %computername% > names.txt
tapetest -d1 -f < names.txt

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top