In this tutorial I demonstrate from start to finish, the process of automating the process of installing software. This tutorial uses MouseClick function and covers the example of installing MalwareBytes anti-malware. This is not only useful for installing software, but also for performing actions on software automatically that you would otherwise have to do manually. Companies can use this to save time as well as individual people.
In the next video I am going to show some other things that can be done in these circumstances such as directly interacting with buttons etc without needing the window to be on the screen at the tim (without using the mouse to click them). I will also cover typing information into boxes. So while this part 1 video shows the process of installing software, the next part 2 will be just showing these additional things rather than showing the whole process all over again.
Please like and subscribe 🙂
Enjoy.
Nguồn:https://valiosys.com/
Xem thêm Bài Viết:
- Hướng Dẫn Cài Đặt Và Crack 3DMAX 2018
- Descargar e Instalar Vehicle Tracking 2017 2018 y 2019
- AutoCAD 2018 – Create 2D Projects, Filling, and Text [COMPLETE]*
- Curso de AutoCAD 2018 – Aula 01/45 – Do Básico ao Avançado – Autocriativo
- Sketchup 2017 Full crack – Hướng dẫn tải và cài đặt SketchUp 2017 and full crack
If you found these tutorials useful, please consider donating via www.paypal.me/morthawt or sending me BTC bitcoin to 38Mzsh1uhLL6KjCRANRh9YXaosibhJao9o Thanks.
Thanks <3
is it possible to make our main mouse not moving but the script still clicking? cuz i want the automation keep going on but i want to play with my computer at the same time.
It's not working i delete my original exe file then I can't run my created file
Software name and download link share
Super Clear and useful!
There is no "Basic Control Info" when I hover over the elements of my Win Desktop App with Finder tool. All application is recognized as just one element. Can you help with that?
Great tutorial ,keep going 👍👍💜
You are AWESOME!! Keep up the good work! Looking forward to learning a lot more with you!!!!! Thank you for this tutorial!!!!
Can you please show where exactly you placed the program/what you meant when you said "this is the directory where the script is running from… we'll put the install in the same place where we're running the script" I don't understand where exactly is the ScriptDirectory. I put my program in "My Documents" because that's where I also had saved the script in but when I hit go nothing happens. Please help, I'm very new to this.
I tried to use the MouseClick command in the Select Setup Language, but it gave no feedback although follow all the step you've provided. Any Solution for this then?
Can u help? What to do if on my windows have not title.?
Thank you very much for the excellent guide, with which software or tools you use to create a script
what a great tutorial! bravo my good sir!
Minute 11:16. What if the operation in the background has no progress bar visible and does not give us confirmation in the form of a pop-up dialog? In my situation, it looks like I check boxes for displaying specific options. Just like in your next video with lost selection for selection – AutoIt Scripting Tutorial 10A Automating Installers & Programs Part 2 – Minute 7: 2, but in my case after selecting you have to wait a long time. At this point, loading data to display and hiding others. The duration of the process depends on many factors and you can not predict it with Sleep (delay). Is it possible to somehow receive confirmation that specific options are marked? If so, please tell me how to do it, I am looking for a solution for a week. Thanks in advance for your help. greetings
Man , Ive been doing your tutorials and I love them!, I have alwayes wanted to code /script, ive been going to code acadamy and solo learn and some other different websites, but it is exciting to actually see it work and apply it to stuff i want to make happen, as I do have a project of my own. I thank you from the top of my heart, keep up the good work.
Hello , Can you please let me know how to handle the Dialogue box YES AND NO (windows) which prompt at the beginning of the setup launcher? I need to manage it for my automation script using automation only. please let me know how will it get handled using script.
mouse positions changing everytime while i dragging the "finder tool".
Man … I have been using AutoIt for years and only after seeing this video did I come to understand how the target symbol works!! Thanks!
Instead of using co-ordinates to click on elements can we use other identifiers like id or name (id, name exist in web applications, i don't know their desktop counterparts)?
Easy to understand, nice tutorial
Thank you
Thanks for the explanation!
Is the learning curve for this shorter than AutoIt? We run a Service Desk and do not have developers on hand for in-depth scripting. I need something that my guys can put to use pretty quickly
Very clear and well done tutorial. Thanks. What about to use it with hidden icon (right task-bar win10) ? Mouseclick primary, controlclick seems not working and even there is away to "click" on it later won't be possible to work on the programs listed inside as for example disable the antivirus because the "hidden icons windows" disappear in every further actions…..
how can i open command promt and send some text inside to run a application
Great video! I have a quick question, though. When setting up new PCs for work, I need to install multiple programs and would like to automate the entire process. How can I write a script that will install multiple programs in succession where once the first program is installed, the script will then begin installing the next program and so on until each piece of software is installed?
Hi, how can i automate uninstalling the application?
Thank you so much bro… finally i finded it <3
How i can use this?
Where i can get Setup.exe please
you are one the great men, why I love internet. 🙂 keep it up.
where did u get the setup.exe file?
Subbed & Liked!! Awesome work buddy Thanks for the demonstration #notificationsquad
Good job! well done. Thanks.
While Running the script I've encountered with the error " Your script requires Admin rights while SciTE is running at normal level.
! This means no Console output from the script will be displayed and SciTE will show the script as ended right away.
I've tried to look up in the Forum but it looks quite complex. Please help me out
Thanks so much for this video, it really helped me with my fist AutoIT script.
Hi!
How to check the text of window. I do auto installer of Java. how to install if there exist old version of java. it gives me the windows that "there is exist old version, uninstall or later?"
Very nice tutorial and professionally made. Thanks for sharing it. The program installation I am trying to automate, In addition to the clicks during the installation, it also has a window with different components available to be installed and that I need to choose from. They are in the format of "down arrow" and then "this feature and all subfeatures will be installed on local hard drive", plus a bar to scroll down to get to the features. Can anybody point me to the right direction to automate that part of the installer? Thanks!
can u email me at [email protected], i need help with auto it
This is a great video! Not sure of you can help here, but I am using an install package that elevates to the admin level. It then calls my AutoIt exe. The last thing that I'd like to do is run a program NOT as the admin… I'd like to "impersonate" the user installing the program. Thoughts?
The better way is NOT to use mouse click, rather get the Handle of the window and use controlsend,or controlclick, controlCommand ect… I stay away from mouseclick unless I absolutely have no choice .otherwise i can use the recorder feature in autoit.
winwaitactivate($Title)
ControlClick($Title, "", "[CLASS:Button; TEXT:OK] ") or Controlsend($Title", "","", "!o") for control send you need to use the underline , normally click on the alt key or windows info will provide that info.
by the way your Tutorial are great I use them as a quick refresher.