类似于$IsLinux
or的东西$IsWindows
。
问问题
120 次
2 回答
-1
我建议在特定于 cloud shell 的 try/catch 中运行一个命令,如果这是您正在寻找的?
try {
$sessioninfo = Get-CloudDrive
if ($sessioninfo) {
Write-Host "Running in Cloud Shell mode..." -ForegroundColor Green
$path = ($home + "/clouddrive/" + "report" + "-$(get-date -Format yyyyddMM_hhmmtt).csv")
}
}
catch {
Write-Host "Running in local PowerShell session mode..." -ForegroundColor Yellow
$path = "C:\localpath\report"+"-$(get-date -Format yyyyddMM_hhmmtt).csv"
}
于 2020-12-28T20:17:11.240 回答