Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Created July 19, 2016 12:38
Embed
What would you like to do?
Bulletproof PowerShell Scripting
try
{
Get-Content -Path readme.txt
}
catch
{
Write-Host $_.Exception.Message -ForegroundColor Yellow
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment