Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
フィルターを変数として使用したいのですが、エラーがスローされます。
$myvar="test" Get-ADUser -Filter {name -like "$myvar"} -Properties name |select name
これを試して:
$myVar = '*test*' Get-ADUser -Filter {name -like $mvVar} -Properties name | Select-Object Name
ちなみに、Nameはデフォルトのプロパティです。