[Run] Include cmd extension in run command filter

This commit is contained in:
albertony 2023-12-09 21:26:30 +01:00
Родитель a647e08e96
Коммит 0f902d956f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -17,7 +17,7 @@ namespace Microsoft.Plugin.Program
public List<string> ProgramSuffixes { get; set; } = new List<string>() { "appref-ms", "lnk", "url" };
public List<string> RunCommandSuffixes { get; set; } = new List<string>() { "bat", "appref-ms", "exe", "lnk", "url", "cpl", "msc" };
public List<string> RunCommandSuffixes { get; set; } = new List<string>() { "bat", "cmd", "appref-ms", "exe", "lnk", "url", "cpl", "msc" };
public bool EnableStartMenuSource { get; set; } = true;