我正在尝试编写一个脚本来检查字符串是否为空,以及是否将用户名输出到文件中,以便我可以返回并检查该文件并查看谁为空。下面是我的代码,脚本没有写入输出文件有什么想法吗?
$user = "user@domain.com"
#just gets the users info
$user_info = gam info user $user
$suspended = $user_info | Select-String -pattern "Account Suspended: true"
if ($suspended = $null) {
$user | Out-File -FilePath C:\scripts\not_suspended.txt -append -Encoding utf8
}