diff --git a/Data/scripts.csv b/Data/scripts.csv index 30fe25b8..16856388 100644 --- a/Data/scripts.csv +++ b/Data/scripts.csv @@ -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 diff --git a/Docs/open-system-settings.md b/Docs/open-system-settings.md new file mode 100644 index 00000000..453db6c8 --- /dev/null +++ b/Docs/open-system-settings.md @@ -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 [] + +[] + 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* diff --git a/README.md b/README.md index ba8c1e54..410c8511 100644 --- a/README.md +++ b/README.md @@ -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) | diff --git a/Scripts/open-system-settings.ps1 b/Scripts/open-system-settings.ps1 new file mode 100755 index 00000000..6ccaf9a7 --- /dev/null +++ b/Scripts/open-system-settings.ps1 @@ -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