PowerShell/Scripts/open-screen-magnifier.ps1

21 lines
433 B
PowerShell
Executable File

<#
.SYNOPSIS
Launch the Screen Magnifier
.DESCRIPTION
This script launches the Windows Screen Magnifier application.
.EXAMPLE
PS> ./open-screen-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
}