Jump to content

Recommended Posts

Posted (edited)

So, I have a script where I am using shell execute to open an excel file and a window security popup shows up saying to enter your network credentials. The issue I am having is that i am not able to send in the password in the input field. I have tried using win exists, win activate, winwaitactive to have focus on the window but it still doesnt work. It doesnt input the password.  Here is the code I tried. The path to file is a network path in file explorer so I don't know if that has anything to do with it.

Shell Execute("path to file")
If Win Exists("Windows Security") Then
   Sleep(2000)
   Send("password")
EndIf

If not Win Exists("Windows Security") Then
   Continue on
Endif
 

 

Edited by Jos
  • Developers
Posted

You are not waiting for the program to start first and are testing right away for the prompt, which likely isn't shown yet.
Use the au3info program to check for the required window info of the prompt.
 

 

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.
  :)

Posted

I don't have a modified script for it but I tried using win get title to see if the title was correct  from the au3info program and it didnt show anything. 

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...