使用mstsc和powershell两种连接windows服务器的方式
阅读数:118 评论数:0
跳转到新版页面分类
应用软件
正文
一、mstsc
Microsoft Terminal Service Client。
1、运行命令mstsc
win+r->输入"mstsc"
2、服务器远程连接配置
二、使用powershell远程连接
1、服务端配置
Enable-PSRemoting
#设置受信任的主机名
set-item wsman:\localhost\client\trustedhosts *
#重启winrm服务
restart-service winrm
2、客户端配置
#首先看本地计算机是否运行winrm服务
get-service winrm
#如果status不是running,启动winrm服务
start-service winrm
3、客户进行连接
enter-pssession ip -credential 域名\用户名
例如
enter-pssession 192.168.137.1 -credential abc/administrator
相关推荐
一、概述
在windows中,cmd和powershell都是命令执行窗口,powershell从win7开始内置于windows系统中,可以看作是cmd的增强。
为了兼容unix/linux she
一、设置ip
netsh interface ip set address name=”Ethernet0″ static 10.1.2.220 255.255.255.0 10.1.2.1
根据自己
一、概述
在windows powershell中,可以在netsecurity模块中找到所有防火墙命令。
Get-Command -Module NetSecurity | Format-List
一、概述
官方提供的windows安装mysql有两种:
1、msi安装包
2、zip包
下面以zip这种形式进行安装。
二、安装
1、切换到Program Files下
cd 'C:\Program
一、枚举当前系统中已存在共享
win32_share对象便是windows系统上共享的磁盘、打印机、系统默认共享以及其他共享设备。
PS C:\Windows\system32> Get-WmiObj
一、下载安装包
https://github.com/tporadowski/redis/releases
如果下载慢,参考:http://1024s.top/blog/detail?blogId=4