📌  相关文章
📜  powershell 测试路径远程计算机 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:11.698000             🧑  作者: Mango

代码示例1
$cred = Get-Credential
Invoke-Command -ComputerName Computer1 -Credential $cred -ScriptBlock { Test-Path "C:\Temp\test.txt" }