/
...
/
/
Powershell-Common Command
Search
Try Notion
Powershell-Common Command
Test-NetConnection 检测端口开放
tnc <Server> - port <PortNumber>
Whereis Windows Version
系统内置实用程序(Utility software) > where app.exe
纯粹 PowerShell command: $env:path.Split(';') | gci -Filter app.exe
expanded version : > $env:path.Split(';') | select -Unique | ? {$_ -and (test-path $_)} | gci -Filter app.exe
gci Get-ChildItem