본문 바로가기

Windows5

[Windows] Hibernate 켜기 윈도우를 사용하게 되면 기본적으로 sleep만 사용 가능하고, hibernate 기능은 꺼져 있죠. 그런데, sleep 같은 경우는 이런저런 이유로 강제로 wake up 되는 경우가 자주 발생을 하더라고요. 그래서, sleep 보단 hibernate를 선호합니다. 하지만, 기본적으로는 off 상태라 사용을 하려면 몇 가지 작업을 해줘야 합니다. PowerShell을 administrator권한으로 실행을 시키고, 다음 명령어를 입력해 줍니다. $ powercfg /H ON Command Prompt에서도 동일하게 하시면 되요. 다음으로, Windows Settings 메뉴에서 System -> Power & sleep 메뉴로 갑니다. 여기서 Additional power settings 메뉴를 선택합니다.. 2022. 3. 8.
[PowerShell] Get Elapsed Time using PowerShell Script $startTime = $(get-date) # Tasks that you want to measure $elapsedTime = $(get-date) - $startTime $totalTime = "{0:HH:mm:ss}" -f ([datetime]$elapsedTime.Ticks) Write-Host $totalTime 2021. 12. 21.
[Windows] Microsoft PowerToys PowerToys는 Windows10의 사용자 편의를 위한 유틸리티 모음 입니다. 공식 페이지는 다음 링크를 참고하세요 https://docs.microsoft.com/en-us/windows/powertoys/ 설치 설치는 공식 페이지의 가이드를 따르시면 됩니다. https://docs.microsoft.com/en-us/windows/powertoys/install 전 chocolatey를 사용중이라 choco로 설치 했어요. $ choco install powertoys winget 같은 다른 패키지 매니저 툴도 있긴 한데... 그건 차후에 다뤄보도록 할께요. (관심 있으시면 Windows Package Manager WinGet으로 찾아보세요.) 일단 전 choco로 사용하고 있어요. ^^ 설정 .. 2021. 7. 15.
[Windows] Getting Started with Windows Terminal I like a Windows Terminal as terminal on Windows. I had waited it since I found out, and I've been using it since beta. If you don't use it now, try it out. You will like it like me. Installation I use chocolatey for package manager Windows. 2020/08/30 - [OS/Windows] - [Windows] Chocolatey $ choco install microsoft-windows-terminal --pre Now, run the Windows Terminal. $ wt Usage Click the down a.. 2020. 12. 24.
[Windows] Chocolatey Chocolatey is the package manager for windows. I've been using it for several years. It was awesome, so I love it. Installation Open the shell with admin mode. $ Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolat.. 2020. 8. 30.