Run Microsoft Edge in Kiosk Mode

Run Microsoft Edge in Kiosk Mode

To set up Microsoft Edge in kiosk mode—ideal for public browsing stations or digital signage—you can use command-line flags to customize its behavior.

Steps to Launch Edge in Kiosk Mode:

  1. Create a Batch File:
    • Open a text editor like Notepad.
    • Paste the following command:
    start msedge.exe --kiosk www.google.com --edge-kiosk-type=fullscreen --no-first-run

    Note: Replace www.google.com with the URL of the web page you want to display.

  2. Save the File with a .cmd Extension:
    • Go to File > Save As.
    • In the Save as type dropdown, select All Files (*.*).
    • Name the file, for example, launch_edge_kiosk.cmd.
    • Click Save.
  3. Run the Batch File:
    • Locate the .cmd file you just saved.
    • Double-click the file to execute it.
    • Microsoft Edge will launch in kiosk mode, displaying your specified web page.

Explanation of Command-Line Flags:

  • --kiosk: Removes the address bar, menu bar, status bar, and disables right-click and certain keyboard shortcuts, effectively locking down the browser interface.
  • www.google.com: Specifies the web page to load. Replace this with your desired URL.
  • --edge-kiosk-type=fullscreen: Launches Edge in fullscreen mode, occupying the entire display without window borders.
  • --no-first-run: Skips the initial setup screen that appears when Edge is launched for the first time or after an update, ensuring it loads directly to your specified web page.

Additional Tips:

  • Exiting Kiosk Mode: To exit, you might need to use Alt + F4 or another method since typical controls are disabled.
  • Customization: You can add more flags to further customize Edge’s behavior. Refer to Microsoft’s official documentation for more options.
  • Updates: Ensure Edge is updated to the latest version to support all kiosk mode features.

By following these steps, you can effectively run Microsoft Edge in kiosk mode tailored to your specific needs.

4.5/5 - (2 votes)