Showing posts with label windows. Show all posts
Showing posts with label windows. Show all posts

Tuesday, January 08, 2013

Reinstall Keyboard type 1


  1. Delete RegistryHKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\i8042prt
  2. reboot
  3. reinstall keyboard driver

Wednesday, February 09, 2011

Windows Update Fail 0x80244001

In Admin Mode,
c:\>%windir%\system32\regsvr32.exe %windir%\system32\MSXML3.dll

then OK

Monday, December 06, 2010

안드로이드 EStrong Manager에서 윈7 smb 연결하기

run secpol.msc

로컬 정책 -> 보안 옵션
네트워크 보안: LAN Manager 인증 수준 -> LM및 NTLM 응답 보내기

참고 http://www.dustypixels.com/blog/2009/11/07/windows7-samba-shares/

하드 디스크 정보 보기

윈도우 command prompt에서

C:\>wmic partition get BlockSize, StartingOffset, Name, Index

Thursday, October 28, 2010

64비트 어플리케이션

putty - 소스받아서 컴파일 putty 0.60
ccleaner - 3.0 부터 x64 지원

AutoHot Key 한영 전환

  1. vi를 위해서 ESC누르면 영문 전환
  2. ㅈㅈㅈ. 을 www. 으로 변환하고 영문으로 전환

~Escape::
If IMECheck()
Send, {Vk115Sc138}
Return

:*b0:www.::
SetKeyDelay, -1
If IMECheck()
Send, {Backspace 4}{Vk115Sc138}www.
Return

IMECheck(hWnd = "")
{
IfEqual, hWnd,, WinGet, hWnd, ID, A
DefaultIMEWnd := DllCall("imm32\ImmGetDefaultIMEWnd", "UInt", hWnd)
DetectSaved = %A_DetectHiddenWindows%
DetectHiddenWindows, On
SendMessage, 0x283, 5, 0,, ahk_id %DefaultIMEWnd%
IfNotEqual, A_DetectHiddenWindows, %DetectSaved%, DetectHiddenWindows, %DetectSaved%
Return ErrorLevel
}

Monday, July 06, 2009

Unix time() 과 Windows의 FILETIME 상호 변환

inline LONGLONG UnixTimeToFileTime(__time32_t t) throw()

{return Int32x32To64(t, 10000000) + 116444736000000000;}

inline __time32_t FileTimeToUnixTime(LONGLONG l) throw()

{return __time32_t((l - 116444736000000000) / 10000000);}

http://support.microsoft.com/kb/167296