1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/windows/cmstp.md
Lena 7ca1069d76
pages/*: reword descriptions without using "a CLI for" etc. (#10437)
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-07-16 19:23:40 +02:00

36 lines
819 B
Markdown

# cmstp
> Manage connection service profiles.
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/cmstp>.
- Install a specific profile:
`cmstp "{{path\to\profile_file}}"`
- Install without creating a desktop shortcut:
`cmstp /ns "{{path\to\profile_file}}"`
- Install without checking for dependencies:
`cmstp /nf "{{path\to\profile_file}}"`
- Only install for the current user:
`cmstp /su "{{path\to\profile_file}}"`
- Install for all users (requires administrator privileges):
`cmstp /au "{{path\to\profile_file}}"`
- Install silently without any prompts:
`cmstp /s "{{path\to\profile_file}}"`
- Uninstall a specific profile:
`cmstp /u "{{path\to\profile_file}}"`
- Uninstall silently without a confirmation prompt:
`cmstp /u /s "{{path\to\profile_file}}"`