Powershell连接远程服务器命令

这里写自定义目录标题

  • 前言
    • Powershell命令

前言

当我们的机器是windows操作系统时,我们想远程操作该服务器,那么我们可以通过Powershell工具实现

Powershell命令

1.连接远程服务器
$pass=ConvertTo-SecureString -String ‘password’ -AsPlainText -Force
$cre=New-Object System.Management.Automation.PSCredential(‘zy’, $pass)
$session=New-PSSession -ComputerName IP -Credential $cre
2.执行远程命令
Invoke-Command -Session $session -ScriptBlock

{
Remove-Item -Path “XXX” -Recurse -Force
Remove-Item -Path “XXX” -Recurse -Force
}

你可能感兴趣的:(Powershell连接远程服务器命令)