Tell 7zip not to use so many threads

This commit is contained in:
Timothy Baldridge 2020-01-30 15:44:38 -07:00
parent 7c567da334
commit fb61b85b7f

View File

@ -145,7 +145,7 @@ namespace Wabbajack.Common
var info = new ProcessStartInfo
{
FileName = @"Extractors\7z.exe",
Arguments = $"x -bsp1 -y -o\"{dest}\" \"{source}\"",
Arguments = $"x -bsp1 -y -o\"{dest}\" \"{source}\" -mmt=off",
RedirectStandardError = true,
RedirectStandardInput = true,
RedirectStandardOutput = true,
@ -209,7 +209,7 @@ namespace Wabbajack.Common
{
var info = new ProcessStartInfo
{
FileName = "innounp.exe",
FileName = @"Extractors\innounp.exe",
Arguments = $"-t \"{v}\" ",
RedirectStandardError = true,
RedirectStandardInput = true,
@ -243,7 +243,7 @@ namespace Wabbajack.Common
var testInfo = new ProcessStartInfo
{
FileName = "7z.exe",
FileName = @"Extractors\7z.exe",
Arguments = $"t \"{v}\"",
RedirectStandardError = true,
RedirectStandardInput = true,