posted by 범벙이 2013. 4. 10. 22:00

 

한글오류.exe

 

 

 

 

 

#NoTrayIcon
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_icon=han.ico
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
MsgBox(6404, '한글 오류', '     갑자기 한글이 안 써지고 영문만 나올때 '& @CRLF & ""& @CRLF &'     지금 레지스트를 수정 합니다.')
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run")
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run", "ctfmon.exe", "REG_SZ", "C:\WINDOWS\system32\ctfmon.exe")
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run\AdobeUpdater")
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run\AdobeUpdater", "", "REG_SZ", "")
  Exit


 

 

 

 

 

 

hangle.reg

 

한글오류.au3

 

 

 

posted by 범벙이 2013. 3. 29. 16:54

오토잇 - 실행 프로그램 및 dll 파일들의 원본 경로를 읽어 들일때

app 폴더의 파일들을 원본 경로인것처럼 패치해 주는 프로그램.. 

 

RegistryChanger.exe

 

 

 

 

원본 블로그 가기
posted by 범벙이 2013. 1. 18. 00:09
#NoTrayIcon

FileDelete(@UserProfileDir & "\AppData\Local\MapleStudio\ChromePlus\User Data\Default\Cache\*")
Exit

Chrome Cache del.exe

 

FileCopy 하시면 됍니다.. 

파일 복사.exe

#NoTrayIcon

$path = @UserProfileDir & "\AppData\Local\MapleStudio\ChromePlus\User Data\Default\Cache\*.rar"
If FileExists($path) Then
    Local $iMsgBoxAnswer
    $iMsgBoxAnswer = MsgBox(33, "파일 확인 ", "RAR파일이 있습니다." & @CRLF & "바탕화면 ChromePlus 폴더로 복사 할까요?")
    Select
        Case $iMsgBoxAnswer = 1 ;OK
            DirCreate(@DesktopDir & "\ChromePlus")
            FileCopy(@UserProfileDir & "\AppData\Local\MapleStudio\ChromePlus\User Data\Default\Cache\*.rar", @DesktopDir & "\ChromePlus\*.rar")
            Exit
        Case $iMsgBoxAnswer = 2 ;Cancel
            Exit
    EndSelect
EndIf