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