From 657ebb0d5fd539dfaed1b9ce924d6b535248f178 Mon Sep 17 00:00:00 2001 From: JohannesIBK Date: Sat, 16 Dec 2023 19:31:13 +0100 Subject: [PATCH] fix issue with usernames that contain spaces --- EnvyUpdate/DashboardPage.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EnvyUpdate/DashboardPage.xaml.cs b/EnvyUpdate/DashboardPage.xaml.cs index 78258b7..d275b3f 100644 --- a/EnvyUpdate/DashboardPage.xaml.cs +++ b/EnvyUpdate/DashboardPage.xaml.cs @@ -420,7 +420,7 @@ namespace EnvyUpdate WindowStyle = ProcessWindowStyle.Minimized, WorkingDirectory = destinationDir, 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.StartInfo = startInfo; -- 2.47.3