private static Icon GetPOLConfigIcon(ushort ResourceID) { string POLPath = POL.GetApplicationPath("1000"); if (POLPath == null) { return(null); } return(Icons.GetIcon(Path.Combine(POLPath, Path.Combine("polcfg", "polcfg.exe")), ResourceID)); }
public static bool IsAppInstalled(string ID, Region Region) { return(POL.GetApplicationPath(ID, Region) != null); }
public static string GetApplicationPath(string ID) { return(POL.GetApplicationPath(ID, POL.SelectedRegion_)); }