PowerShell/Scripts/open-magnifier.ps1
2021-12-07 22:45:00 +01:00

21 lines
419 B
PowerShell
Executable File

<#
.SYNOPSIS
Launch the Magnifier
.DESCRIPTION
This script launches the Windows Screen Magnifier application.
.EXAMPLE
PS> ./open-magnifier
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
start-process magnify.exe
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}