我有一个注销VB脚本(来自http://www.rlmueller.net/Logon7.htm)。它用于限制登录用户。
在Win 7中,脚本运行得很好,但是当我重新启动PC时,我在XP SP2中出现错误:
下面是代码:
' Check if flag file exists for this user.
If (objFSO.FileExists(strFlagFile) = True) Then
' Read encoded computer name from the flag file.
Set objFile = objFSO.OpenTextFile(strFlagFile, ForReading)
strLine = objFile.ReadLine
objFile.Close
' Check encoded computer name.
If (strLine = strComputerEncoded) Then
' Delete the file.
objFSO.DeleteFile strFlagFile
End If
Wscript.Quit
End If
行的脚本:63 char:9是
objFSO.DeleteFile strFlagFile。
请帮我解决这个问题。
之前,如果我的英语不够好,我很抱歉。