'분류 전체보기'에 해당되는 글 124건
- 2009.03.05 Windows Vista 작업 표시줄 Windows 7처럼 만들기
- 2009.03.05 파이어 폭스 오른쪽 버튼 제한및 페이지 수정
- 2009.02.25 TEST
- 2009.02.24 VISTA 에서 자체 녹음
- 2009.02.23 FireFox 에서 IE Rendering
- 2009.01.22 GetLastError , FormatMessage 활용
- 2009.01.20 Vista DEP(Data Execution Prevention) 끄는 방법
- 2009.01.20 VMWare Player 에서 ISO (가상 CD) 사용하는 방법
- 2009.01.20 Data Execution Prevention
- 2008.12.22 Microsoft XML Core Services 4.0 서비스 팩 2용 보안 업데이트 반복 설치 문제
Windows Vista 작업 표시줄 Windows 7처럼 만들기
- 시작/실행/regedit를 입력하고 확인 단추를 클릭한다.
- 다음 레지스트리로 이동한다.
- HKCU\Control Panel\Desktop\WindowMetrics
- 오른쪽 창에 REG_SZ(문자열 값) 형의 MinWidth를 추가하고 값을 -255로 설정한다.
- 로그오프/로그온 한다.
파이어 폭스 오른쪽 버튼 제한및 페이지 수정
주소창에 about:config 라고 입력하고 엔터를 친다.
그런후 Filter 에서 dom.event.contextmenu.enabled 를 입력한다.
기본값은 true이다. 더블클릭 하거나 오른쪽 버튼을 누른후 toggle을 선택하면 false로 바뀐다. 그러면 어디서든 마우스 오른쪽 버튼이 작동한다.
Page Hacker
https://addons.mozilla.org/en-US/firefox/addon/5753
FireFox 에서 IE Rendering
GetLastError , FormatMessage 활용
FormatMessage(
FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
NULL,
GetLastError(),
0, // Default language
(LPTSTR) &lpMsgBuf,
0,
NULL
);
// Process any inserts in lpMsgBuf.
// ...
// Display the string.
MessageBox( NULL, (LPCTSTR)lpMsgBuf, LError, MB_OK | MB_ICONINFORMATION );
// Free the buffer.
LocalFree( lpMsgBuf );
Vista DEP(Data Execution Prevention) 끄는 방법
콘솔에서
Bcdedit.exe /set {current} nx AlwaysOff
Description | |
---|---|
AlwaysOff |
DEP is disabled for all parts of the system, regardless of hardware support for DEP. The processor runs in PAE mode with 32-bit versions of Windows unless PAE is disabled in the boot configuration data. |
AlwaysOn |
DEP is enabled for all parts of the system. All processes always run with DEP enabled. DEP cannot be explicitly disabled for selected applications. System compatibility fixes are ignored. |
OptIn |
On systems with processors that are capable of hardware-enforced DEP, DEP is automatically enabled only for operating system components. This is the default setting for client versions of Windows. DEP can be explicitly enabled for selected applications or the current process. |
OptOut |
DEP is automatically enabled for operating system components and all processes. This is the default setting for Windows Server versions. DEP can be explicitly disabled for selected applications or the current process. System compatibility fixes for DEP are in effect. |
VMWare Player 에서 ISO (가상 CD) 사용하는 방법
ide1:0.present = "TRUE" ide1:0.fileName = "auto detect" ide1:0.deviceType = "cdrom-raw"
ide1:0.present = "TRUE" ide1:0.fileName = "<ISO파일 경로와 이름>" ide1:0.deviceType = "cdrom-image"
Data Execution Prevention
Windows XP 서비스 팩 2와 Windows XP Tablet PC Edition 2005 및 Windows Server 2003의 데이터 실행 방지 기능에 대한 상세한 설명
참고 사이트 : http://support.microsoft.com/kb/875352
DEP(데이터 실행 방지) 설정 변경
DEP(데이터 실행 방지)는 프로그램을 모니터링하여 프로그램이 시스템 메모리를 안전하게 사용하게 함으로써 바이러스 및 다른 보안 위험으로부터의 손상을 방지해 주는 보안 기능입니다.
모든 프로그램을 보호하도록 선택한 경우에도 개별 프로그램에 대해 DEP를 해제할 수 있습니다. DEP 기능을 설정했을 때 프로그램이 올바르게 실행되지 않는 것으로 의심되는 경우 DEP 설정을 변경하기 전에 소프트웨어 게시자에게 프로그램의 DEP 호환 버전이나 업데이트가 있는지 확인하십시오.
|
Microsoft XML Core Services 4.0 서비스 팩 2용 보안 업데이트 반복 설치 문제
http://support.microsoft.com/kb/941729/
Microsoft XML Core Services 4.0 서비스 팩 2용 보안 업데이트(KB936181)가 Microsoft Update 또는 Windows Update의 업데이트 목록에 반복적으로 나타날 수 있음 (영문)
- Click Start, click Run, type cmd, and then press ENTER.
- At the command prompt, type ren %windir%\System32\msxml4.dll msxml4.old, and then press ENTER.
Note After you press ENTER, you may receive the following error message.Cannot find the file specified. - At the command prompt, type exit, and then press ENTER.
- Visit the following Microsoft Web site:
http://www.update.microsoft.com (http://www.update.microsoft.com)
- Download and then install the latest MSXML security update.