1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 17:46:00 +02:00
tldr/pages.ko/windows/cmstp.md

37 lines
914 B
Markdown
Raw Normal View History

# cmstp
> 연결 서비스 프로필을 관리합니다.
> 더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/cmstp>.
- 특정 프로필 설치:
`cmstp "{{경로\대상\프로필_파일}}"`
- 바탕 화면 바로가기를 생성하지 않고 설치:
`cmstp /ns "{{경로\대상\프로필_파일}}"`
- 의존성 검사를 생략하고 설치:
`cmstp /nf "{{경로\대상\프로필_파일}}"`
- 현재 사용자만을 위해 설치:
`cmstp /su "{{경로\대상\프로필_파일}}"`
- 모든 사용자를 위해 설치 (관리자 권한 필요):
`cmstp /au "{{경로\대상\프로필_파일}}"`
- 프롬프트 없이 조용히 설치:
`cmstp /s "{{경로\대상\프로필_파일}}"`
- 특정 프로필 제거:
`cmstp /u "{{경로\대상\프로필_파일}}"`
- 확인 프롬프트 없이 조용히 제거:
`cmstp /u /s "{{경로\대상\프로필_파일}}"`