Where-Object
を使用して、Get-PSDrive
の出力をネットワーク共有のみに制限したいとします。その後、私は\\192.168.71.30\group100
ネットワーク共有を取得したいPowershell Where-Object Match
Name Used (GB) Free (GB) Provider Root CurrentLocation ---- --------- --------- -------- ---- --------------- A FileSystem A:\ Alias Alias C 16.19 43.47 FileSystem C:\ Users\HansB\Documents Cert Certificate \ D FileSystem D:\ Env Environment Function Function HKCU Registry HKEY_CURRENT_USER HKLM Registry HKEY_LOCAL_MACHINE V 451.39 159.76 FileSystem \\192.168.71.31\fs_log_target Variable Variable W 197.72 FileSystem \\192.168.71.32\perf200 WSMan WSMan X 197.72 FileSystem \\192.168.71.32\perf100 Y 271.52 34.33 FileSystem \\192.168.71.30\group200 Z 271.52 34.33 FileSystem \\192.168.71.30\group100
:
Get-PSDrive
は私に次のことを示して
Get-PSDrive | Where-Object { $_.Root -match "\\\\192.168.71.30\\group100" }
しかし、私は何を取得、なぜ-matchは動作しませんか?
ベストアンサー - ありがとうございました! –