PowerShell - System Administration
What will be the output of this PowerShell code?
$env:TEST_VAR = 'PowerShell' Write-Output $env:TEST_VAR
$env:TEST_VAR = 'PowerShell' Write-Output $env:TEST_VAR
$env:TEST_VAR to the string 'PowerShell'.Write-Output $env:TEST_VAR prints the value stored, which is 'PowerShell'.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions