Setting runcommand as the default execution method, and turning off run as admin by default.

This commit is contained in:
ryanbodrug-microsoft 2020-04-22 17:43:27 -07:00
parent 9ae97de780
commit 44943feb8b

View File

@ -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<string, int> Count = new Dictionary<string, int>();