Reputation: 1407
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
Reputation: 1
Try this:
chrome.exe --app --windows-size=1024,768* [url]
*enter your own dimensions.
Upvotes: 0
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:
Since you don't want the first, maybe --bswi (browse without sign in) might do the trick for you.
Upvotes: 1