사용자 도구

사이트 도구


windows:powershell

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
다음 판 양쪽 다음 판
windows:powershell [2018/09/04 10:36]
kwon37xi
windows:powershell [2019/11/27 10:00]
kwon37xi
줄 95: 줄 95:
 <code sh> <code sh>
 wget http://blog.stackexchange.com/ -OutFile out.html wget http://blog.stackexchange.com/ -OutFile out.html
 +</code>
 +
 +===== tail =====
 +마지막 1000 줄 보여주면서 계속 출력하기
 +
 +<code sh>
 +Get-Content 파일경로 -Wait -Tail 1000
 </code> </code>
  
줄 102: 줄 109:
 set-alias -name vi -value vim.exe set-alias -name vi -value vim.exe
 </code> </code>
 +
 +===== Timezone =====
 +  * [[https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/set-timezone?view=powershell-6|Set-TimeZone]]
 +
 +<code>
 +Set-TimeZone -Id "Korea Standard Time"
 +</code>
 +
 +=====언어 변경 =====
 +  * [[https://docs.microsoft.com/en-us/powershell/module/international/set-winuilanguageoverride?view=win10-ps|Set-WinUILanguageOverride]]
 +  * [[https://docs.microsoft.com/en-us/powershell/module/international/set-winsystemlocale?view=win10-ps|Set-WinSystemLocale]]
 +<code>
 +Set-WinUILanguageOverride -Language ko-KR
 +Set-WinSystemLocale -SystemLocale ko-KR
 +</code>
 +
 +===== Location 변경 =====
 +  * [[https://docs.microsoft.com/en-us/powershell/module/international/set-winhomelocation?view=win10-ps|Set-WinHomeLocation]]
 +  * [[https://docs.microsoft.com/en-us/powershell/module/international/get-winhomelocation?view=win10-ps|Get-WinHomeLocation]]
 +  * [[https://docs.microsoft.com/ko-kr/windows/win32/intl/table-of-geographical-locations?redirectedfrom=MSDN|Table of Geographical Locations - Win32 apps]] 지역 코드값
 +  * 한국 : ''134'' -> HEX ''0x86''
 +
 +<code>
 +Set-WinHomeLocation -GeoId 0x86
 +</code>
 +
 ===== 참조 ===== ===== 참조 =====
   * [[https://gist.github.com/jchandra74/5b0c94385175c7a8d1cb39bc5157365e|PowerShell, Cmder / ConEmu, Posh-Git, Oh-My-Posh, Powerline Customization]]   * [[https://gist.github.com/jchandra74/5b0c94385175c7a8d1cb39bc5157365e|PowerShell, Cmder / ConEmu, Posh-Git, Oh-My-Posh, Powerline Customization]]
  
windows/powershell.txt · 마지막으로 수정됨: 2024/03/05 13:00 저자 kwon37xi