diff --git a/MLEM.Ui/UiSystem.cs b/MLEM.Ui/UiSystem.cs
index 5831e24..3f3d98e 100644
--- a/MLEM.Ui/UiSystem.cs
+++ b/MLEM.Ui/UiSystem.cs
@@ -102,7 +102,7 @@ namespace MLEM.Ui {
/// The actual link stored in the link code is stored in its 's 1st group.
/// By default, the browser is opened with the given link's address.
///
- public Action LinkBehavior = l => Process.Start(l.Match.Groups[1].Value);
+ public Action LinkBehavior = l => Process.Start(new ProcessStartInfo(l.Match.Groups[1].Value) {UseShellExecute = true});
///
/// The that this ui system is controlled by.
/// The ui controls are also the place to change bindings for controller and keyboard input.