diff --git a/AutoAppLaunchManager.cs b/AutoAppLaunchManager.cs
index d4f37a94..1c098143 100644
--- a/AutoAppLaunchManager.cs
+++ b/AutoAppLaunchManager.cs
@@ -217,8 +217,12 @@ namespace VRCX
/// The path.
internal void StartChildProcess(string path)
{
- using (var process = Process.Start(path))
- startedProcesses.Add(path, new HashSet() { process.Id });
+ try
+ {
+ using (var process = Process.Start(path))
+ if (process != null)
+ startedProcesses.Add(path, new HashSet() { process.Id });
+ } catch { }
}
///