How to start three different pages on three different screens?

ivan prince 20 Reputation points
2023-09-15T18:03:26.6566667+00:00

for example,

I have 3 different monitors , in each monitor there must be a full-screen page ("kiosk mode edge")

solution 1:

use windows 10 kiosk mode - how can i start n pages in n displays?

solution 2:

use the app folder at startup to start 3 different pages , but i need the flags that are used with the msedge.exe binary

example of use:

"C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" --kiosk learn.microsoft.com/en-it/deployedge/microsoft-edge-configure-kiosk-mode --edge-kiosk-type=fullscreen

operating systems where it will be used

  • windows 10/11 professional edition
  • path 22h2
Microsoft Edge | Microsoft Edge development
{count} votes

Accepted answer
  1. Raina Zhao - MSFT 2,875 Reputation points Microsoft External Staff
    2023-09-18T08:09:24.2566667+00:00

    Hi @ivan prince ,

    Thanks for posting in Microsoft Q&A.

    For solution 1: use windows 10 kiosk mode

    Based on my research, the use of multiple monitors isn't supported for multi-app kiosk mode in Windows 10.

    A kiosk device typically runs a single app, and users are prevented from accessing any features or functions on the device outside of the kiosk app. Please refer to Set up a multi-app kiosk on Windows 10 devices for more details.

    For solution 2:

    If you want to open three different pages in edge kiosk fullscreen mode, you could try to use the following command one by one:

    start msedge --kiosk www.URL-1.com --edge-kiosk-type=fullscreen --window-position=X1,Y1 --user-data-dir=C:\monitor1

    start msedge --kiosk www.URL-2.com --edge-kiosk-type=fullscreen --window-position=X2,Y2 --user-data-dir=C:\monitor2

    start msedge --kiosk www.URL-3.com --edge-kiosk-type=fullscreen --window-position=X3,Y3 --user-data-dir=C:\monitor3

    --window-position sets the offset in pixels at which the window is created.

    Hope it works.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    Best Regards,

    Raina Zhao

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.