重启PC时,XP 2中的logoff7.vbs脚本错误

时间:2013-07-20 13:49:35

标签: permission-denied

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

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

  • 脚本:logoff7.vbs
  • line:63
  • char: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 char:9是

  

objFSO.DeleteFile strFlagFile。

请帮我解决这个问题。

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

0 个答案:

没有答案