Skip to content
This repository has been archived by the owner on Feb 18, 2021. It is now read-only.

Hide the command-line window when launching Edge? #11

Open
STaRDoGG opened this issue Dec 18, 2015 · 0 comments
Open

Hide the command-line window when launching Edge? #11

STaRDoGG opened this issue Dec 18, 2015 · 0 comments

Comments

@STaRDoGG
Copy link

So far, the extension, with @jckleinbourg's changes (#5) is near perfect; it would be nicer though to also have the command-line not flash during the transition between the launcher and the browser though.

I haven't looked at the source at all to see how you're launching the process, but I know in .NET you can do so like this, (maybe the same can be done in the Launcher?)

Dim p As New Process()

    With p.StartInfo
        .RedirectStandardOutput = True
        .RedirectStandardError = True
        .FileName = "CMD.EXE"
        .Arguments = "/C bcdedit " & strWhich
        .UseShellExecute = False
        .CreateNoWindow = True
    End With

    p.Start()
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant