Skip to main content
Question

Toad App Onboarding - Password Safe

  • November 17, 2025
  • 1 reply
  • 70 views

Hi All,

 

I am onboarding Toad in BeyondTrust Password Safe. If anyone has done this before, could you please share the .ini or .au3 file you used for passing connection details?

 

Thanks in advance.

 

1 reply

  • BeyondTrust Employee
  • November 21, 2025

Hello ​@Sirius 

I have not setup toad but our ps_automate guide on automating logins should provide some guidance.https://www.beyondtrust.com/docs/beyondinsight-password-safe/ps/integrations/ps-automate/index.htm 

To control windows applications have a look at the ssms_database.ini included in the PasswordSafe Resource Kit.


Just change RunApp to point to the Toad program and the application window titles.

You will also need to update "AppWindowControlID" with the specific controls ids for Toad
To find the Windows app control names use Au3Info.exe that is included with AutoIt https://www.autoitscript.com/site/autoit/downloads/

Here is the first part of the ssms_database.ini


[General]
EnableLogging=0
LogMethod=1
RunApp="C:\Program Files (x86)\Microsoft SQL Server Management Studio 18\Common7\IDE\Ssms.exe"
AppWindowTitle="Connect to Server"

[TaskSequence1]
AppWindowTitle="Connect to Server"
AppWindowControlID="[NAME:serverInstance]"
SendKeys=%custom1%

[TaskSequence2]
AppWindowTitle="Connect to Server"
AppWindowControlID="[NAME:comboBoxAuthentication]"
SendKeys="S"

[TaskSequence3]
AppWindowTitle="Connect to Server"
AppWindowControlID="[NAME:userName]"
SendKeys=%username%

[TaskSequence4]
AppWindowTitle="Connect to Server"
AppWindowControlID="[NAME:password]"
SendKeys=%password%

[TaskSequence5]
AppWindowTitle="Connect to Server"
AppWindowControlID="[NAME:options]"
AppWindowControlClick=1

Here is a screenshot from Au3Info showing the name of the SSMS "Connect to Server" control.

 

If you have any questions please let me know.

Regards,

John