문서의 선택한 두 판 사이의 차이를 보여줍니다.
양쪽 이전 판 이전 판 다음 판 | 이전 판 | ||
windows:hangul [2022/04/10 19:03] kwon37xi |
windows:hangul [2024/12/13 17:19] (현재) kwon37xi [기본 Microsoft 입력기] |
||
---|---|---|---|
줄 7: | 줄 7: | ||
* '' | * '' | ||
+ | <code powershell> | ||
+ | # powershell script | ||
+ | # 새로 만들 때 | ||
+ | New-Item -Path " | ||
+ | New-ItemProperty -Path " | ||
+ | |||
+ | # 이미 " | ||
+ | Set-ItemProperty -Path " | ||
+ | </ | ||
+ | |||
+ | <code powershell> | ||
+ | # 레지스트리가 없으면 만들고 있으면 바로 설정하는 powershell script | ||
+ | |||
+ | $regPath = " | ||
+ | $propertyName = " | ||
+ | $propertyValue = 1 | ||
+ | $propertyType = " | ||
+ | |||
+ | if (-Not (Test-Path -Path $regPath)) { | ||
+ | Write-Host " | ||
+ | New-Item -Path $regPath -Force | Out-Null | ||
+ | } | ||
+ | |||
+ | New-ItemProperty -Path $regPath -Name $propertyName -Value $propertyValue -PropertyType $propertyType -Force | ||
+ | Write-Host " | ||
+ | </ | ||
===== Shift+Space 한영 변환 ===== | ===== Shift+Space 한영 변환 ===== | ||
- | * [[https:// | + | * [[https:// |
* 키보드 레이아웃을 | * 키보드 레이아웃을 | ||