欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PowerShell 远程执行任务的方法和步骤

程序员文章站 2022-06-26 13:46:22
PowerShell 远程执行任务的方法步骤1.查看WinRM服务Get-Service WinRM如果为关闭状态,以管理员权限启动PowerShell窗口,执行命令:Enable-PSRemoting –Force如果计算机已经加入了服务器相同的域,那么上面的配置就可以了。对于没有加入域的计算机还需要进行信任设置,远程服务器也执行相同的命令,然后重启 WinRM 服务:Set-Item wsman:\localhost\client\trustedhosts *Restart-Serv...

PowerShell 远程执行任务的方法步骤

1. 查看WinRM服务

Get-Service WinRM

PowerShell 远程执行任务的方法和步骤
如果为关闭状态,以管理员权限启动PowerShell窗口,执行命令:

Enable-PSRemoting –Force

如果计算机已经加入了服务器相同的域,那么上面的配置就可以了。对于没有加入域的计算机还需要进行信任设置,远程服务器也执行相同的命令,然后重启 WinRM 服务:

Set-Item wsman:\localhost\client\trustedhosts *
Restart-Service WinRM

2. 测试远程连接

Test-WsMan xxx.xxx.xxx.xxx
如果成功返回信息则说明远程主机已经配置好了允许远程访问的服务,如果返回错误的信息,则说明远程主机没有打开远程访问的服务。

远程执行命令:
$pass = ConvertTo-SecureString -AsPlainText $Password -Force
$Cred = New-Object System.Management.Automation.PSCredential -ArgumentList $Username, $pass
$Session = New-PSSession -ComputerName $ip -Credential $Cred
Invoke-Command -ComputerName $ip -ScriptBlock {     “PowerShell 相关执行命令”    } -credential $Cred
远程执行脚本:
Invoke-Command -ComputerName $ip -FilePath .\****.ps1 -credential $Cred

本文地址:https://blog.csdn.net/a1014825552/article/details/107402734