Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

41
tldr/windows/cmstp Normal file
View File

@@ -0,0 +1,41 @@
---
syntax: markdown
tags: [tldr, windows]
source: https://github.com/tldr-pages/tldr.git
---
# cmstp
> Manage connection service profiles.
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/cmstp>.
- Install a specific profile:
`cmstp "{{path o\profile_file}}"`
- Install without creating a desktop shortcut:
`cmstp /ns "{{path o\profile_file}}"`
- Install without checking for dependencies:
`cmstp /nf "{{path o\profile_file}}"`
- Only install for the current user:
`cmstp /su "{{path o\profile_file}}"`
- Install for all users (requires administrator privileges):
`cmstp /au "{{path o\profile_file}}"`
- Install silently without any prompts:
`cmstp /s "{{path o\profile_file}}"`
- Uninstall a specific profile:
`cmstp /u "{{path o\profile_file}}"`
- Uninstall silently without a confirmation prompt:
`cmstp /u /s "{{path o\profile_file}}"`