Are you using VBScript, or similar? If so, you could write your script file to write a text file to keep track of the progress of your script.
Non-Technical Overview:
Script runs,
if <text file> doesn't exist, then run first process(es)
then write file with progress value, reboot
elseif <text file> does exist
then read file value, go to appropriate part of script based on value to continue processes
end if
at end of script delete file and reg key.
Hope this helps.
Main Topics
Browse All Topics





by: dovcampPosted on 2006-04-30 at 07:00:47ID: 16572521
In theory you could run the command from RunOnce (or taskmanager) then after the first action takes place that requires a reboot write out some sort of file to the system (using copy con). After the system reboots and the script runs again, it should check to see if this first file is present (If exists) and if so it will skip to the next task. Repeat as needed.