s3vn
(Joe Perri)
January 23, 2020, 6:13pm
1
Hi All!
I was wondering if anyone know why the password field of the Exchange scope is just a string field instead of a secure string?
Is there a way to get a secure string from Orchestrator and convert it so I don’t have to store the password in plain text?
Cheers!
s3vn
bcorrea
(Bruno Correa)
January 23, 2020, 6:21pm
2
yes, you can use:
string password = new System.Net.NetworkCredential(string.Empty, securePassword).Password
2 Likes
s3vn
(Joe Perri)
January 23, 2020, 7:16pm
3
Thanks @bcorrea , that works for me…do you happen to know why this activity is setup this way?
bcorrea
(Bruno Correa)
January 23, 2020, 7:19pm
4
to be honest, securestring is not really secure anyway so it does not make a lot of difference, i imagine they think more people will just type the password there…
s3vn
(Joe Perri)
January 23, 2020, 8:24pm
5
Type the password in the workflow?! Oh no!
system
(system)
Closed
January 26, 2020, 8:24pm
6
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.