13 lines
189 B
PowerShell
13 lines
189 B
PowerShell
|
|
try
|
||
|
|
{
|
||
|
|
Get-Content -Path .\temp.txt
|
||
|
|
}
|
||
|
|
catch [System.IO.FileNotFoundException]
|
||
|
|
{
|
||
|
|
Write-Host "File not found exception"
|
||
|
|
}
|
||
|
|
catch [System.Exception]
|
||
|
|
{
|
||
|
|
Write-Host "Other exception"
|
||
|
|
}
|