
Epulone
Active Members-
Posts
25 -
Joined
-
Last visited
Everything posted by Epulone
-
For a specific requirement the outbound email are managed by an on-prem EDGE server. The EDGE re-write the local on-prem email address with another domain [exposed domain - mx record-]. Everything is working fine but we are having an issue when the internal local users are requesting an invite meeting by Outlook calendar . In that case when the receiver accept the request invite it generate an error "domain not found". In this scenario the EDGE server is not able to rewrite also the calendar MIME request (V-card) header inside the message so when the receiver accepts the request the reply [mechanism] will fails as will be used the email address of the local user [domain not exposed ] and not the external one. I was wondering if Autoit is able to manipulate somehow the invite heade- calendar MIME (V-card))- re-witing the user email. Thanks
-
I would like find a way to learn to create a prog/script that: 1) open a specific web page 2) analyse the content and extract specific parameters (example: object, price, description etc...) 3) and every x minutes check (comparing with the previous parameters) if there are new adds or some change has been applied and if yes send an email alert with the new parameters. I am sure it is not easy and considering I am not an expert what way do you suggest me to start and learn how to do it? Thanks
-
I solve the problem using: $oSpans = _IETagNameGetCollection($oIE, "div") Global $oIE = _IECreate ("https://www........") Local $oSpans = _IETagNameGetCollection($oIE, "div") For $oSpan In $oSpans If $oSpan.className = 'btn btn-primary btn-sm font-sm property-details-button' Then _IEAction($oSpan, "click") ExitLoop EndIf Thank you
-
I am trying to click on the first "view details" button at the website below: https://www...... I would like to try the way I found at this post (I don't know if it is the best way) but I am not able to locate the button by ID or name. I have tried: Local $oForm = _IEGetObjByName($oIE, "View Details") but it didn't work [ it gives me 0 (zero) in MsgBox], probably because there are several with the same name in the same page and I couldn't find a way to identify ID. Also _INetGetSource didn't help How can I find out the property of this specific first button? Thanks
-
I am try to register my interest in an property website. The website has a list of property that update time to time. To access the property details and register my interest I have to click on the "view details" button present in each add, do a login, click on the "register the interest" button, add other details and send at the end the interest. To automate this process I can't use the "Autoit windows info" to use the right tools because it doesn't detect anything on a web page and one thing more the "view details" buttons is not unique as there are several in the page (in each add). I am using "MouseClick" and "send" in a small script but although it is working it has several limitations and I don't think it is the best way to do it.
-
Although I have disabled task-manager and winL if I press ctrl+alt+del the script stop the execution anyway. Is there a way to keeping it running to the end (20 seconds)? Thanks
-
Thank you kosamja using your code I have the error below .....however the script does't run as an administrator
-
Is there a way to run a script [complied (.exe)] with the admin right? If I use: #RequireAdmin= it will ask for the admin password RunAs and RunAsWait are designed to work only if I have an external program to run (not for elevate it-self). Thanks
-
BlockInput with elevate permission
Epulone replied to Epulone's topic in AutoIt General Help and Support
So , is there any solution to elevate the script (BlockInput()) and run it in elevate mode ? BlockInput(1) ........................... BlockInput(0) -
block Alt+Ctrl+del for 20 seconds
Epulone replied to Epulone's topic in AutoIt General Help and Support
No, here there is a misunderstand. Mine is a genuine request. The script I am speaking about open a free legal software (Toolwiz Time Freeze) insert the admin password and activate it only when a student logon using the local student account of a university testing LAB. This to preserve the PC for any unwanted user change. The activation of the software require about 20 seconds where the student can use Alt+Ctrl+del to terminate the script and then mess all around .... I hope you can see that here there isn't any key-loggers scope .... I believe it is exactly the contrary .....avoid any action from students that could prevent the activation of the program by the script before they use the PC. -
block Alt+Ctrl+del for 20 seconds
Epulone replied to Epulone's topic in AutoIt General Help and Support
In my case I mus block the user (student) to use them otherwise they will do (for sure). Maybe I could disable by the register at the beginning and re-enable at the end. Could it work? -
block Alt+Ctrl+del for 20 seconds
Epulone replied to Epulone's topic in AutoIt General Help and Support
Hi Rudi, unfortunately BlockInput() doesn't block Alt+Ctrl+del -
I have created a small macro script . To avoid the user could block the progress of the automate sequence (about 20 seconds) I would like to block Alt+Ctrl+del just the time the script end in about 20 seconds. How can I do it? Thanks
-
I have created a small autoit script (compiled) that at logon of a specific local user (student) start a program, insert the password and active the freezing of the C: driver. To avoid the user could block the progress of the automate sequence (about 20 seconds) I added blockinput. It seems blockinput needs admin credential to work. I added: 1) #RequireAdmin => but popup the UAC windows to confirm 2) Runas ( RunAs($USERNAME, @ComputerName, $PASSWORD)) => but it didn't work How can I solve it out. Thanks
-
I suggested this options to the lecturer using the "bridge" option in VM workstation but I was told it was not functional for the module he want to teach one because VM is not part of the lessions second because he wish the student act directly on the machines as for example with a cossover cable to joint two PCs.
-
I was speaking in general to know the way to manage the drop dow menu . One example could be " which icons and notification appear on the taskbar". On the right hand side there is a drop down menu. I would like to select one of this options....
-
I'm automating a program installation and I don't know the command to move in a drop down menu. What will be the best way to navigate into a drop down menu? Thanks
-
Thank you all. The reason I need this option is beacuse I am managing a PCs LAB used for students to practice various projects and computing studies. If for example the students need to pratice with network adapter changing the IP address from automatic to static they need Admin right to do it. This seems the only way for them to do some actions without having admin right. In this scenario could I use RunAs to execute an .exe or script from a standard user? So if i use RunAS as below I should solve my problem? RunAs(LocalAdmin, @ComputerName, Passw0rd,1, ' C:\folder\program.exe') Thanks
-
Thanks Careca, I have to disable a program that is working in background ,so the only way for me to disable ( or enable) it is accessing it by the system try icon and clickking on the icon > right -click =disable< Mouseclick primary or controlclick seems not working, I mean if I point the narrow "system try icon" on the task > Mouseclick primary doesn't open the windows icons ( i discovered Mouseclick secondary works ). I can't use controlclick because "windows info" is not able to find the "title" of this widows or icon to use.... What can I use to popup the system try icon windows ? Using Use Ctrl + Alt + F i solved the second issue finding the coordinate of the icon I need to disable. >> THANK YOU VERY MUCH
-
Yes Jos I was wondering if I could run the program with #RequireAdmin --> as a normal user. So if I understood well using #RequireAdmin in the script will give to the executable file (after compiled) the elevated rights of the SYSTEM account? In this scenario if the UAC is disabled any user can install the program, isn't it? Thanks
-
There is a way to run a compiled script as an administrator in a user account? Thanks
-
I am learning to use Autoit just for simple things as I am a very beginner. At the moment I am using it most of all to automate installation programs. I have some problem using windows information tool on hidden icon because I would like to disable a program clicking on the icon present there. MouseClick command work in all task-bar except on the arrow hidden icon. Although i could find a way the really issue is tat once I click on finder tool to point to the program icon the the hidden icon window disappear....the same happen also when I want to select for example setting tab by start button. What would be the best way to solve it? Thanks