본문 바로가기

Windows27

로그 폴더 추출하여 압축하기 bat 파일로 만든 후 관리자 권한 실행 @echo off ::현재 시각을 변수로 지정 set TIMESTAMP=%date:-=%_%TIME:~0,2%%TIME:~3,2%%TIME:~6,2% ::임시 폴더로 추출 xcopy %appdata%\test\data\*.* %HOMEPATH%\Desktop\%TIMESTAMP%\data\ /O /X /E /H /K xcopy %appdata%\test\log\*.* %HOMEPATH%\Desktop\%TIMESTAMP%\log\ /O /X /E /H /K ::반디집 설치하면 압축 가능 ::http://www.bandisoft.co.kr/bandizip/help/cmdline/ 7z.exe a %HOMEPATH%\Desktop\%TIMESTAMP%.zip %HOM.. 2015. 12. 11.
[ps] 윈도우10 표시 언어 변경 사전에 언어팩 설치되어 있어야 함영어로 바꿔서 재로그인하면 반영하는 케이스 Set-WinUILanguageOverride -Language en-US logoff 2015. 12. 7.
블루스크린 대처 우선 덤프파일을 열어보고 BlueScreenView WhoCrashed (개인 무료) 혹시 모르니 파일 서명을 검증해본다 시작 > 실행 > Sigverif.exe 2015. 6. 26.
[Windows] PowerShell > http 링크된 파일 다운로드 후 리네임 및 버전 비교 http 링크된 파일 다운로드 후 파일명에 버전 정보 추가하는 스크립트 (PowerShell 2.0 기준) 이렇게 만들고 보니 웹브라우저 띄우지 않고 버전 확인까지 가능해서 개이득 한결 편해졌다 $source = "http://~~~test.exe" $destination = "c:\~~~\test.exe" $client = new-object System.Net.WebClient $client.DownloadFile($source, $destination) $version = (Get-Item $destination).VersionInfo.FileVersion Rename-Item $destination test_$version.exe + 추가) 로컬에 설치된 버전과 비교하기 $source = "htt.. 2015. 5. 29.
[Windows] *.ps1 스크립트 실행하기 ps1 확장자를 가진 파워쉘 스크립트를 실행하려면 아래와 같이 진행한다 1. powershell 을 관리자 권한으로 실행 2. Set-ExecutionPolicy Unrestricted 명령어 실행 > Y 입력 3. 탐색기에서 *.ps1 파일 우클릭 > PowerShell에서 실행 (또는 배치파일로 실행) * bat command Powershell.exe -noprofile -executionpolicy bypass -file "C:\~\~.ps1" 2015. 5. 28.
[Windows] 프로그램 제거 또는 변경에서 강제로 삭제하기 제어판의 프로그램 목록에서 지워지지 않는 경우시작 > 실행 > regedit아래 경로에서 삭제 불가 프로그램 찾아서 지우기HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\UninstallHKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Uninstall 2014. 10. 30.
[Windows] 프로그램 설치/삭제 자동화 * 생성 (레코딩) - cmd 창에서 직접 실행setup.exe -r /f1C:\Users\qm\Desktop\install.iss setup.exe -r /f1C:\Users\qm\Desktop\uninstall.iss * 사용 (사일런트) - 배치 파일 사용setup.exe -s /f1C:\Users\qm\Desktop\install.iss setup.exe -s /f1C:\Users\qm\Desktop\uninstall.iss --- 자동 삭제가 안되는 경우 커맨드창에서 아래 명령어 실행msiexec.exe /x {GUID} /qn--- NSIS 에서의 삭제Uninstall.exe /S --- http://www.devpia.com/Maeul/Contents/Detail.aspx?BoardID=32.. 2014. 10. 20.
[Windows] OS 설치 후 언어 변경 각 언어별 윈도우가 필요한데 설치CD가 없으면 언어팩으로 해결한다 1. 언어팩 설치http://windows.microsoft.com/ko-kr/windows/language-packs#lptabs=win8 2. OS 셋팅 변경http://snoopybox.co.kr/776 2014. 7. 26.
편리한 PC 사용을 위한 깨알같은 팁 1. 오피스 2010 워드 단락 간격 조정http://eslife.tistory.com/392 2. 하드가 버벅이면 wmpnetwk 종료http://yurion.net/1175 3. 파일 리스트를 텍스트로 저장http://www.nickspace.cn/xe/devinfo/15708 4. 우클릭으로 파일 경로 복사http://stefan.bertels.org/blog/8 5. 윈도우7 파일 삭제 권한 문제 해결http://blog.naver.com/hypercd/80105291500 6. 탐색기 시작 폴더 위치 변경http://windlov2.tistory.com/1171 7. 엑셀 창 분리해서 띄우기http://snoopybox.co.kr/1511 8. 복사 후 서식없는 텍스트 붙여넣기http://hof.. 2013. 1. 27.