PowerShell/Scripts/open-magnifier.ps1

21 lines
393 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
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
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
}