I would like to setup a Kiosk with Microsoft Edge with the following requirements:
- Opens full screen
- Locked on a domain (no browser interface visible)
- Use a specific profile with same localStorage & cookies.
After some hours of searches, I only found this command line possibility:
msedge.exe --kiosk www.contoso.com --edge-kiosk-type=fullscreen
This satisfies the two first requirements (full screen, domain locked), but Edge always open like if in private or with a new profile: I have to signIn again on my application each time.
Is there any way to satisfies the third requirement?
I have also tried to add the following command line arg (with my profile name instead of course):
--profile-directory="Profile name"
Thanks for helping