Windows server 2016如何在powershell查找命令
Windows server 2016如何在powershell查找命令
在Windows server 2016系統下,如何在powershell查(cha)找命令和查(cha)看命令詳情(qing)呢?
1.打開“運行”,輸(shu)入powershell,點擊(ji)“確定”

2.輸入Get-Command然后按回車鍵,可以查看所有可用的命令

3.Get-Command支(zhi)持通配符(fu)查找關(guan)鍵詞(ci)相關(guan)的命令,例如(ru)輸入Get-Command -name *process按(an)回車鍵后可以(yi)查看包含(han)process關(guan)鍵詞(ci)的命令

4.若需要查看(kan)命令(ling)幫助信(xin)息可以(yi)(yi)使用Get-Help命令(ling),例如輸入(ru)Get-Help Get-Command按回車鍵后可以(yi)(yi)查看(kan)Get-Command的幫助信(xin)息


