DEV Community

Cover image for Run Microsoft Edge in Kiosk Mode
Dan Wheeler
Dan Wheeler

Posted on

14

Run Microsoft Edge in Kiosk Mode

Copy the below into a text editor and save it as a .bat file.

start "" "C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" --kiosk www.google.com --edge-kiosk-type=fullscreen -no-first-run
Enter fullscreen mode Exit fullscreen mode

To explain the flags:

--kiosk removes the address bar, menu bar, status bar etc... and prevents alt/right clicking - essentially locking it down completely

Then you put the web page you wish to run,

--edge-kiosk-type=fullscreen makes it fullscreen

-no-first-run prevents the initial Edge startup process when used for the first time or after an update. Meaning it loads straight to the web page.

Top comments (0)

Eliminate Context Switching and Maximize Productivity

Pieces.app

Pieces Copilot is your personalized workflow assistant, working alongside your favorite apps. Ask questions about entire repositories, generate contextualized code, save and reuse useful snippets, and streamline your development process.

Learn more