0
我想通過描述中存在的特定單詞在AD中找到計算機的描述。無法通過計算機掩碼在AD中進行搜索
$username = "test111"
Get-ADComputer -filter {Description -Like 'test111*'} -Properties Description | select Description # this works ok
Get-ADComputer -filter {Description -Like "$username*"} -Properties Description | select Description # shows nothing, no error
如何使用變量進行搜索?