Try modding your script to include:
Code:
Set objShell = wscript.createObject("wscript.shell")
function LogtoEvent (MSG,success)
select case success
case 1 objShell.LogEvent EVENT_SUCCESS, MSG ' 1 is a success
case 0 objShell.LogEvent EVENT_FAILURE, MSG ' 0 is a error
case 2 objShell.LogEvent EVENT_WARNING, MSG ' 2 is a warning
case 3 objShell.LogEvent EVENT_INFORMATION, MSG ' Information
end select
end function Then put this:
Code:
LogtoEvent "Started script ",3
{YOUR MAP COMMAND}
LogtoEvent "Tried to map XXX",3 Then when they tell you the machine you should have entry's in the event log that will hopefully give you clues. If you do error handling you can get it to put that in the event log too.
I use this function in pretty much all our scripts to log whats going on.
Cheers