启动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