5
  1. Is there a way to start-up desktop shortcut automatically when Windows starts? (E.g. launch Google Chrome on login)

  2. Additionally, is there a way to make the browser start in full-screen mode? (The same as pressing F11)

Oliver Salzburg
  • 86,445
  • 63
  • 260
  • 306
Bside
  • 153
  • 1
  • 4

1 Answers1

10
  1. simply place a shortcut inside start/all programs/startup.
  2. Chrome can be started from the command line with a flag:

    %LocalAppData%\Google\Chrome\Application\chrome.exe -start-maximized
    

    so you can simply edit the Chrome app shortcut, or create a .bat file and place that line inside, than put either into the folder mentioned above (startup).

References:

Eliran Malka
  • 504
  • 7
  • 15
  • 2
    @EliranMalka For future reference, `%LocalAppData%` should be used in place of `C:\Users\[user]\AppData\Local`. Or at the very least, `%UserProfile%` instead of `C:\Users\[user]`. The environment variables should always point to the correct places, whereas you never know if someone reading your answer has changed their profile paths. – Bob May 29 '12 at 05:25
  • @EliranMalka The `-start-maximized` CLI argument does not launch Chrome in full screen. Unfortunately, the `--kiosk` argument is wrong as well. There is no in between, it seems. – iglvzx May 29 '12 at 07:45
  • @iglvzx, yeah is seem so. please post another answer if you know how to work it out, so others may benefit from it, thanks. – Eliran Malka May 29 '12 at 09:56
  • 1
    @Eliran, I'm working on a solution. I'd like to make it cross-browser first. :) – iglvzx May 29 '12 at 17:25
  • @Bside I've come up with a solution to launch Google Chrome in fullscreen. See my question and answer here: http://superuser.com/questions/430862/windows-launch-google-chrome-in-fullscreen-mode :) – iglvzx May 31 '12 at 04:14