mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
set*: add Korean translation (#14295)
* set*: add Korean translation * setx: fix typo
This commit is contained in:
parent
8bbb6de2f1
commit
a9898dab64
7 changed files with 141 additions and 0 deletions
13
pages.ko/windows/set-acl.md
Normal file
13
pages.ko/windows/set-acl.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
# Set-Acl
|
||||
|
||||
> 지정된 항목(예: 파일 또는 레지스트리 키)의 보안 설명자를 변경합니다.
|
||||
> 이 명령어는 PowerShell을 통해서만 사용할 수 있습니다.
|
||||
> 더 많은 정보: <https://learn.microsoft.com/powershell/module/microsoft.powershell.security/set-acl>.
|
||||
|
||||
- 하나의 파일에서 보안 설명자를 복사하여 다른 파일에 적용:
|
||||
|
||||
`$OriginAcl = Get-Acl -Path {{경로\대상\파일}}; Set-Acl -Path {{경로\대상\파일}} -AclObject $OriginAcl`
|
||||
|
||||
- 파이프라인 연산자를 사용하여 설명자 전달:
|
||||
|
||||
`Get-Acl -Path {{경로\대상\파일}} | Set-Acl -Path {{경로\대상\파일}}`
|
17
pages.ko/windows/set-date.md
Normal file
17
pages.ko/windows/set-date.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
# Set-Date
|
||||
|
||||
> 컴퓨터의 시스템 시간을 지정한 시간으로 변경합니다.
|
||||
> 이 명령어는 PowerShell을 통해서만 사용할 수 있습니다.
|
||||
> 더 많은 정보: <https://learn.microsoft.com/powershell/module/microsoft.powershell.utility/set-date>.
|
||||
|
||||
- 시스템 날짜에 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`
|
33
pages.ko/windows/set-location.md
Normal file
33
pages.ko/windows/set-location.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
# Set-Location
|
||||
|
||||
> 현재 작업 디렉토리를 표시하거나 다른 디렉토리로 이동합니다.
|
||||
> 이 명령어는 PowerShell을 통해서만 사용할 수 있습니다.
|
||||
> 더 많은 정보: <https://learn.microsoft.com/powershell/module/microsoft.powershell.management/set-location>.
|
||||
|
||||
- 지정된 디렉토리로 이동:
|
||||
|
||||
`Set-Location {{경로\대상\폴더}}`
|
||||
|
||||
- 다른 드라이브의 특정 디렉토리로 이동:
|
||||
|
||||
`Set-Location {{C}}:{{경로\대상\폴더}}`
|
||||
|
||||
- 지정된 디렉토리의 위치 표시:
|
||||
|
||||
`Set-Location {{경로\대상\폴더}} -PassThru`
|
||||
|
||||
- 현재 디렉토리의 상위 디렉토리로 이동:
|
||||
|
||||
`Set-Location ..`
|
||||
|
||||
- 현재 사용자의 홈 디렉토리로 이동:
|
||||
|
||||
`Set-Location ~`
|
||||
|
||||
- 이전에 선택한 디렉토리로 돌아가기/앞으로 이동:
|
||||
|
||||
`Set-Location {{-|+}}`
|
||||
|
||||
- 현재 드라이브의 루트 디렉토리로 이동:
|
||||
|
||||
`Set-Location \`
|
17
pages.ko/windows/set-service.md
Normal file
17
pages.ko/windows/set-service.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
# Set-Service
|
||||
|
||||
> 서비스를 시작, 중지 및 일시 중단하고 속성을 변경합니다.
|
||||
> 이 명령어는 PowerShell을 통해서만 사용할 수 있습니다.
|
||||
> 더 많은 정보: <https://learn.microsoft.com/powershell/module/microsoft.powershell.management/set-service>.
|
||||
|
||||
- 표시 이름 변경:
|
||||
|
||||
`Set-Service -Name {{호스트명}} -DisplayName "{{이름}}"`
|
||||
|
||||
- 서비스 시작 유형 변경:
|
||||
|
||||
`Set-Service -Name {{서비스명}} -StartupType {{Automatic}}`
|
||||
|
||||
- 서비스 설명 변경:
|
||||
|
||||
`Set-Service -Name {{서비스명}} -Description "{{설명}}"`
|
21
pages.ko/windows/set-volume.md
Normal file
21
pages.ko/windows/set-volume.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
# Set-Volume
|
||||
|
||||
> 기존 볼륨의 파일 시스템 레이블을 설정하거나 변경합니다.
|
||||
> 이 명령어는 PowerShell을 통해서만 사용할 수 있습니다.
|
||||
> 더 많은 정보: <https://learn.microsoft.com/powershell/module/storage/set-volume>.
|
||||
|
||||
- 드라이브 문자로 식별되는 볼륨의 파일 시스템 레이블 변경:
|
||||
|
||||
`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`
|
20
pages.ko/windows/set.md
Normal file
20
pages.ko/windows/set.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# set
|
||||
|
||||
> 현재 CMD 인스턴스에 대한 환경 변수를 표시하거나 설정합니다.
|
||||
> 더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/set>.
|
||||
|
||||
- 현재 모든 환경 변수 표시:
|
||||
|
||||
`set`
|
||||
|
||||
- 특정 값으로 환경 변수 설정:
|
||||
|
||||
`set {{이름}}={{값}}`
|
||||
|
||||
- 지정된 문자열로 시작하는 환경 변수 표시:
|
||||
|
||||
`set {{이름}}`
|
||||
|
||||
- 지정된 변수에 대해 사용자에게 값 입력 요청:
|
||||
|
||||
`set /p {{이름}}={{프롬프트_문자열}}`
|
20
pages.ko/windows/setx.md
Normal file
20
pages.ko/windows/setx.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# setx
|
||||
|
||||
> 영구적인 환경 변수를 설정합니다.
|
||||
> 더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/setx>.
|
||||
|
||||
- 현재 사용자에 대한 환경 변수 설정:
|
||||
|
||||
`setx {{변수}} {{값}}`
|
||||
|
||||
- 현재 컴퓨터에 대한 환경 변수 설정:
|
||||
|
||||
`setx {{변수}} {{값}} /M`
|
||||
|
||||
- 원격 컴퓨터의 사용자에 대한 환경 변수 설정:
|
||||
|
||||
`setx /s {{호스트명}} /u {{사용자명}} /p {{암호}} {{변수}} {{값}}`
|
||||
|
||||
- 레지스트리 키 값에서 환경 변수 설정:
|
||||
|
||||
`setx {{변수}} /k {{레지스트리\키\경로}}`
|
Loading…
Add table
Reference in a new issue