Davidyese Posted October 22, 2024 Posted October 22, 2024 Hi everyone, I need to read the version of AIDA64 engineer version from this website : https://www.aida64.com/downloads/latesta64ee Waiting for experts to help Thanks in advance
bogQ Posted October 22, 2024 Posted October 22, 2024 So what did you try on your own or where is your code that is failing? TCP server and client - Learning about TCP servers and clients connectionAu3 oIrrlicht - Irrlicht projectAu3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related) There are those that believe that the perfect heist lies in the preparation.Some say that it’s all in the timing, seizing the right opportunity. Others even say it’s the ability to leave no trace behind, be a ghost.
Nine Posted October 22, 2024 Posted October 22, 2024 Look at InetRead from help file. “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy
Davidyese Posted October 22, 2024 Author Posted October 22, 2024 My Code give an error $aAIDA64Ver = StringRegExp(BinaryToString(InetRead("https://www.aida64.com/downloads/latesta64ee", 1 ), 4 ), '(?:AIDA64.*Engineer)s?[^"\r\n]+(?:)<', 1 ) $bAIDA64Version = $aAIDA64Ver[ 0 ] MsgBox(0,"AIDA64 Version", $bAIDA64Version)
Davidyese Posted October 22, 2024 Author Posted October 22, 2024 57 minutes ago, Nine said: Look at InetRead from help file. I did and i modify it but nothing work with me as InetRead function can't read this website totaly so give an error unlike other websites like : https://www.softexia.com/system-tools/diagnostic/aida64
Davidyese Posted October 22, 2024 Author Posted October 22, 2024 I Know and I Understand the following code is working good $aAIDA64Ver = StringRegExp(BinaryToString(InetRead("https://www.softexia.com/system-tools/diagnostic/aida64", 1), 4), '(?:AIDA64)s?[^"\r\n]+(?:)-', 1) $bAIDA64Version = $aAIDA64Ver[0] MsgBox(0,"AIDA64 Version", $bAIDA64Version) but i ask for help to read difficult readable websites such as : https://www.aida64.com/downloads/latesta64ee so again any help about the next code which refer to error : $aAIDA64Ver = StringRegExp(BinaryToString(InetRead("https://www.aida64.com/downloads/latesta64ee", 1), 4), '(?:AIDA64.*Engineer)s?[^"\r\n]+(?:)<', 1) $bAIDA64Version = $aAIDA64Ver[0] MsgBox(0,"AIDA64 Version", $bAIDA64Version)
argumentum Posted October 22, 2024 Posted October 22, 2024 3 hours ago, Davidyese said: i ask for help to read difficult readable websites such as use curl Follow the link to my code contribution ( and other things too ). FAQ - Please Read Before Posting.
Nine Posted October 22, 2024 Posted October 22, 2024 That works for me : #include <Constants.au3> #include <InetConstants.au3> Local $sSite = BinaryToString(InetRead("https://www.aida64.com/downloads/latesta64ee", $INET_FORCERELOAD)) ConsoleWrite(StringRegExp($sSite, "Request Trial Download AIDA64 Engineer ([^ ]+)", 1)[0] & @CRLF) 7.40.7100 argumentum and Davidyese 2 “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy
Davidyese Posted October 22, 2024 Author Posted October 22, 2024 46 minutes ago, Nine said: That works for me : #include <Constants.au3> #include <InetConstants.au3> Local $sSite = BinaryToString(InetRead("https://www.aida64.com/downloads/latesta64ee", $INET_FORCERELOAD)) ConsoleWrite(StringRegExp($sSite, "Request Trial Download AIDA64 Engineer ([^ ]+)", 1)[0] & @CRLF) 7.40.7100 Still give an error for me
Nine Posted October 22, 2024 Posted October 22, 2024 Some site have security against excessive access. Maybe you have tried too many time that site. Give it a 24h cooldown. Davidyese 1 “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy
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