diff --git a/pages.ko/windows/set-acl.md b/pages.ko/windows/set-acl.md new file mode 100644 index 0000000000..3f04926cb2 --- /dev/null +++ b/pages.ko/windows/set-acl.md @@ -0,0 +1,13 @@ +# Set-Acl + +> 지정된 항목(예: 파일 또는 레지스트리 키)의 보안 설명자를 변경합니다. +> 이 명령어는 PowerShell을 통해서만 사용할 수 있습니다. +> 더 많은 정보: . + +- 하나의 파일에서 보안 설명자를 복사하여 다른 파일에 적용: + +`$OriginAcl = Get-Acl -Path {{경로\대상\파일}}; Set-Acl -Path {{경로\대상\파일}} -AclObject $OriginAcl` + +- 파이프라인 연산자를 사용하여 설명자 전달: + +`Get-Acl -Path {{경로\대상\파일}} | Set-Acl -Path {{경로\대상\파일}}` diff --git a/pages.ko/windows/set-date.md b/pages.ko/windows/set-date.md new file mode 100644 index 0000000000..dd25d93c3a --- /dev/null +++ b/pages.ko/windows/set-date.md @@ -0,0 +1,17 @@ +# Set-Date + +> 컴퓨터의 시스템 시간을 지정한 시간으로 변경합니다. +> 이 명령어는 PowerShell을 통해서만 사용할 수 있습니다. +> 더 많은 정보: . + +- 시스템 날짜에 3일 추가: + +`Set-Date -Date (Get-Date).AddDays({{3}})` + +- 시스템 시계를 10분 되돌리기: + +`Set-Date -Adjust -0:10:0 -DisplayHint Time` + +- 시스템 시계에 90분 추가: + +`$90mins = New-TimeSpan -Minutes {{90}}; Set-Date -Adjust $90mins` diff --git a/pages.ko/windows/set-location.md b/pages.ko/windows/set-location.md new file mode 100644 index 0000000000..139cc7cbfa --- /dev/null +++ b/pages.ko/windows/set-location.md @@ -0,0 +1,33 @@ +# Set-Location + +> 현재 작업 디렉토리를 표시하거나 다른 디렉토리로 이동합니다. +> 이 명령어는 PowerShell을 통해서만 사용할 수 있습니다. +> 더 많은 정보: . + +- 지정된 디렉토리로 이동: + +`Set-Location {{경로\대상\폴더}}` + +- 다른 드라이브의 특정 디렉토리로 이동: + +`Set-Location {{C}}:{{경로\대상\폴더}}` + +- 지정된 디렉토리의 위치 표시: + +`Set-Location {{경로\대상\폴더}} -PassThru` + +- 현재 디렉토리의 상위 디렉토리로 이동: + +`Set-Location ..` + +- 현재 사용자의 홈 디렉토리로 이동: + +`Set-Location ~` + +- 이전에 선택한 디렉토리로 돌아가기/앞으로 이동: + +`Set-Location {{-|+}}` + +- 현재 드라이브의 루트 디렉토리로 이동: + +`Set-Location \` diff --git a/pages.ko/windows/set-service.md b/pages.ko/windows/set-service.md new file mode 100644 index 0000000000..e456977592 --- /dev/null +++ b/pages.ko/windows/set-service.md @@ -0,0 +1,17 @@ +# Set-Service + +> 서비스를 시작, 중지 및 일시 중단하고 속성을 변경합니다. +> 이 명령어는 PowerShell을 통해서만 사용할 수 있습니다. +> 더 많은 정보: . + +- 표시 이름 변경: + +`Set-Service -Name {{호스트명}} -DisplayName "{{이름}}"` + +- 서비스 시작 유형 변경: + +`Set-Service -Name {{서비스명}} -StartupType {{Automatic}}` + +- 서비스 설명 변경: + +`Set-Service -Name {{서비스명}} -Description "{{설명}}"` diff --git a/pages.ko/windows/set-volume.md b/pages.ko/windows/set-volume.md new file mode 100644 index 0000000000..db718e8775 --- /dev/null +++ b/pages.ko/windows/set-volume.md @@ -0,0 +1,21 @@ +# Set-Volume + +> 기존 볼륨의 파일 시스템 레이블을 설정하거나 변경합니다. +> 이 명령어는 PowerShell을 통해서만 사용할 수 있습니다. +> 더 많은 정보: . + +- 드라이브 문자로 식별되는 볼륨의 파일 시스템 레이블 변경: + +`Set-Volume -DriveLetter "D" -NewFileSystemLabel "DataVolume"` + +- 시스템 레이블로 식별되는 볼륨의 파일 시스템 레이블 변경: + +`Set-Volume -FileSystemLabel "OldLabel" -NewFileSystemLabel "NewLabel"` + +- 볼륨 개체의 속성 수정: + +`Set-Volume -InputObject $(Get-Volume -DriveLetter "E") -NewFileSystemLabel "Backup"` + +- 볼륨에 대한 데이터 중복 제거 모드 지정: + +`Set-Volume -DriveLetter "D" -DedupMode Backup` diff --git a/pages.ko/windows/set.md b/pages.ko/windows/set.md new file mode 100644 index 0000000000..9792a1a2ea --- /dev/null +++ b/pages.ko/windows/set.md @@ -0,0 +1,20 @@ +# set + +> 현재 CMD 인스턴스에 대한 환경 변수를 표시하거나 설정합니다. +> 더 많은 정보: . + +- 현재 모든 환경 변수 표시: + +`set` + +- 특정 값으로 환경 변수 설정: + +`set {{이름}}={{값}}` + +- 지정된 문자열로 시작하는 환경 변수 표시: + +`set {{이름}}` + +- 지정된 변수에 대해 사용자에게 값 입력 요청: + +`set /p {{이름}}={{프롬프트_문자열}}` diff --git a/pages.ko/windows/setx.md b/pages.ko/windows/setx.md new file mode 100644 index 0000000000..bb26f7d17a --- /dev/null +++ b/pages.ko/windows/setx.md @@ -0,0 +1,20 @@ +# setx + +> 영구적인 환경 변수를 설정합니다. +> 더 많은 정보: . + +- 현재 사용자에 대한 환경 변수 설정: + +`setx {{변수}} {{값}}` + +- 현재 컴퓨터에 대한 환경 변수 설정: + +`setx {{변수}} {{값}} /M` + +- 원격 컴퓨터의 사용자에 대한 환경 변수 설정: + +`setx /s {{호스트명}} /u {{사용자명}} /p {{암호}} {{변수}} {{값}}` + +- 레지스트리 키 값에서 환경 변수 설정: + +`setx {{변수}} /k {{레지스트리\키\경로}}`