0

我在 Installshield Basic MSI 项目中有一个自定义操作,可以从注册表中找出 SQL Server 的版本。

RegKey2012 = "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\" & _
             "Microsoft SQL Server\MSSQL11.MSSQLSERVER\"
If RegKeyExists(RegKey2012) Then 
  WScript.StdOut.Write("2012") 
Else 
  WScript.StdOut.Write("2008R2") 
End If 

Function RegKeyExists(Key) 
  Dim oShell, entry 
  On Error Resume Next 
  Set oShell = CreateObject("WScript.Shell") 
  entry = oShell.RegRead(Key) 
  If Err.Number <> 0 Then 
    Err.Clear 
    RegKeyExists = False 
  Else 
    Err.Clear 
    RegKeyExists = True 
  End If 
End Function

安装程序在 Windows 7 机器上运行良好。上面的脚本在 Windows Server 2012 机器上单独运行良好。但是,当我在 Windows Server 2012 上运行安装程序(作为 ADMIN)时,它无法按预期工作,并且错误描述是 - 它找不到注册表项。

有任何想法吗。

4

1 回答 1

1
strkey="HKLM\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL11.MSSQLSERVER\Setup" & Chr(34) &  " /v Version /reg:64"

Set objShell = CreateObject("WScript.Shell")
Set objScriptExec = objShell.Exec("REG QUERY " & Chr(34) & strkey )

strText = objScriptExec.StdOut.ReadAll()
if (strText <> "") then
WScript.echo "2012"
else
WScript.echo "2008R2"
end if

请注意第 1 行中的 /reg:64 选项。没有它是行不通的。

于 2013-01-19T09:56:04.903 回答