4

我正在尝试自动化一些 Web 应用程序部署任务,因此我正在尝试使用 powershell 来完成此任务。我有一个 powershell 脚本和一个 .bat 文件。批处理文件只是用于执行 powershell 脚本并包含此文本。我在 Windows 8 - 64 位。

C:\Windows\SysWOW64\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy Bypass -Command "& '%~dp0\SetupWebServer.ps1' %*

我在运行这些命令的 powershell 脚本中有一些代码:

Write-Host "Check for the existence of the Application Pool."
Import-Module WebAdministration
$iisAppPoolName = "SiteName"
$iisAppPoolDotNetVersion = "v4.0"
$iisAppName = "SiteName"

cd IIS:\AppPools\

if (!(Test-Path $iisAppPoolName -PathType Container))
{
     Write-Host "Creating Application Pool"
}

当我到达 CD IIS:\AppPools\ 命令时,我收到以下错误:

cd : Retrieving the COM class factory for component with CLSID {688EEEE5-6A7E-422F-B2E1-6AF00DC944A6} failed due to the
following error: 80040154 Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)).
At line:1 char:1
+ cd IIS:\AppPools\
+ ~~~~~~~~~~~~~~~~~
+ CategoryInfo          : NotSpecified: (:) [Set-Location], COMException
+ FullyQualifiedErrorId : 
System.Runtime.InteropServices.COMException,Microsoft.PowerShell.Commands.SetLocationCommand

在单独的 powershell 提示符下,我可以 cd 到 IIS:\,但我无法运行 dir 命令并得到类似的错误。我错过了什么?

4

1 回答 1

10

通过指定SysWOW64,您将强制 Powershell 在 32 位上下文中运行。WebAdministration 模块仅支持 64 位上下文。

解决方案:

  1. 如果批处理文件运行 32 位,请使用SysNative而不是SysWOW64
  2. 如果批处理文件是 64 位,请删除SysWOW64并使用标准路径。
于 2013-09-21T18:58:03.917 回答