gpt4 book ai didi

powershell - 获取 "Can' 无法找到驱动器。名为 'IIS' 的驱动器不存在。”

转载 作者:行者123 更新时间:2023-12-03 07:28:57 24 4
gpt4 key购买 nike

我编写了一个 PowerShell 脚本来自动部署 IIS 网站,但是当我将参数传递给脚本时,出现以下错误:

Cannot find the drive. The drive called 'IIS' does not exist.

我的脚本(iss_website_version_update.ps1)如下,但请注意,它尚未完成:

param(
[array]$iishostlist=$(throw "Parameter missing: -name iishostlist"),
[array]$websiteName=$(throw "Parameter missing: -name websiteName")
)

For($i=0;$i -lt $iishostlist.Count; $i++){
For($j=0;$j -lt $websiteName.Count; $j++){
$start = get-date
$tempSession = new-pssession -ComputerName $($iishostlist[$i])
Invoke-Command -Session $tempSession -ScriptBlock {
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -NonInteractive -command Import-Module WebAdministration;set-location IIS:\;(Stop-Website $($websiteName[$j]))
}
.......

请告诉我为什么Invoke-Command命令中的子命令set-location IIS:\;无法被识别?

最佳答案

该驱动由WebAdministration模块提供,因此您需要先安装/导入该模块。

如何安装模块取决于您的实际系统以及您使用的是 GUI 还是 PowerShell。例如,在 Windows Server 2008 R2 上,您可以使用以下 PowerShell 命令安装该模块:

Import-Module ServerManager
Add-WindowsFeature Web-Scripting-Tools

安装模块后,您可以将其加载到脚本中,如下所示:

Import-Module WebAdministration

关于powershell - 获取 "Can' 无法找到驱动器。名为 'IIS' 的驱动器不存在。”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24392696/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com