mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-01 09:42:24 +00:00
42 lines
905 B
Plaintext
42 lines
905 B
Plaintext
---
|
|
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}}"`
|