试图解决这个问题,似乎无法解决这个问题。
我有以下脚本:
$Servers = Get-Content -Path "C:\Utilities_PowerShell\ServerList.txt"
$IISServiceName1 = 'W3SVC'
$IISServiceName2 = 'IISAdmin'
$IISServiceName3 = 'WAS'
$IISarrService = Get-Service -Name $IISServiceName1,$IISServiceName2,$IISServiceName3
$IISarrServiceCheck = Get-Service -Name $IISServiceName1,$IISServiceName2,$IISServiceName3 -ErrorAction SilentlyContinue -ErrorVariable NoService
function IISServiceStatus # Checks for status of IIS services
{
param (
$IISServiceName1,
$IISServiceName2,
$IISServiceName3,
$IISarrService,
$IISarrServiceCheck
)
if (Get-Service -Name $IISServiceName1,$IISServiceName2,$IISServiceName3)
{
Write-Host "Status of IIS service(s) on $env:ComputerName :"
Get-Service -Name $IISServiceName1,$IISServiceName2,$IISServiceName3 | Select Name,DisplayName,Status | Format-Table -AutoSize
}
else
{
Write-Host " No IIS service(s) were found..." -foreground "red"
}
}
$Sessions = New-PSSession -ComputerName $Servers
$EndJobs = $Sessions | ForEach-Object {
Invoke-Command -Session $_ -ScriptBlock ${function:IISServiceStatus} -AsJob -ArgumentList $IISServiceName1, $IISServiceName2, $IISServiceName3, $IISarrService, $IISarrServiceCheck | Wait-Job | Receive-Job
Write-Host " "
}
每当我运行它时,我得到的只是输出:
Status of IIS service(s) on *PC* :
如果我在循环/调用命令之外运行该函数,结果绝对完美。我的远程循环出了什么问题?
我已尝试将变量放入函数中,我尝试运行不带参数列表的invoke-command等。
更新:2016年3月17日
原来......如果我按原样运行我的实际脚本,$EndJobs
的结果很奇怪,因为它在一个表中输出所有服务,然后在另一个表中输出三个IIS服务。这可以解释为什么当我运行我的invoke-command(stopIIS)脚本块时...我不得不重新启动整个服务器,因为它占用了所有服务。
这些函数在不通过remote / invoke-command运行时完美运行。
哎呀... invoke-command严重搞砸了我的东西!
任何人都有任何关于我如何从文本文件在一组服务器上运行我的本地脚本(100%工作)的想法/提示,而没有像这样的奇怪问题? invoke-command是唯一的方法吗?
答案 0 :(得分:1)
$Servers = Get-Content 'C:\Utilities_PowerShell\ServerList.txt'
$Sessions = New-PSSession -ComputerName $Servers
$EndJobs = $Sessions | ForEach-Object {
Invoke-Command -Session $_ -ScriptBlock {
$IISServiceName1 = 'W3SVC'
$IISServiceName2 = 'IISAdmin'
$IISServiceName3 = 'WAS'
$IISarrService = Get-Service -Name $IISServiceName1,$IISServiceName2,$IISServiceName3
$IISarrServiceCheck = Get-Service -Name $IISServiceName1,$IISServiceName2,$IISServiceName3 -ErrorAction SilentlyContinue -ErrorVariable NoService
function IISServiceStatus { # Checks for status of IIS services
param (
$IISServiceName1,
$IISServiceName2,
$IISServiceName3,
$IISarrService,
$IISarrServiceCheck
)
if (Get-Service -Name $IISServiceName1,$IISServiceName2,$IISServiceName3) {
Write-Host "Status of IIS service(s) on $env:ComputerName :"
Get-Service -Name $IISServiceName1,$IISServiceName2,$IISServiceName3 | Select Name,DisplayName,Status | Format-Table -AutoSize
} else {
Write-Host ' No IIS service(s) were found...' -ForegroundColor Red
}
}
IISServiceStatus $IISServiceName1 $IISServiceName2 $IISServiceName3 $IISarrService $IISarrServiceCheck
} -AsJob | Wait-Job | Receive-Job
Write-Host ' '
}
$EndJobs
答案 1 :(得分:0)
我遇到类似的问题。我正在使用credssp测试第二跳身份验证的自动化,以完全关闭生产环境。我的脚本分为3个部分;会话设置,调用,会话拆卸。如果我分别运行每个部分,则会得到输出。如果我运行整个脚本,则会得到与单独运行它们时得到的输出量相匹配的空白行……我的调用没有什么花哨的地方(反引号连续显示-我更喜欢Python的格式范例比Powershell / C#更好):< / p>
database = 'demo'
datasource = '10'
defined_table_name = 'mongodb_table_%s_%s' % (database, datasource)