我们运行 Dynamics GP。由于它存储表单/报告的方式,我需要一些将 .SET 文件复制到程序目录中的安装脚本。这可以手动完成,但是让用户运行安装程序脚本来为他们安装正确的文件会更快。
我一直在构建一个复制必要文件的 VBScript 安装程序。棘手的部分是一些客户端运行的是 Windows XP,而一些客户端运行的是 Windows 7(甚至 8)。UAC 已启用,因此权限开始发挥作用。
我尝试这样做的方法是盲目地尝试复制文件,如果检测到权限错误,它会以管理员权限重新启动脚本。我们遇到的问题是一些(全部?)Windows 7 机器启用了虚拟文件/注册表写入,因此当脚本尝试将文件复制到 C:\Program Files\Microsoft Dynamics\GP2010 时,它会默默地失败并复制它们到用户的 AppData\Local\VirtualStore 目录。这不适用于 GP。
所以我需要做的是让脚本将文件复制到 C:\Program Files (不是 VirtualStore 目录),并仅在必要时提升权限。如果我让它全面提升,这会导致 Windows XP 机器在启动脚本时简单地弹出一个神秘的“运行方式”对话框。
这是我到目前为止所拥有的:
Dim WSHShell, FSO, Desktop, DesktopPath
Set FSO = CreateObject("Scripting.FileSystemObject")
Set WSHShell = CreateObject("WScript.Shell")
Desktop = WSHShell.SpecialFolders("Desktop")
DesktopPath = FSO.GetAbsolutePathName(Desktop)
'Set working directory to directory the script is in.
'This ends up being C:\Windows\System32 if the script is
'started from ShellExecute, or a link in an email, thus breaking
'relative paths.
WSHShell.CurrentDirectory = FSO.GetFile(WScript.ScriptFullName).ParentFolder
On Error Resume Next
If FSO.FolderExists("C:\Program Files (x86)") Then
WScript.Echo "Installing 64-bit."
FSO.CopyFile "64-bit\*.set", "C:\Program Files (x86)\Microsoft Dynamics\GP2010\", True
FSO.CopyFile "64-bit\*.lnk", DesktopPath, True
ElseIf FSO.FolderExists("C:\Program Files\Microsoft Dynamics\GP2010\Mekorma MICR") Then
WScript.Echo "Installing 32-bit (with MICR)."
FSO.CopyFile "32-bit MICR\*.set", "C:\Program Files\Microsoft Dynamics\GP2010\", True
FSO.CopyFile "32-bit MICR\*.lnk", DesktopPath, True
Else
WScript.Echo "Installing 32-bit."
FSO.CopyFile "32-bit\*.SET", "C:\Program Files\Microsoft Dynamics\GP2010\", True
FSO.CopyFile "32-bit\*.lnk", DesktopPath, True
End If
If Err.Number = 70 Then
CreateObject("Shell.Application").ShellExecute "wscript.exe", """" & WScript.ScriptFullName & """" , "", "runas", 1
WScript.Quit
ElseIf Err.Number <> 0 Then
MsgBox "Error " & Err.Number & vbCrLf & Err.Source & vbCrLf & Err.Description
Else
MsgBox "Installed successfully."
End If
总之:我如何让 VBScript 提升权限而不导致 XP 在“运行方式”对话框中停止,并且不会导致 Windows 7 将文件复制到 AppData\Local\VirtualStore?