远程连接windows命令行
2021-03-20 08:25
标签:art shel ESS local 允许 enter 运行 concat core 远程连接命令行 win2019 core 安装,如何远程连接 先登录远程服务器 #在命令行里运行 #看一下ip地址,并记ip地址 #确认WinRM是启动的 #最后,你需要允许远程运行PowerShell powershell # 确认WinRM在你的电脑上是启动的 例子 ========================================== server-manager连接远程机器 在 PS C:\Users\Administrator> Set-Item wsman:\localhost\Client\TrustedHosts "WIN-PPI5UFNN25A" -Concatenate -Force 远程连接windows命令行 标签:art shel ESS local 允许 enter 运行 concat core 原文地址:https://www.cnblogs.com/createyuan/p/12304976.html
系统装完后,没图形界面,不会用了对吧?....没关系,看完下面的就会了...
========================================
远程cmd下
powershell
ipconfig
Get-Service WinRM | start-Service
Enable-PSRemoting
========================================
本地cmd下
Get-Service WinRM | Start-Service
# 非域控环境下添加trusted host(如果是域控把"*"改为域名即可)
Set-Item WSMan:\localhost\Client\TrustedHosts "*" -Force
# 试一下连接远程服务器的powershell,记得在弹出窗里输入远程服务器的帐号密码
Enter-PSSession 远程ip -Credential (Get-Credential)
PS C:\Users\Administrator> Enter-PSSession 192.168.3.27 -Credential (Get-Credential)
好了,现在已经可以使用远程服务器的powershell,但sconfig在远程是不能调用的哦....
PS C:\Users\Administrator> Get-Item WSMan:\localhost\Client\TrustedHosts | select name,value | format-list
Name : TrustedHosts
Value :
PS C:\Users\Administrator> Get-Item WSMan:\localhost\Client\TrustedHosts | select name,value | format-list
Name : TrustedHosts
Value : WIN-PPI5UFNN25A
PS C:\Users\Administrator> cmdkey /add:WIN-PPI5UFNN25A /user:administrator /pass:password1