Request Credentialアクティビティを使ってサイトにログインしたい

初心者です。
Request Credentialアクティビティを使って某サイトにログインしたいと考え、WFを作成中です。
添付黒丸の記述を想い出して下記のとおり書いていましたが、

New System.Net.NetworkCredential(“”,ログイン名).SecurePassword

パスワードを記入する場所が無いことに気づき困っています。
パスワードは手入力するのでしょうか?それともどこかに書く場所があれば教えてください。

@gorby

In this System.Net.NetworkCredential first one is username and second is the pssword field…

.password will give pssword as string
.securepassword will give password as securestring

And to type the secure string we need to use secure type into activity

Cheers

Hope this helps

下記が正しいですか?

New System.Net.NetworkCredential(ログイン名,セキュアパスワード).SecurePassword

@gorby

password as securestring - New System.Net.NetworkCredential(Username,password).SecurePassword

Password as string - New System.Net.NetworkCredential(Username,password).Password

Username as string - New System.Net.NetworkCredential(Username,password).Username

Cheers

Hi, After executining workflow,
I noted Windows Security screen appears as attached pictures.
Are there any means to remove this screen?
Or is is mandatory to see this when I use request credential activity?

無題

password as securestring - New System.Net.NetworkCredential(Username,password).SecurePassword

Hi , your suggested password is string variable.
Should I assign value to this password in another place or should I directry write password in it?

@gorby

You shoudl directly write password value there as string…

And you are getting prompt…give the values there and from
Next time it wont come again…it will store the credentials and use them

If you have already credentials stored in windows credential manager and if youa re using the amae name then this pop up would not come

Cheers

Unfortunately, you are telling lie…
Microsft security windows appears repeatingly(persistently) despite I input correct login name and password.
Do you have any suggestion?

@gorby

May I know what activity are you using?

Are you getting it while logging into some website?

Then your admin should enable sso in browser

If you are retrieving then make sure you save the creds in windows credential manager

If you are trying to login to a site with sso enabled then you will get it everytime unless you enable sso in browser

Configure SAML single sign-on for ChromeOS devices - Chrome Enterprise and Education Help.

Cheers

こんにちは

Request Credential アクティビティは、OSの資格情報ストアにユーザーから入力した認証情報を記録させるものなので、このアクティビティで直接対象システムへのログインに使用する認証情報を取得することはできません

OSの資格情報ストアに保存された認証情報を用いて対象システムにログインをしたい場合は
Get Secure Credential アクティビティを使うことになります

本件、自己解決しました。
パスワードの規定値に
New System.Net.NetworkCredential(String.Empty,“パスワード”).SecurePassword
と書けば、Windows資格情報マネージャを使わなくてもパスワードをSecureStringにできるんですね。