@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?
@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
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!
@ashraya it worked. Thanks a lot.