1

我有一个注销 VB 脚本(来自http://www.rlmueller.net/Logon7.htm)。它用于限制登录用户。

在 Win 7 中,脚本运行得很好,但是当我重新启动 PC 时,我在 XP SP2 中遇到错误:

  • 脚本:logoff7.vbs
  • 行:63
  • 字符:9
  • 错误:权限被拒绝
  • 代码:800A0046
  • 来源:Microsoft VBScrpt 运行时错误

下面是代码:

 ' 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 字符:9 是

objFSO.DeleteFile strFlagFile。

请帮我解决这个问题。

thx 之前,如果我的英语不够好,我很抱歉。

4

0 回答 0