Mike Hearn

Results 205 comments of Mike Hearn

@ben221199 If you still need a JVM implementation of MSIX and your need is commercial, email [email protected] because we have done all this and can make signed MSIX files successfully...

Great proposal. Only one observation for the JVM mangling scheme - `$` is not that readable, but the other proposals might be confusing e.g. I wouldn't immediately think that `getBackgroundColor`...

Another suggestion - the distinction between `object` and `static object` is unfortunate. Complexity that will exist forever. Is it maybe not possible to just automatically change how it's compiled depending...

Entry point is "Windows.FullTrustApplication" and `uap10:TrustLevel` doesn't exist in the manifest. Adding the entry points and `` element as I describe above has resolved the issue for my test Electron...

BTW, I suspect the reason this may be required for Node is this code: https://github.com/libuv/libuv/blob/5cc7175514571e41cc31219df1ae9dbd8e6b69f9/src/win/process.c#L1072 But really what we need here is someone with source code access to explain or...

> As another question, if you try to use CreateProcess to launch an executable that isn't in your application's package directory, does it work correctly without any extra information? Yes...

Continuing my mission to document the hidden internals of CreateProcess on Win10 things get much hairier still. It's possible that my report of a bug above is wrong because more...

Systematic testing shows the following: 1. no app alias, no ``, alone = fail 2. no app alias, ``, alone = fail 3. app alias, no ``, alone = **ok**...

It's the first. `CreateProcess(pkgdir\some_random.exe)`, except: 1. Adding it to the manifest fixes Win11 2. Adding an execution alias fixes it on Win10 even if you don't then use the alias,...

Update: it turns out this is more than a documentation problem. Adding the manifest entries for the helper EXE breaks Windows Store submission because they consider an app that contains...