diff --git a/src/authResolver.ts b/src/authResolver.ts index 15a9f96..eff12d3 100644 --- a/src/authResolver.ts +++ b/src/authResolver.ts @@ -158,7 +158,7 @@ export class RemoteSSHResolver implements vscode.RemoteAuthorityResolver, vscode this.logger.trace(`Spawning ProxyCommand: ${proxyCommand} ${proxyArgs.join(' ')}`); - const child = cp.spawn(proxyCommand, proxyArgs); + const child = cp.spawn(proxyCommand, proxyArgs, { windowsHide: true, windowsVerbatimArguments: true }); proxyStream = stream.Duplex.from({ readable: child.stdout, writable: child.stdin }); this.proxyCommandProcess = child; }