我们有一个部署网站(基于html和asp),您可以在其中选择数据库名称,并且在单击部署按钮之前还需要分配应用程序名称。目前正在处理批处理文件,但我们正在将批处理文件替换为powershell命令。
问题是我的脚本不起作用。
Dim wshell, intReturn
set wshell = server.createobject("wscript.shell")
intReturn = wshell.run("%SystemRoot%\system32\WindowsPowerShell\v1.0\PowerShell.exe -verb runAs " & C:\PowerShellDeployment\DeployApp.ps1 & " " & appName & " " & dbName, 2, True)
appName参数是您必须分配的应用程序的名称,dbName是您必须从选项列表中选择的数据库的名称。
所以,如果有人能帮助我解决这个问题,我将不胜感激。