Skip to content

Instantly share code, notes, and snippets.

@MateuszNad
Last active November 10, 2019 21:17
Show Gist options
  • Save MateuszNad/d41f3e2fd01de533867f4161672356bb to your computer and use it in GitHub Desktop.
Save MateuszNad/d41f3e2fd01de533867f4161672356bb to your computer and use it in GitHub Desktop.
$Error.Clear()
Get-Item -Path F:\file, D:\temp -ErrorAction SilentlyContinue
if(-not $?)
{
Write-Warning $Error[0].Exception.Message
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment