Jump to content

bybordo

Active Members
  • Posts

    35
  • Joined

  • Last visited

bybordo's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. this is without /s. it means: "idmshellext64.dll module installed but DllUnregisterServer calling was error with 0x80070002 code." contact us for this problem bla bla bla... do you want another information ?
  2. i tried with command prompt and not happened and it gives error without /s
  3. i want delete a running dll file with autoit. i try tihs but not working: #RequireAdmin ShellExecute("C:\WINDOWS\system32\regsvr32.exe", "/u /s IDMShellExt64.dll") FileDelete(@ProgramFilesDir & "\Internet Download Manager\IDMShellExt64.dll")
  4. ShellExecute("ipconfig.exe","/release *") ; switch off Sleep(15000) ShellExecute("ipconfig.exe","/renew *") ; switch on it is working in scite editor but not working when i compile it.
  5. i want enbale and disable connection with autoit. i searched in forum but codes doesn't work.
  6. $iMsgBoxAnswer = _Bb_MsgBox("title", "text") Select Case $iMsgBoxAnswer = 6 ;Yes Case $iMsgBoxAnswer = 7 ;No Case $iMsgBoxAnswer = 2 ;Cancel EndSelect Func _Bb_MsgBox($sTitle, $sText, $iTime = 0, $Hwnd = "") Local $ReturCode = 2 Local $MSG_Form = GUICreate($sTitle, 350, 85, -1, -1) Local $MSG_ICON = GUICtrlCreateIcon("shell32.dll", 61, 10, 10, 32, 32) Local $MSG_LABEL = GUICtrlCreateLabel($sText, 43, 19, 300, 30, 0x001) GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif") GUICtrlSetColor(-1, 0x0000FF) Local $MSG_BTN1 = GUICtrlCreateButton("button1", 10, 55, 160, 23) Local $MSG_BTN2 = GUICtrlCreateButton("buton2", 180, 55, 160, 23) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case -3 $ReturCode = 2 ExitLoop Case $MSG_BTN1 $ReturCode = 6 ExitLoop Case $MSG_BTN2 $ReturCode = 7 ExitLoop EndSwitch WEnd GUIDelete($MSG_Form) Return $ReturCode EndFunc how can i deactive window's exit button ?
  7. I want use a file with autoit for can't delete by antivirus. how can i build code ?
  8. this is my form. i choose drivers and i set a password then i press "start installation" and script must be like this: ShellExecute("dfstd.exe", "/pw=mypassword /install /freeze=Choosed drivers") ; chosed drivers is like this: if i chosed c,d,e , /freeze=C,D,E and mypassword is same
×
×
  • Create New...