VixinG
VixinG

Reputation: 1407

Run Chrome in Windowed Kiosk Mode

How can I run Chrome browser in Kiosk windowed mode (not app mode)? It's always fullscreen and I tried all --disable-fullscreen and --disable-fullscreen-app --window-size settings.

Upvotes: 7

Views: 4774

Answers (3)

Michielio
Michielio

Reputation: 1

Try this:

chrome.exe --app --windows-size=1024,768* [url]

*enter your own dimensions.

Upvotes: 0

plasmobit
plasmobit

Reputation: 53

Try the application mode:

--app=file_url

Upvotes: 2

Dakkaron
Dakkaron

Reputation: 6278

I fear that is not possible, because that is one of the main features of the kiosk mode. As far as I know kiosk mode mainly serves two purposes:

  • fullscreen "pseudolock"
  • browsing without any user data

Since you don't want the first, maybe --bswi (browse without sign in) might do the trick for you.

Upvotes: 1

Related Questions