Level 3 Assignment 2 - Unable to input Secure text password

@nadim.warsi @Gabriel_Tatu @loginerror

I am trying to input my pass my password to a variable as secure text that I created to open an application but I receive the following error in the workflow,

Can anyone help me resolve it?

You missed the double quote on password

new System.Net.NetworkCredential(string.Empty, “7stRFW”).Password

Doesn’t work @Vivek_Arunagiri

Please suggest next steps of action!

Hi Tom,

Following is one the way to convert string into a secure string/password

new System.Net.NetworkCredential(string.Empty, “7stRFW”).SecurePassword

Hope it helps!

4 Likes

@ashraya it worked. Thanks a lot.

1 Like