Computer/Windows (7) 썸네일형 리스트형 Adding new path to Environment Variables Control panel -> System and security -> System -> Advanced system setting -> Environment Variables... -> Select 'Path in System variables' -> Edit -> New examples #OFFICE 365 programs location C:\Program Files\Microsoft Office\root\Office16\ Windows app short-cut run by command line create following bash file, and save it in 'C:\Users\AccountName' folder @echo off cd "C:\Program Files (x86)\location\" start AppName.exe exit press below, Win+R {Enter} AppName {Enter} then, the application will be started. Disable "What's new in Chrome" tab from Chrome Chrome what's new가 계속 생길때 해결방법 방법1 주소창에서 chrome://flags/ 입력 후 "Show Chrome What's New page at chrome://whats-new" 탭에서 'Disable' 선택 후 크롬 재실행 방법2 cmd 에서 아래 실행 후 chrome 재실행 chrome.exe --disable-features=ChromeWhatsNewUI Remove the folders from THis PC / 내 PC 에서 폴더 지우기 In Regedit, change 'ThisPCPolicy' from 'Show' to 'Hide' Documents HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{f42ee2d3-909f-4907-8871-4c22fc0bf756}\PropertyBag Pictures HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{0ddd015d-b06c-45d5-8c4c-f59713854639}\PropertyBag Videos HKEY_LOCAL_MACHINE\SOFTWARE\Microsof.. Core Temp This app can show CPU temperature on tray bar as below Download link https://www.alcpu.com/CoreTemp/ HIDE taskbar button when start-up in settings VBS 로 텔레그램에 문자보내는 스크립트 → 부팅시 자동으로 #아래 파일을 vbs 파일로 저장해서 윈도우 스케쥴러에서 부팅시 실행하게 만듬 'URL to open.... sUrl = "https://api.telegram.org/botID/sendMessage?chat_id=ID&text=ComputerLoggedIn" HTTPGet sUrl Function HTTPGet(sUrl) set oHTTP = CreateObject("Microsoft.XMLHTTP") oHTTP.open "GET", sUrl,false oHTTP.send sRequest HTTPGet = oHTTP.responseText End Function #작업 스케쥴러 등록절차 윈도우버튼 → 작업 스케줄러 입력 후 실행(cmd창에서 'taskschd.msc'입력) → 메뉴에서 '동작' 선택 →.. 시간차 특정폴더 파일 복사 배치파일 @echo off:starte:cd group_scanecho n | copy /-y *.* C:\Docs\Scans > nultimeout /T 30goto start E드라이브 그룹스캔폴더로 이동해서, 매 30초마다 신규파일을 C드라이브 Dcos\Scans 폴더로 복사하는 명령어 배치파일 실행시 명령어를 숨김,@echo off위 예제에서는 e: , cd, timeout 명령어가 화면에 표시되지 않는다. START로 무한반복:STARTGOTO START 30초 대기TIMEOUT /T 30 중복이 있을때 N (아니오)를 선택echo n | 화면에 아무 표시도 하지 않음> nul 실행결과를 log.txt로 저장> log.txt 이전 1 다음