1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 06:55:34 +02:00
tldr/pages/windows/cmstp.md
Emily Grace Seville c52cc074d9
windows/*.md: make placeholders more compatible with CLIP ones (#9872)
* Make placeholders more compatible with CLIP ones

* Update pages/windows/doskey.md

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

* Update pages/windows/doskey.md

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

---------

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
2023-02-20 15:23:49 +08:00

845 B

cmstp

A command-line tool for managing 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}}"