• Login
    • Search
    • Categories
    • Recent
    • Tags
    • Users
    • Groups
    • Rules
    • Help

    Do more on the web, with a fast and secure browser!

    Download Opera browser with:

    • built-in ad blocker
    • battery saver
    • free VPN
    Download Opera

    Read Command-Line Arguments from a File on Startup

    Suggestions and feature requests
    3
    17
    9326
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • burnout426
      burnout426 Volunteer last edited by

      You can already pass command-line arguments to launcher.exe directly in a command prompt or by modifying an Opera shortcut. The problem with this is that if Opera is launched by a file/protocol association where the command in the registry is used instead, Opera won't launch with those arguments. You could modify the registry commands for Opera to also contain the arguments you want, but those can get overwritten on you during update/install and default browser association.

      What would be great is for Opera's launcher.exe to support an args file next to it that it reads on startup and adds to the command-line arguments. The file format could be a simple text file or a json file. Whatever's easier.

      Posted this for Vivaldi also: https://forum.vivaldi.net/topic/26843/read-command-line-arguments-from-a-file-on-startup.

      Reply Quote 0
        1 Reply Last reply
      • burnout426
        burnout426 Volunteer last edited by

        I figured something out.

        In the "Local State" file (in the profile folder), under the root object, you can (while Opera is closed) add (or edit if it's already there) a "browser" object and then an object under it named "flags". Under "flags" you create integer types with the names of the flags. For example:

        browser {
           "flags" : {
              "autoplay-policy" : 1,
              "save-page-as-mhtml" : -1
           }
        }
        

        It's a lot easier to do with JSONedit. It's even easier if you go to opera://flags first and set a flag so that the browser and flags objects are already there.

        Not all flags will be integer types though. Some may be strings. Integers seem to be used for just simple boolean flags too.

        It might not work for all command-line settings though. Maybe it only works for ones listed in opera://flags. For example, this one doesn't seem to work as an on/off like it does when you just pass it to launcher.exe. It may work as a string when you specify IDs to extensions though.

        If it doesn't work for all commands, then it'd still be nice that it did.

        Reply Quote 0
          1 Reply Last reply
        • burnout426
          burnout426 Volunteer last edited by

          I made an example launcher.exe replacement that supports reading command-line arguments from a file next to it. See here. There's a readme in the zip file.

          Reply Quote 0
            1 Reply Last reply
          • A Former User
            A Former User last edited by A Former User

            @burnout426 said in Read Command-Line Arguments from a File on Startup:

            I made an example launcher.exe replacement that supports reading command-line arguments from a file next to it. See here. There's a readme in the zip file.

            Actually, there could be a better way of using your solution:

            1. Download RegisterFirefoxPortable:
              http://www.winhelponline.com/blog/register-firefox-portable-with-default-programs-in-vista/
              (the program name is a little bit bullshit, as it can register ANY custom browser setup as the default Windows browser, the only issue is the registered browser name, which is always "Firefox")
            2. Apply this program to your launcher replacement.
            3. I made a simple name-fix solution, download it from here:
              https://nofile.io/f/Mnhw0gCYCKV/ChangeDefaultBrowser+Fix.zip
              Apply the one that corresponds your browser name (I tested it on Opera and Vivaldi).
            4. Go to Control Panel -> Default Programs and choose the registered EXE as the default browser.
              Voilà!

            So potentially this solution can completely eliminate the need to rename something in the browser program folder and to mess up with file replacements on each update.
            The only thing is that your EXE should use the stock "launcher.exe" instead of the renamed "reallauncher.exe".

            PS: Could you compile another version of your launcher for Vivaldi ("vivaldi.exe")?

            Reply Quote 0
              burnout426 1 Reply Last reply
            • burnout426
              burnout426 Volunteer @Guest last edited by burnout426

              @agych said in Read Command-Line Arguments from a File on Startup:

              Actually, there could be a better way of using your solution:

              Yes indeed. I actually do that sort of thing for Opera Mail here (instead of modifying Opera's keys).

              I could make a utility sometime that outputs a reg file for the exe (the custom launcher) you pick that makes it available as the default browser. It'd be basically the same thing. The Firefox one should be good for now though.

              @agych said in Read Command-Line Arguments from a File on Startup:

              PS: Could you compile another version of your launcher for Vivaldi ("vivaldi.exe")?

              Yes, I can do that. Or, if you want, you can just download this mingw build, install it, launch the command prompt shortcut that comes with it, cd to the directory where my zip file has been extracted and type the commands listed at the bottom of the cc file.

              I should probably just make the filename of the exe it launches configurable in a file or in the launcher_args file.

              I'll keep you updated.

              Reply Quote 0
                1 Reply Last reply
              • burnout426
                burnout426 Volunteer last edited by

                @agych Try this vivaldi launcher with RegisterFirefoxPortable to see if you like that. See the readme as before.

                Reply Quote 0
                  1 Reply Last reply
                • A Former User
                  A Former User last edited by A Former User

                  Thanks, works great!
                  This is a useful piece of software, have you thought about pushing it to github? 🙂

                  I don't have experience with C++, but have looked at the code a bit and got a couple of ideas for improvement:

                  • The configurable browser exe name is indeed a Very good idea. This way one single launcher can be used with all chromium-based browsers. No need to have one for Opera, another for Vivaldi, and third for Chrome.
                  • Would be great to have the launcher_args file name taken from your launcher exe name, instead of being hardcoded as "launcher_args.txt". I mean, for example, if one downloads your launcher and renames it to "super-cool-launcher-from-hell.exe", it would read the args from "super-cool-launcher-from-hell.txt". One advantage of this approach is that it will be always clear that both files belong to the same software - your launcher. Another advantage is that both files will be one after another in the file manager (sorted by file name).
                  Reply Quote 0
                    burnout426 1 Reply Last reply
                  • burnout426
                    burnout426 Volunteer @Guest last edited by

                    @agych said in Read Command-Line Arguments from a File on Startup:

                    have you thought about pushing it to github?

                    Not at the moment, but noted. I can release it under a license though so people can modify it etc. without worry.

                    @agych said in Read Command-Line Arguments from a File on Startup:

                    The configurable browser exe name is indeed a Very good idea.

                    Indeed.

                    I was thinking about doing just browser_launcher.exe and browser_launcher.cfg

                    When I get a chance here soon.

                    Reply Quote 0
                      1 Reply Last reply
                    • burnout426
                      burnout426 Volunteer last edited by

                      @agych

                      Okay, try browser_launcher to see how it works. You specify the exe to launch in the browser_launcher.cfg file. That way, it should work with whatever browser you want. It's not thoroughly tested yet, but I did test it with Opera a little bit.

                      Reply Quote 0
                        A Former User 1 Reply Last reply
                      • A Former User
                        A Former User @burnout426 last edited by A Former User

                        @burnout426

                        I've tried it properly this time, with RegisterFirefoxPortable and all the stuff, and got 2 issues:

                        • When the browser_launcher is pinned to taskbar (by drag'n'dropping the browser_launcher or its shortcut) and is launched from there, Opera/Vivaldi are opened in a new taskbar "toast", instead of the place of the pinned launcher. In other words I get pinned icon in one place, and the opened browser in the end of the taskbar.
                          I had to fix it by pinning the opened browsers (via taskbar), which resulted in the original browser executables being pinned, and then manually modifying each pinned shortcut so that they point to browser_launcher. So far it works, hope they will not disappear from the taskbar after reboot (sometimes it happens when the pinned shortcut was modified).

                        • When browser_launcher is registered as a default program with RegisterFirefoxPortable and the .reg fix, it doesn't appear in "Default Programs" in control panel. Have no idea why...
                          I have checked the registry and saw that RegisterFirefoxPortable did its job like it supposed to, so it is not this part that fails.
                          I would assume that the original launcher has some sort of signature or something, "Default Programs" checks each registered default program if it is signed or not (while fetching the list of programs), and hides those that are not signed.
                          I got it work by renaming browser_launcher.exe to whatever, renaming the original launcher to browser_launcher.exe, doing the RegisterFirefoxPortable procedure, and then renaming the launchers back. After that the browser entry is still in "Default Programs", opening web-files launches browser_launcher.exe, and the browser runs with all the arguments.

                        After getting these two fixed, the launcher works great so far, I'm now using it with Opera and Vivaldi (both are standalone/portable).

                        Did you have these issues?

                        Reply Quote 0
                          burnout426 2 Replies Last reply
                        • burnout426
                          burnout426 Volunteer @Guest last edited by

                          @agych said in Read Command-Line Arguments from a File on Startup:

                          When browser_launcher is registered as a default program with RegisterFirefoxPortable and the .reg fix, it doesn't appear in "Default Programs" in control panel. Have no idea why...

                          I'll check this out. I only tested on Windows 10 -> Settings -> Apps -> Default Apps -> Web Browser. It's probably something to do with the Registered Applications key.

                          Reply Quote 0
                            burnout426 1 Reply Last reply
                          • burnout426
                            burnout426 Volunteer @Guest last edited by

                            @agych said in Read Command-Line Arguments from a File on Startup:

                            When the browser_launcher is pinned to taskbar (by drag'n'dropping the browser_launcher or its shortcut) and is launched from there, Opera/Vivaldi are opened in a new taskbar "toast", instead of the place of the pinned launcher. In other words I get pinned icon in one place, and the opened browser in the end of the taskbar.

                            Yeah, after pinning browser_launcher.exe, whenever you click the icon, a separate icon is going to show up on the taskbar button for the browser as the browser is indeed another program. I'll see if there's a way around that besides your workaround.

                            Reply Quote 0
                              1 Reply Last reply
                            • A Former User
                              A Former User last edited by

                              Browser Chooser 2
                              Open source. GitHub.

                              Reply Quote 1
                                burnout426 2 Replies Last reply
                              • burnout426
                                burnout426 Volunteer @Guest last edited by

                                @rudrick Will check it out. Thanks

                                Reply Quote 0
                                  1 Reply Last reply
                                • burnout426
                                  burnout426 Volunteer @Guest last edited by

                                  @rudrick said in Read Command-Line Arguments from a File on Startup:

                                  Browser Chooser 2

                                  I see it at https://bitbucket.org/gmyx/browserchooser2/wiki/Home, https://browserchooser2.com/ and https://archive.codeplex.com/?p=browserchooser2. I tried it. It has the option to add a custom exe and has an option to add Browser Chooser to Default Programs. But, I didn't find a way to auto-launch a particular browser when it's invoked from a file association etc. It always asks.

                                  Reply Quote 0
                                    1 Reply Last reply
                                  • burnout426
                                    burnout426 Volunteer @burnout426 last edited by

                                    @burnout426 said in Read Command-Line Arguments from a File on Startup:

                                    I'll check this out. I only tested on Windows 10 -> Settings -> Apps -> Default Apps -> Web Browser. It's probably something to do with the Registered Applications key.

                                    Hmm, it's there under "Set default by apps" in Windows 10. It's under "Mozilla Firefox Portable Edition" or whatever. And, if I change ApplicationName in "HKEY_LOCAL_MACHINE\SOFTWARE\Clients\StartMenuInternet\FirefoxPortable\Capabilities" to "Browser Launcher", it shows up as so in that list.

                                    Reply Quote 0
                                      1 Reply Last reply
                                    • burnout426
                                      burnout426 Volunteer last edited by

                                      I put info (and the link) for my browser launcher on https://www.reddit.com/r/operabrowser/wiki/opera/browser_launcher. I'll just link to the latest version there from now on. The new upload linked there has a few, non-important improvements like a makefile, license, version info for the exe file, updated readme, and more examples in the cfg file.

                                      Would still like Opera to implement something like this in its launcher.exe. Would be much simpler that way. My browser launcher is example for the devs to go by.

                                      Reply Quote 0
                                        1 Reply Last reply
                                      • First post
                                        Last post

                                      Computer browsers

                                      • Opera for Windows
                                      • Opera for Mac
                                      • Opera for Linux
                                      • Opera beta version
                                      • Opera USB

                                      Mobile browsers

                                      • Opera for Android
                                      • Opera Mini
                                      • Opera Touch
                                      • Opera for basic phones

                                      • Add-ons
                                      • Opera account
                                      • Wallpapers
                                      • Opera Ads

                                      • Help & support
                                      • Opera blogs
                                      • Opera forums
                                      • Dev.Opera

                                      • Security
                                      • Privacy
                                      • Cookies Policy
                                      • EULA
                                      • Terms of Service

                                      • About Opera
                                      • Press info
                                      • Jobs
                                      • Investors
                                      • Become a partner
                                      • Contact us

                                      Follow Opera

                                      • Opera - Facebook
                                      • Opera - Twitter
                                      • Opera - YouTube
                                      • Opera - LinkedIn
                                      • Opera - Instagram

                                      © Opera Software 1995-