1. 레지스트리 변경 ( cmd > regedit )reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v AppsUseLightTheme /t REG_DWORD /d 0 /f reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v SystemUsesLightTheme /t REG_DWORD /d 0 /f 위 두 명령어를 명령 프롬프트 또는 PowerShell에서 실행하면 시스템 및 앱 테마가 어둡게 변경됩니다. 2. PowerShell 사용 Set-ItemProperty -Pa..
windows console 명령shutdown /s /t [시간(초)]예) shutdown /s /t 360shutdown 사용법: shutdown [/i | /l | /s | /sg | /r | /g | /a | /p | /h | /e | /o] [/hybrid] [/soft] [/fw] [/f] [/m \\컴퓨터][/t xxx][/d [p|u:]xx:yy [/c "주석"]] 인수 없음 도움말을 표시합니다. 이 옵션은 /?를 입력하는 것과 같습니다. /? 도움말을 표시합니다. 아무 옵션을 입력하지 않는 것과 같은 결과를 제공합니다. /i GUI를 표시합니다. 이 옵션은 첫 번째 옵션이어야 합니다. ..
단축키 기능 기본 ctrl + tab 다음 문서 이동 ctrl + shift + tab 이전 문서 이동 ctrl + w 현재 문서 닫기 ctrl + o 파일 열기 ctrl + n 새 문서 만들기 ctrl + s 파일 저장 ctrl + alt + s 다른 이름 파일로 저장 ctrl + shift + s 모두 저장 ctrl + p 인쇄 편집 alt + 드래그 + 입력 해당 줄의 문장 앞 글 삽입 ctrl + enter 기존 존재 단어 자동완성 ctrl + space 함수 자동완성 ctrl + shift + space 함수내 가능한 파라미터 보기 ctrl + u 소문자 변환 ctrl + shift + u 대문자 변환 tab 들여쓰기(tab 삽입) shift + tab 내어쓰기(tab 제거) ctrl + z 되..

https://www.ventoy.net Ventoy Ventoy is an open source tool to create bootable USB drive for ISO files. With ventoy, you don't need to format the disk again and again, you just need to copy the iso file to the USB drive and boot it. www.ventoy.net @ 기존에 부팅 usb를 만들때 유용했던 rofus Rufus는 USB 메모리 및 플래시 드라이브를 포맷하고 부팅할 수 있도록 만드는 도구입니다. 이 프로그램은 다음 상황에서 유용하게 사용할 수 있습니다: 부팅 가능한 ISO 파일(Windoows, 리눅스, UEFI 등..
var NameSpace = { options: { option1:true, option2:100 // define options.... }, init: () => { // function code }, search: () => { // function code }, popup: () => { // function code }, func1: () => { // function code } } //$(document).ready(function(){})과 동일 $(() => { NameSpace.options.option1 = false; NameSpace.func1(); })