jacky998877 Posted March 9, 2021 Posted March 9, 2021 i got an unregistered program installed on my computer , and it will crash after a period of time, so i need to manually restart it after it is crashed , is there a script that can solve this problem ?
Moderators Melba23 Posted March 9, 2021 Moderators Posted March 9, 2021 Moved to the appropriate forum. Moderation Team Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
argumentum Posted March 9, 2021 Posted March 9, 2021 5 hours ago, jacky998877 said: got an unregistered program installed on my computer , and it will crash after a period of time, so i need to manually restart it after it is crashed you can do a batch file: :again UnregisteredProgram.exe goto again or read up and try other things. Follow the link to my code contribution ( and other things too ). FAQ - Please Read Before Posting.
jacky998877 Posted March 9, 2021 Author Posted March 9, 2021 16 hours ago, argumentum said: you can do a batch file: :again UnregisteredProgram.exe goto again or read up and try other things. the script works , thanks
rudi Posted March 10, 2021 Posted March 10, 2021 Hi @jacky998877 even though you have a working CMD solution, as this was just your 3rd post and this forum is about Autoit, I'm going to mention some autoit code: $Prog = "notepad.exe" $pid = Run($Prog) $StartCounter = 1 ToolTip("Started " & $StartCounter & " times so far" & @CRLF & "PID = " & $pid, @DesktopWidth - 300, 50, $Prog) While 1 = 1 ; loop infinite Sleep(1000) ; check once every second ToolTip("") If ProcessExists($pid) Then ; still running, fine ... Else $StartCounter += 1 $pid = Run($Prog) ToolTip("Started " & $StartCounter & " times so far" & @CRLF & "PID = " & $pid, @DesktopWidth - 300, 50, $Prog) EndIf WEnd Rudi. Earth is flat, pigs can fly, and Nuclear Power is SAFE!
jacky998877 Posted March 11, 2021 Author Posted March 11, 2021 (edited) 14 hours ago, rudi said: $Prog = "notepad.exe" $pid = Run($Prog) $StartCounter = 1 ToolTip("Started " & $StartCounter & " times so far" & @CRLF & "PID = " & $pid, @DesktopWidth - 300, 50, $Prog) While 1 = 1 ; loop infinite Sleep(1000) ; check once every second ToolTip("") If ProcessExists($pid) Then ; still running, fine ... Else $StartCounter += 1 $pid = Run($Prog) ToolTip("Started " & $StartCounter & " times so far" & @CRLF & "PID = " & $pid, @DesktopWidth - 300, 50, $Prog) EndIf WEnd Rudi. @Rudi this is the script that i am looking for, it solved my problen seamlessly,thanks Edited March 11, 2021 by jacky998877
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now