1
0
mirror of https://github.com/fleschutz/PowerShell.git synced 2025-03-25 21:46:43 +01:00
PowerShell/Scripts/open-screen-magnifier.ps1

21 lines
433 B
PowerShell
Raw Normal View History

<#
.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
}