Posts: 528
Threads: 50
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Oct 2011
Reputation:
0
I was working on a Connector restarter for my Server that works with Ollydbg so it was Easy to let him Start but
if the Connector is crashing the Process dont Close, because Olly Paused it
Is there any way to check ollydbg if the Programm run or is Paused? (With AutoIt)
Posts: 528
Threads: 50
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Oct 2011
Reputation:
0
Atm i got this Code :
Run( "OLLYDBG")
WinWait("OllyDbg")
WinActivate("OllyDbg")
Send("{F3}",0)
WinWait("Open 32-bit executable")
WinActivate("Open 32-bit executable")
Send("{ENTER}",0)
WinWait("OllyDbg - Connector.exe")
WinActivate("OllyDbg - Connector.exe")
Sleep(3000)
Send("{F9}",0)
Sleep(4000)
Send("{F9}",0)
Its Very Simple and Start the Connector, now i Only need the Restart Function and i can use it
Posts: 313
Threads: 20
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Jul 2011
Reputation:
0
Since this has changed to coding Ill have to move it to the programming section.
Posts: 313
Threads: 20
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Jul 2011
Reputation:
0
Its Very Simple and Start the Connector, now i Only need the Restart Function and i can use it
Restart is CTRL+F2
^ - CTRL
! - ALT
+ - SHIFT
# - WINDOWS KEY
Send("{^F2}",0)
Posts: 528
Threads: 50
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Oct 2011
Reputation:
0
yes but idk how to check if the Connector is paused^^