Skip to content

Instantly share code, notes, and snippets.

@MateuszNad
Last active November 10, 2019 21:20
Show Gist options
  • Save MateuszNad/316ea0480c0baf8284a13790db2efbac to your computer and use it in GitHub Desktop.
Save MateuszNad/316ea0480c0baf8284a13790db2efbac to your computer and use it in GitHub Desktop.
$oldErrorActionPreference = $ErrorActionPreference
$ErrorActionPreference = 'Stop'
try
{
Get-Item -Path F:\file, D:\temp
}
catch{
Write-Warning $_.Exception.Message -ForegroundColor Yellow
}
finally
{
Write-Host "koniec przykładu ..."
$ErrorActionPreference = $oldErrorActionPreference
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment