[windows tips] 작은 팁모음(tip, 팁)



//==========================

* 윈도우즈 탐색기에 '보내기' 항목 추가
    윈도우키+R -> 'shell:SendTo' (입력, 엔터)
    -> 나타나는 폴더에 원하는 프로그램 단축아이콘을 만든다.


//===================================================================
* XP
기본 기능 제거하기(그림,압축,동영상)

- 그림보기 제거 : regsvr32 /u shimgvw.dll

- 압축파일 관리 제거 : regsvr32 /u zipfldr.dll

- 동영상 보기 제거 : regsvr32 /u shmedia.dll


//

* windows 7의 explorer에서 zip 파일을 폴더로 보지 않기
    - 다음의 두 키를 찾아서 백업한후 지운다
{E88DCCE0-B7B3-11d1-A9F0-00AA0060FA31} : zipfldr
{0CD7A5C0-9F37-11CE-AE65-08002B2E1262} : cabview
    - 재부팅


//===================================================================
* 탐색기에서 확장명 정렬 순서 바꾸기

 

 

* 용도

*.dsw(VC++ 6 Workspace) *.dpr(Delphi Project) 파일이  하위로 정렬되어 불편한 문제 해결

- vs6의 상위버전을 설치하면 *.dsw가 아래로 이동하면 격게되는 부적응 현상 해결

- 델파이 파일이 많아서 프로젝트 파일 찾기가 힘들 때 쓰면 괜찮음

 

 

* 방법

- 레지스트리에서 파일 설명을 찾아서 수정

 

 

 

Windows Registry Editor Version 5.00

 

[HKEY_CLASSES_ROOT\VisualStudio.dsw.8.0]

@="_VC++ 6 Workspace"

 

[HKEY_CLASSES_ROOT\VisualStudio.dsw.6.0]

@="_VC++ 6 Workspace"

 

[HKEY_CLASSES_ROOT\DelphiProject]

@="_Delphi Project"

 

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DelphiProject]

@="_Delphi Project"


//===================================================================
* XP 비밀번호 분실시 푸는방법

c:\windows\system32\config 폴더의 sam파일을 삭제 한다.


//===================================================================

* 자동실행방지(CDROM, USB)
 
1. 시작=>실행창에서 gpedit.msc 를 입력하고 엔터

2. 그룹 정책창에서 컴퓨터 구성=>관리 템플릿=>시스템 을 클릭

3. 오른쪽 창에 자동 실행 사용 안함 이라는 설정이 구성되지 않음 으로 되어있음을 확인

4. 자동 실행 사용 안함 을 더블 클릭

5. 등록정보 창이 뜨면 사용 을 선택

6. 확인 & 그룹 정책 창 닫기

//=============================================================================================
* Windows Tip 모음 사이트

Registry Edits for Windows XP "Tweaks and Tips"

http://www.kellys-korner-xp.com/xp_tweaks.htm


John Barnett Computer Journalist,  XP Help and Support, Windows XP® FAQ's
http://xphelpandsupport.mvps.org/windows_xp_faq.htm



//=============================================================================================
* PDF 프린터 설치 안되는 문제

- CutePDF writer
CutePDF writer install printer driver failed error 126

http://zhidao.baidu.com/question/279507433.html
Download the newest version and re-install it. You will get the same error message, just click OK to continue. Follow the steps below to add a Printer manually afterwards.
1) Go to Control Panel -> Printers and Faxes to add a local printer.
2) Choose "CPW2: (CutePDF Writer)" on Select a Printer Port dialog box, click Next.
3) Choose a Postscript printer (e.g. HP Color LaserJet 8500 PS), click Next.
4) Enter CutePDF Writer as Printer name, click Next -> Finish


//=============================================================================
닷넷 프레임 워크 제거
.NET FRAMEWORK CLEANUP TOOL
http://blogs.msdn.com/b/astebner/archive/2008/08/28/8904493.aspx

.net framework 삭제후 visual studio 2010 실행
에러 c:\windows\microsoft.net\framework\v2.0.50727\microsoft.vsa.tlb could not be loaded
    -> 해결 : 레지스트리에서 microsoft.vsa.tlb 관련된 항목을 찾아서 모두 지움

//=============================================================================

//
internet explorer "열어본 페이지 목록" 지우기 명령

RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1


//


//=============================================================================

// window7 win7 tip
- 자동 로그인 : NetplWiz를 관리자 권한으로 실행 -> 계정 설정

    - 안되면 한번더 한다 ㅠ.ㅠ

- 네트워크 드라이브 연결 : 컴퓨터 선택 하면 메뉴 나타남



//===============================================================

* 윈도우 시간 동기화 명령(cmd.exe)
    - 방법1
> net time \\서버 /set /y
    - 서버 = Windows Time 서비스가 시작된 컴퓨터 IP

    - 방법2
> w32tm /resync

    안되면
> w32tm /config /manualpeerlist:"time.nist.gov,0x9" /syncfromflags:MANUAL
> net stop w32time
> net start w32time


//===============================================================
* 노트북 외부 화면출력 변경 명령
    - 디스플레이 변경 단축키 : WinKey + P
내부만 : %windir%\system32\DisplaySwitch.exe /internal
    - 컴퓨터에만
화면복제 : %windir%\system32\DisplaySwitch.exe /clone
화면확장 : %windir%\system32\DisplaySwitch.exe /extend
외부만 : %windir%\system32\DisplaySwitch.exe /external
    - RGB나 HDMI등 외부 출력



반응형

'Tips' 카테고리의 다른 글

FreeNas 설정  (0) 2012.08.18
internet explorer user agent 변경  (0) 2012.07.29
dos 에서 sata cdrom 읽기  (1) 2008.11.08
국제전화 거는 방법  (0) 2008.11.08
MediaWiki 설치  (0) 2008.11.05
Posted by codens