mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-16 06:00:16 +00:00
Move pages under tldr, lint run.sh, update docs
This commit is contained in:
41
tldr/windows/cmstp
Normal file
41
tldr/windows/cmstp
Normal 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}}"`
|
||||
Reference in New Issue
Block a user