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