posted by 범벙이 2015. 5. 28. 12:17

 

 

         

 

 

MsgBox 박스를 먼저 띄우기..

au3파일과 압축할 폴더가 같은곳에 있어야함.. 

 

#NoTrayIcon
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_icon=..\보조파일\2015-05-26_151354.ico
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****

If FileExists(@DesktopDir & "\AutoCAD 2010 KEYGEN") Then
  MsgBox(4096, "중복 ", "바탕화면에 이미 AutoCAD 2010 KEYGEN 폴더가 있습니다 ",3)
  Exit
  EndIf
 If not FileExists(@DesktopDir & "\AutoCAD 2010 KEYGEN") Then
  MsgBox(4096, "압축 풀기 ", "바탕화면에 압축을 풉니다 ~^^  ",2)
EndIf  
DirCreate(@DesktopDir & "\AutoCAD 2010 KEYGEN")
DirCreate(@DesktopDir & "\AutoCAD 2010 KEYGEN\Activation")
FileInstall("AutoCAD 2010 KEYGEN\Activation\adlmint.dll", @DesktopDir & "\AutoCAD 2010 KEYGEN\Activation\adlmint.dll", 0)
FileInstall("AutoCAD 2010 KEYGEN\Activation\설치방법.txt", @DesktopDir & "\AutoCAD 2010 KEYGEN\Activation\설치방법.txt", 0)
FileInstall("AutoCAD 2010 KEYGEN\AutoCAD+2010+for+32bit.zip", @DesktopDir & "\AutoCAD 2010 KEYGEN\AutoCAD+2010+for+32bit.zip", 0)
FileInstall("AutoCAD 2010 KEYGEN\AutoCAD+2010+for+64bit.zip", @DesktopDir & "\AutoCAD 2010 KEYGEN\AutoCAD+2010+for+64bit.zip", 0)
FileInstall("AutoCAD 2010 KEYGEN\사용법.jpg", @DesktopDir & "\AutoCAD 2010 KEYGEN\사용법.jpg", 0)
Sleep(10)
MsgBox(4096, "AutoCAD 2010 KEYGEN.", "바탕 화면에 압축을 풀었습니다~ ^^  ", 2)

Exit