fix issue with usernames that contain spaces #39
1 changed files with 1 additions and 1 deletions
|
@ -420,7 +420,7 @@ namespace EnvyUpdate
|
||||||
WindowStyle = ProcessWindowStyle.Minimized,
|
WindowStyle = ProcessWindowStyle.Minimized,
|
||||||
WorkingDirectory = destinationDir,
|
WorkingDirectory = destinationDir,
|
||||||
FileName = sevenZipPath,
|
FileName = sevenZipPath,
|
||||||
Arguments = "x -aoa -y " + filePath + " Display.Driver Display.Nview Display.Optimus HDAudio MSVCR NVI2 NVPCF PhysX PPC ShieldWirelessController EULA.txt ListDevices.txt setup.cfg setup.exe"
|
Arguments = "x -aoa -y \"" + filePath + "\" Display.Driver Display.Nview Display.Optimus HDAudio MSVCR NVI2 NVPCF PhysX PPC ShieldWirelessController EULA.txt ListDevices.txt setup.cfg setup.exe"
|
||||||
};
|
};
|
||||||
process.EnableRaisingEvents = true;
|
process.EnableRaisingEvents = true;
|
||||||
process.StartInfo = startInfo;
|
process.StartInfo = startInfo;
|
||||||
|
|
Reference in a new issue