oops!
The VBScript File UpDatINI.VBS that was in the Zip file at my website
contained an error from editing the file after I debugged it. I commented
out a few lines in the CallItQuits Function but I missed commenting out a
line that had a continuation mark on the previous line. If you have the
File and it is causing an error simply cut and past the code below in the
file using NotePad or a pure text editor (RBE is fine). The corrected file
is in the Zip file 5 min prior to this post.
Private Function CallItQuits(iVal)
If iVal <> 0 Then
Set FSO = Nothing
Set Wss = Nothing
set INI = Nothing
Set Env = Nothing
CallItQuits = err.number
WScript.Quit (iVal)
Else
Set FSO = Nothing
Set Wss = Nothing
set INI = Nothing
Set Env = Nothing
WScript.Quit (0)
End If
End Function