Editing SecureLogin script to act on multiple Outlook servers

  • 7011715
  • 25-Jan-2013
  • 25-Jan-2013

Environment

NetIQ SecureLogin
NSL7.0.x

Situation

Title changes depending on which server the user is connected to.
How to use the same script for multiple outlook servers
How to make SecureLogtin act on page titles “Server ABC.outlook.com ” AND “Server DEF.outlook.com ”
How to make SecureLogin act on a partial match
How to cause SecureLogin to fire if screen does not match completely

Resolution

Convert the application definition to text format and edit.
Add -RegEx to the “Title” command.
With -regex, you may use regular expressions to match part of a title or URL.
 
Edit the initial dialog statement:
Dialog
  Title "Connect to ServerABC.outlook.com"
EndDialog
 
To  be:
Dialog
  Title -regex ".outlook.com"
EndDialog
 
With -regex in the title, the above dialog statement will work  with all titles that end with "outlook.com."