From 44943feb8bda396e8e872977b0e099b7d8606f6e Mon Sep 17 00:00:00 2001 From: ryanbodrug-microsoft <56318517+ryanbodrug-microsoft@users.noreply.github.com> Date: Wed, 22 Apr 2020 17:43:27 -0700 Subject: [PATCH] Setting runcommand as the default execution method, and turning off run as admin by default. --- src/modules/launcher/Plugins/Wox.Plugin.Shell/Settings.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/launcher/Plugins/Wox.Plugin.Shell/Settings.cs b/src/modules/launcher/Plugins/Wox.Plugin.Shell/Settings.cs index af149e8290..616f28cad5 100644 --- a/src/modules/launcher/Plugins/Wox.Plugin.Shell/Settings.cs +++ b/src/modules/launcher/Plugins/Wox.Plugin.Shell/Settings.cs @@ -4,10 +4,10 @@ namespace Wox.Plugin.Shell { public class Settings { - public Shell Shell { get; set; } = Shell.Cmd; + public Shell Shell { get; set; } = Shell.RunCommand; public bool ReplaceWinR { get; set; } = true; public bool LeaveShellOpen { get; set; } - public bool RunAsAdministrator { get; set; } = true; + public bool RunAsAdministrator { get; set; } = false; public Dictionary Count = new Dictionary();