You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 18, 2021. It is now read-only.
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()
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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?)
The text was updated successfully, but these errors were encountered: