Hi, I'm trying to create a DOS menu to make things easier for creating and restoring computer images from a server... I'm using a modified version of the program from
http://www.netbootdisk.com/ and need to change this logon batch file:
@echo off
echo SAMPLE LOGON SCRIPT
echo.
echo *** You'll have to modify this script to suit your network. ***
if not %NTFS%==1 goto N
SHOWMENU Loading Read-Only NTFS Support...
REM *** NTFSDOS - EDIT BELOW TO SUIT YOUR LAN, ETC ***
net use x:
\\server\sharex:\ntfsdos
REM *** NTFSDOS - EDIT END
:N
REM --- EXAMPLE --- Automatically run Ghost from a network share ---
NET USE G:
\\server location\G:
ghost.exe -rb
REM
REM Note: the -rb = reboot when done :)
So ideally I'd first like 2 options, 1 to create an image of the pc and ghost it to the server and 2 to restore one to that pc from the server, then after chosing 1 or 2 it would come up with more options of the specific type of pc, I believe the code to create an image is something like the following: GHOST -clone,mode=create,src=1,dst=\\server location\dc7700.gho
Any help would be appriciated and if you need anymore information ask away.
Cheers, Danny