Bartosz Sosnowski

Results 26 comments of Bartosz Sosnowski

MSIX built by current master can be installed by non-admin users.

This should enable `/EHa`, should make things work: ``` "msvs_settings": { "VCCLCompilerTool": { "ExceptionHandling": 2 } ``` Add the `ExceptionHandling` setting to all `VCCLCompilerTool`

Maybe try this: https://github.com/nodejs/node-gyp/issues/568#issuecomment-71979953

Make sure you have an active internet connection and retry running the script. It will be in the Start menu, under `Install additional Tools for Node.js`. Choco will pick up...

[Deep](https://github.com/nodejs/node/blob/c3d337db5d4535840cd4dfaf438d6062eec6d60c/src/node_process_methods.cc#L120), [deep](https://github.com/nodejs/node/blob/c3d337db5d4535840cd4dfaf438d6062eec6d60c/deps/uv/src/win/util.c#L152) inside `process.cwd()` is just a `GetCurrentDirectoryW`. As such this is probably unfixable. For babel, this probably can be worked around. Cwd is defined by the caller, so maybe...

I don't think this is something we can fix. Forcing `process.cwd()` to always return a realpath will probably break a lot of users setups. In the end the calling process...

For the record, subst would work if we would do a realpath on all child cwd: ```console C:\...\test\>subst z: C:\...\test C:\...\test\>z: Z:\>cd link Z:\link>node t.js Z:\folder\sub ``` Bringing Windows and...

I think all handles created by libuv are inheritable. IMHO selecting which handles are to be passed to child process feels so Windows-specific, that users should call `CreateProcess` themselves.

Sorry, got confused. Handles are not inherited by default. Yes, we should add this to libuv.

Win + P: https://github.com/microsoft/PowerToys/issues/228