반응형
파워셀에서 빈문자열 검사 How can I check if a string is null or empty in PowerShell
if([string]::IsNullOrEmpty($user.UsageLocation))
{
write-host 'a';
}else
{
write-host 'b';
}
O365 라이센스 지정체크도 이렇게 빈문자열 체크가 유용하다.
참고 사이트
http://stackoverflow.com/questions/13738634/how-can-i-check-if-a-string-is-null-or-empty-in-powershell