Heather Posted December 21, 2021 Share Posted December 21, 2021 (edited) Hello everyone, I have been working on a new software package that requires an activation key provided once, in order the application runs properly, i have tried several time to execute the following script with no result, the key won't be sent unfortunately. $rslt = WinWaitActive("iX Developer 2.40 SP4") Sleep(15000) Send("!n") Send("{TAB}") Send("{TAB}") Send("{Enter}") Send("76") Send ("2F-00") Send ("BF-22") Send ("26") Send("-9C") Send("07") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{ENTER}") can anyone help please Edited December 21, 2021 by Heather Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted December 21, 2021 Moderators Share Posted December 21, 2021 Heather, How is this different from your previous thread? M23 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 Link to comment Share on other sites More sharing options...
Heather Posted December 21, 2021 Author Share Posted December 21, 2021 @Melba23: on the previous one it worked then suddenly it failed, didn't figure out the cause Link to comment Share on other sites More sharing options...
Developers Jos Posted December 21, 2021 Developers Share Posted December 21, 2021 .... ok so what did you change? 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. Link to comment Share on other sites More sharing options...
Heather Posted December 21, 2021 Author Share Posted December 21, 2021 (edited) i haven't change the script , the issue that after i insert the activation code after the code of installation of the required application using run , the software is installed successfully but the activation key couldn't be sent, i tried to separate them each on a script and combine them in a bandle (from ivanti console) but still the same Edited December 21, 2021 by Heather Link to comment Share on other sites More sharing options...
Nine Posted December 21, 2021 Share Posted December 21, 2021 Quite hard to help you here. You do not give much details of what is happening. Are you sure the field containing the activation code has the right focus when you send it ? Is it a new version of the installer ? What have you tried so far, beside sending the activation code in small chunks ? “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) Screen Scraping Multi-Threading Made Easy Link to comment Share on other sites More sharing options...
Bert Posted December 22, 2021 Share Posted December 22, 2021 Heather, have you checked to see if the installer supports command line switches? If it does then you can greatly simplify your script. If you don't know how to check, do this: From a DOS prompt enter the full file path and file name along with a /? switch. For example the installer.exe file may be located in a folder on the root of your C drive and the folder is called test. So the path along with the switch would be C:\test\installer.exe /? If the installer does support command line switches your DOS command should report a list of supported switches. Edit: in looking at the software you are installing, you also may want to look at this article: https://blogs.sap.com/2014/05/29/sapgui-installation-server-part-1-getting-started/ The Vollatran project My blog: http://www.vollysinterestingshit.com/ Link to comment Share on other sites More sharing options...
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