mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-01-11 16:39:10 +01:00
Add open-system-settings.ps1
This commit is contained in:
parent
7451a85596
commit
cbe13303dd
@ -186,6 +186,7 @@ open-recycle-bin.ps1, Opens the user's recycle bin folder
|
||||
open-repos-folder.ps1, Opens the user's Git repositories folder
|
||||
open-snipping-tools.ps1, Opens the Snipping Tool
|
||||
open-spotify.ps1, Opens the Spotify app
|
||||
open-system-settings.ps1, Opens the system settings of Windows
|
||||
open-task-manager.ps1, Starts the Task Manager
|
||||
open-toggl-track.ps1, Opens Toggl Track
|
||||
open-videos-folder.ps1, Opens the user's videos folder
|
||||
|
Can't render this file because it has a wrong number of fields in line 94.
|
26
Docs/open-system-settings.md
Normal file
26
Docs/open-system-settings.md
Normal file
@ -0,0 +1,26 @@
|
||||
## open-system-settings.ps1 - Opens system settings of Windows
|
||||
|
||||
This script starts the system settings of Windows.
|
||||
|
||||
## Parameters
|
||||
```powershell
|
||||
open-system-settings.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS> ./open-system-settings
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Generated by convert-ps2md.ps1 using the comment-based help of open-system-settings.ps1*
|
@ -142,6 +142,7 @@ Mega Collection of PowerShell Scripts
|
||||
| [open-repos-folder.ps1](Scripts/open-repos-folder.ps1) | Opens the user's Git repositories folder | [Help](Docs/open-repos-folder.md) |
|
||||
| [open-snipping-tool.ps1](Scripts/open-snipping-tool.ps1)| Starts the Snipping Tool | [Help](Docs/open-snipping-tool.md) |
|
||||
| [open-spotify.ps1](Scripts/open-spotify.ps1) | Opens Spotify | [Help](Docs/open-spotify.md) |
|
||||
| [open-system-settings.ps1](Scripts/open-system-settings.ps1)| Opens system settings of Windows | [Help](Docs/open-system-settings.md) |
|
||||
| [open-task-manager.ps1](Scripts/open-task-manager.ps1)| Starts the Task Manager | [Help](Docs/open-task-manager.md) |
|
||||
| [open-toggl-track.ps1](Scripts/open-toggl-track.ps1)| Opens Toggl Track | [Help](Docs/open-toggl-track.md) |
|
||||
| [open-videos-folder.ps1](Scripts/open-videos-folder.ps1)| Opens the user's videos folder | [Help](Docs/open-videos-folder.md) |
|
||||
|
15
Scripts/open-system-settings.ps1
Executable file
15
Scripts/open-system-settings.ps1
Executable file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Opens system settings of Windows
|
||||
.DESCRIPTION
|
||||
This script starts the system settings of Windows.
|
||||
.EXAMPLE
|
||||
PS> ./open-system-settings
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
Start-Process ms-settings:
|
||||
exit 0 # success
|
Loading…
Reference in New Issue
Block a user