PowerShell/Scripts/open-magnifier.ps1

21 lines
392 B
PowerShell
Raw Normal View History

<#
.SYNOPSIS
2021-12-07 22:45:00 +01:00
Launch the Magnifier
.DESCRIPTION
This script launches the Windows Screen Magnifier application.
.EXAMPLE
2021-12-07 22:45:00 +01:00
PS> ./open-magnifier
.LINK
https://github.com/fleschutz/PowerShell
2022-09-06 21:42:04 +02:00
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
start-process magnify.exe
exit 0 # success
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}