private static void AddMmcCommands(SpecialCommandConfigurationElementCollection cmdList) { Icon[] IconsList = IconHandler.IconsFromFile(Path.Combine(SystemRoot.FullName, "mmc.exe"), IconSize.Small); Random rnd = new Random(); foreach (FileInfo file in SystemRoot.GetFiles("*.msc")) { MMCFile fileMMC = new MMCFile(file); SpecialCommandConfigurationElement elm1 = new SpecialCommandConfigurationElement(file.Name); if (IconsList != null && IconsList.Length > 0) { if (fileMMC.SmallIcon != null) { elm1.Thumbnail = fileMMC.SmallIcon.ToBitmap().ImageToBase64(System.Drawing.Imaging.ImageFormat.Png); } else { elm1.Thumbnail = IconsList[rnd.Next(IconsList.Length - 1)].ToBitmap().ImageToBase64(System.Drawing.Imaging.ImageFormat.Png); } elm1.Name = fileMMC.Parsed ? fileMMC.Name : file.Name.Replace(file.Extension, ""); } elm1.Executable = @"%systemroot%\system32\" + file.Name; cmdList.Add(elm1); } }
public void Remove(SpecialCommandConfigurationElement item) { if (this.BaseIndexOf(item) >= 0) { this.BaseRemove(item.Name); } }
private static void AddRegEditCommand(SpecialCommandConfigurationElementCollection cmdList) { string regEditFile = Path.Combine(SystemRoot.FullName, "regedt32.exe"); Icon[] regeditIcons = IconHandler.IconsFromFile(regEditFile, IconSize.Small); SpecialCommandConfigurationElement regEditElm = new SpecialCommandConfigurationElement("Registry Editor"); if (regeditIcons != null && regeditIcons.Length > 0) { regEditElm.Thumbnail = regeditIcons[0].ToBitmap().ImageToBase64(System.Drawing.Imaging.ImageFormat.Png); } regEditElm.Executable = regEditFile; cmdList.Add(regEditElm); }
private static void AddControlPanelApplets(SpecialCommandConfigurationElementCollection cmdList) { foreach (FileInfo file in SystemRoot.GetFiles("*.cpl")) { SpecialCommandConfigurationElement elm1 = new SpecialCommandConfigurationElement(file.Name); Icon[] fileIcons = IconHandler.IconsFromFile(file.FullName, IconSize.Small); if (fileIcons != null && fileIcons.Length > 0) { elm1.Thumbnail = fileIcons[0].ToBitmap().ImageToBase64(System.Drawing.Imaging.ImageFormat.Png); elm1.Name = file.Name; elm1.Executable = @"%systemroot%\system32\" + file.Name; cmdList.Add(elm1); } } }
private ToolStripItem CreateSpecialItem(SpecialCommandConfigurationElement commad) { String commandExeName = commad.Executable.ToLower(); if (commandExeName.EndsWith("cpl")) return this.cpl.DropDown.Items.Add(commad.Name); if (commandExeName.EndsWith("msc")) return this.mgmt.DropDown.Items.Add(commad.Name); return this.other.DropDown.Items.Add(commad.Name); }
private void AddSpecialMenuItem(SpecialCommandConfigurationElement commad) { ToolStripItem specialItem = this.CreateSpecialItem(commad); specialItem.Image = ConnectionImageHandler.LoadImage(commad.Thumbnail, Resources.server_administrator_icon); specialItem.ImageTransparentColor = Color.Magenta; specialItem.Tag = commad; specialItem.Click += specialItem_Click; }
public void Add(SpecialCommandConfigurationElement item) { this.BaseAdd(item); }
public int IndexOf(SpecialCommandConfigurationElement item) { return(this.BaseIndexOf(item)); }
public void Remove(SpecialCommandConfigurationElement item) { if (this.BaseIndexOf(item) >= 0) this.BaseRemove(item.Name); }
public int IndexOf(SpecialCommandConfigurationElement item) { return this.BaseIndexOf(item); }