SANOGO 0 Posted June 4, 2019 Hello, here is the code of my script that works well; now I would like to save the result of ping in a log file I do not arrive. thank you for helping me. Diagnostic_Système.au3 yellow.ico green.ico red.ico Share this post Link to post Share on other sites
Melba23 3,457 Posted June 5, 2019 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 Share this post Link to post Share on other sites
Jos 2,214 Posted June 5, 2019 @SANOGO, So you didn't like the french forum and the ability to speak in your own language, but rather like to learn English? Guess you really need to read and understand before posting, as creating threads in the wrong forum is not the first time! Also giving your topics a meaningful title would also help. Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Share this post Link to post Share on other sites
Nine 996 Posted June 5, 2019 (edited) Here what you could do : $Ping = Ping($sURL, 999) FileWriteLine ("Test.log", @HOUR & ":" & @MIN & ":" & @SEC & " > Résultat du ping sur " & $sURL & " = " & $Ping) If $Ping > 0 Then GUICtrlSetImage($Status1, @ScriptDir & "\Green.ico") GUICtrlSetColor($Hostname1, 0x00ff00) Else GUICtrlSetImage($Status1, @ScriptDir & "\Red.ico") GUICtrlSetColor($Hostname1, 0xff0000) EndIf I hard coded the name of the logfile, but you could use a file handle instead, which would make the script run faster. You just need to open the logfile at the start of the function CheckStats() and close it at the end... Edited June 5, 2019 by Nine Not much of a signature but working on it... Spoiler Block all input without UAC Save/Retrieve Images to/from Text Tool to search content in au3 files Date Range Picker Sudoku Game 2020 Overlapped Named Pipe IPC x64 Bitwise Operations Multi-keyboards HotKeySet Fast and simple WCD IPC Multiple Folders Selector GIF Animation (cached) Share this post Link to post Share on other sites
SANOGO 0 Posted June 7, 2019 On 6/5/2019 at 8:13 AM, Jos said: @SANOGO, So you didn't like the french forum and the ability to speak in your own language, but rather like to learn English? Guess you really need to read and understand before posting, as creating threads in the wrong forum is not the first time! Also giving your topics a meaningful title would also help. Jos it will allow me to improve my English. thank you for making effort that will give us a lot of courage. Share this post Link to post Share on other sites
SANOGO 0 Posted June 7, 2019 On 6/5/2019 at 11:32 AM, Nine said: Here what you could do : $Ping = Ping($sURL, 999) FileWriteLine ("Test.log", @HOUR & ":" & @MIN & ":" & @SEC & " > Résultat du ping sur " & $sURL & " = " & $Ping) If $Ping > 0 Then GUICtrlSetImage($Status1, @ScriptDir & "\Green.ico") GUICtrlSetColor($Hostname1, 0x00ff00) Else GUICtrlSetImage($Status1, @ScriptDir & "\Red.ico") GUICtrlSetColor($Hostname1, 0xff0000) EndIf I hard coded the name of the logfile, but you could use a file handle instead, which would make the script run faster. You just need to open the logfile at the start of the function CheckStats() and close it at the end... Thank you for your help it helped me a little, but the concern is only one ping while in my program is 12 ping ... Share this post Link to post Share on other sites