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