Print-Image
Prints an image
param($Path = "")
try {
if ("$Path" -eq "") {
$Path = Read-Host "Enter path to the image file"
}
Start-Process -filepath $Path -verb print
exit 0 # success
} catch {
"?? ERROR: $($Error[0]) (script line $($_.InvocationInfo.ScriptLineNumber))"
exit 1
}Specifies the path to the image file