How to see the secure string in message box

I want to check the password is updated or not so want to see the secure string in message box. Suggest a method to get it.

Hi @Gopi_Krishna1

Try this

Cheers!!

Hi @Gopi_Krishna1

Try this:

securePassword = New System.Net.NetworkCredential(String.Empty, securePassword).Password

Regards

Hi,

FYI, another approach

System.Runtime.InteropServices.Marshal.PtrToStringUni(System.Runtime.InteropServices.Marshal.SecureStringToGlobalAllocUnicode(secureStringVar))

Or we can also know it by using typeinto activity to type it into plain type text field.

Regards,

I am getting it thank you :blush:

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.