系统相关
首页 > 系统相关> > Windows PowerShell 使用

Windows PowerShell 使用

作者:互联网

启动PowerShell
 开始菜单
 搜索
 win+r 运行

get-help                           查看帮助

get-command                        查看有哪些命令

get-command                     缩小范围
get-command get-*
get-command "*process*" / get-command *process*

get-help command                查看命令用法
get-help get-process

get-process -name *notepad*      使用命令模糊获取进程

get-command *process            模糊搜索相关命令
get-help stop-process             查看命令用法
stop-process -id pid              使用命令            

 

转自:https://www.cnblogs.com/lsdb/p/9531338.html

标签:命令,help,查看,get,Windows,process,command,使用,PowerShell
来源: https://www.cnblogs.com/mingruifeng/p/16599766.html