基本中の基本な気がするけど、忘れてしまうので。
例えば実行中のサービスのみを抽出する場合
1 2 3 4 5 6 7 8 9 10 |
PS C:\Users\prtadmin01> Get-Service | Where-Object {$_.Status -match "^Running"} Status Name DisplayName ------ ---- ----------- Running AppHostSvc Application Host Helper Service Running Appinfo Application Information Running BFE Base Filtering Engine Running BrokerInfrastru... Background Tasks Infrastructure Ser... Running CDPSvc Connected Devices Platform Service Running CDPUserSvc_65899 CDPUserSvc_65899 |
さらにName列のみを抽出する場合
1 2 3 4 5 6 7 8 9 10 |
PS C:\Users\prtadmin01> Get-Service | Where-Object {$_.Status -match "^Running"} | Select-Object Name Name ---- AppHostSvc Appinfo BFE BrokerInfrastructure CDPSvc CDPUserSvc_65899 |
4 Comments
4 Records
774 wrote:
ちょうど探していたpowershellコマンドでした!
ありがとうございます。
yuta wrote:
よかったです!
るい wrote:
ステキです。
yuta wrote:
ありがとう!