繁体   English   中英

Powershell function “如果测试连接” true

[英]Powershell function “if test-connection” true

嘿伙计们,

我有一个 powershell 脚本工作正常,但我想用另一行扩展它。 这就是我所拥有的。

$Path = "\\xyz\trigger1.txt"
$Path2 = "$env:userprofile\xyz\trigger2.txt"

if ((Test-Path $Path -PathType Leaf) -and (-not(Test-Path $Path2 -PathType Leaf))){ 



if((get-process "XXX" -ea SilentlyContinue) -eq $Null)
{ 
    "not Running"
    copy-item "\\xyz\xyz\*" "$env:userprofile\def\" -recurse -ErrorAction SilentlyContinue
    start-sleep -s 5
     
}
else
{
    "running"
    stop-process -name "XXX" -force
    start-sleep -s 5
    copy-item "\\xyz\xyz\*" "$env:userprofile\def\" -recurse -ErrorAction SilentlyContinue
    start-sleep -s 5
     
}
}
else
{

start-sleep -s 5
}

现在我想用 function 扩展该脚本,首先检查服务器是否可用。 如果不是,它应该使用永久测试连接,直到它可用。 当服务器可用时,脚本应该继续运行。

你可以试试这个:

Do
{
    Test-Connection -ComputerName $computerName -ErrorAction SilentlyContinue -ErrorVariable pingError | Out-Null
    $pingError = $pingError | Where-Object { $_.CategoryInfo.Category -Eq 'ResourceUnavailable' }
    Start-Sleep -Seconds 5
}
While($pingError -Ne $Null)

仅当没有 ResourceUnavailable 类型的错误发生时,脚本才会 go 退出此循环。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM