9 lines
103 B
PowerShell
9 lines
103 B
PowerShell
|
|
if (Get-Variable -Name noSuchVariable -ErrorAction SilentlyContinue)
|
||
|
|
{
|
||
|
|
$true
|
||
|
|
}
|
||
|
|
else
|
||
|
|
{
|
||
|
|
$false
|
||
|
|
}
|