mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-14 03:54:46 +01:00
16 lines
304 B
PowerShell
Executable File
16 lines
304 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Opens Windows printer settings
|
|
.DESCRIPTION
|
|
This script launches the Windows printer settings.
|
|
.EXAMPLE
|
|
PS> ./open-printer-settings
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
Start-Process ms-settings:printers
|
|
exit 0 # success
|