diff --git a/src/Microsoft.ComponentDetection.Orchestrator/Orchestrator.cs b/src/Microsoft.ComponentDetection.Orchestrator/Orchestrator.cs index 26d53f8e4..c21bd6dc9 100644 --- a/src/Microsoft.ComponentDetection.Orchestrator/Orchestrator.cs +++ b/src/Microsoft.ComponentDetection.Orchestrator/Orchestrator.cs @@ -202,7 +202,7 @@ private async Task GenerateEnvironmentSpecificTelemetryAsync(BcdeExecutionTeleme { var getLibSslPackages = Task.Run(() => { - var startInfo = new ProcessStartInfo("apt", "list --installed") { RedirectStandardOutput = true }; + var startInfo = new ProcessStartInfo("dpkg", "-l") { RedirectStandardOutput = true }; var process = new Process { StartInfo = startInfo }; process.Start(); string aptListResult = null;