網站首頁 編程語言 正文
實踐過程
效果
代碼
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
string[] Machine;
string[] User;
private void getMachineInfo()//讀取HKEY_LOCAL_MACHINE分支下的啟動項
{
string[] reginfo = new string[2];
RegistryKey rk= Registry.LocalMachine;
RegistryKey rk2=rk.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run", true);
string[] MachineFiles = rk2.GetValueNames();
Machine = rk2.GetValueNames();
foreach (string name in MachineFiles)
{
string registdata;
RegistryKey rk3;
RegistryKey rk4;
rk3 = Registry.LocalMachine;
rk4 = rk.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run", true);
registdata = rk4.GetValue(name).ToString();
reginfo[0] = name;
reginfo[1] = registdata;
ListViewItem lvi = new ListViewItem(reginfo);
listView1.Items.Add(lvi);
}
}
private void getUserInfo()
{
string[] reginfo = new string[2];
RegistryKey rk = Registry.CurrentUser;
RegistryKey rk2 = rk.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run", true);
string[] UserFiles = rk2.GetValueNames();
User = rk2.GetValueNames();
foreach (string name in UserFiles)
{
string registdata;
RegistryKey rk3;
RegistryKey rk4;
rk3 = Registry.CurrentUser;
rk4 = rk.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run", true);
registdata = rk4.GetValue(name).ToString();
reginfo[0] = name;
reginfo[1] = registdata;
ListViewItem lvi = new ListViewItem(reginfo);
listView1.Items.Add(lvi);
}
}
private void Form1_Load(object sender, EventArgs e)
{
getMachineInfo();
getUserInfo();
}
private bool IsMachine(string name)
{
bool flag = false;
for (int i = 0; i < Machine.Length; i++)
{
if (Machine[i] == name)
{
flag = true;
}
}
return flag;
}
private bool IsUser(string name)
{
bool flag = false;
for (int i = 0; i <User.Length; i++)
{
if (User[i] == name)
{
flag = true;
}
}
return flag;
}
private void button1_Click(object sender, EventArgs e)
{
if (listView1.Items.Count > 0)
{
for (int i = 0; i < listView1.Items.Count; i++)
{
if (listView1.Items[i].Checked == true)
{
string name = listView1.Items[i].SubItems[0].Text;
if (IsMachine(name))
{
RegistryKey rk0;
RegistryKey rk00;
rk0 = Registry.LocalMachine;
rk00 = rk0.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run", true);
rk00.DeleteValue(name);
}
if (IsUser(name))
{
RegistryKey rk0;
RegistryKey rk00;
rk0 = Registry.CurrentUser;
rk00 = rk0.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run", true);
rk00.DeleteValue(name);
}
}
}
listView1.Items.Clear();
getMachineInfo();
getUserInfo();
}
}
private void button2_Click(object sender, EventArgs e)
{
Application.Exit();
}
}
partial class Form1
{
/// <summary>
/// 必需的設計器變量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的資源。
/// </summary>
/// <param name="disposing">如果應釋放托管資源,為 true;否則為 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗體設計器生成的代碼
/// <summary>
/// 設計器支持所需的方法 - 不要
/// 使用代碼編輯器修改此方法的內容。
/// </summary>
private void InitializeComponent()
{
this.listView1 = new System.Windows.Forms.ListView();
this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.button2 = new System.Windows.Forms.Button();
this.button1 = new System.Windows.Forms.Button();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.SuspendLayout();
//
// listView1
//
this.listView1.CheckBoxes = true;
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2});
this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.listView1.FullRowSelect = true;
this.listView1.GridLines = true;
this.listView1.Location = new System.Drawing.Point(0, 0);
this.listView1.Name = "listView1";
this.listView1.Size = new System.Drawing.Size(482, 210);
this.listView1.TabIndex = 0;
this.listView1.UseCompatibleStateImageBehavior = false;
this.listView1.View = System.Windows.Forms.View.Details;
//
// columnHeader1
//
this.columnHeader1.Text = "啟動項";
this.columnHeader1.Width = 147;
//
// columnHeader2
//
this.columnHeader2.Text = "說明";
this.columnHeader2.Width = 330;
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
this.splitContainer1.Name = "splitContainer1";
this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.listView1);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.button2);
this.splitContainer1.Panel2.Controls.Add(this.button1);
this.splitContainer1.Size = new System.Drawing.Size(482, 245);
this.splitContainer1.SplitterDistance = 210;
this.splitContainer1.SplitterWidth = 1;
this.splitContainer1.TabIndex = 2;
//
// button2
//
this.button2.Location = new System.Drawing.Point(252, 7);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(75, 23);
this.button2.TabIndex = 1;
this.button2.Text = "取消";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// button1
//
this.button1.Location = new System.Drawing.Point(141, 8);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 0;
this.button1.Text = "優化";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(482, 245);
this.Controls.Add(this.splitContainer1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "啟動項管理器(請勾選開機時不自動運行的項目)";
this.Load += new System.EventHandler(this.Form1_Load);
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
this.splitContainer1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListView listView1;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Button button1;
}
原文鏈接:https://blog.csdn.net/qq_27489007/article/details/128306251
相關推薦
- 2022-07-30 Hadoop中hdfs與yarn命令大全
- 2024-03-17 WSL子系統啟動報錯 Wsl/Service/CreateInstance/CreateVm/HCS
- 2022-12-05 Golang中的錯誤處理的示例詳解_Golang
- 2023-05-06 Python執行ping操作的簡單方法_python
- 2022-07-21 SpringBoot整合SpringCache詳解
- 2021-10-01 Linux里LVM磁盤擴容詳細步驟_Linux
- 2023-07-28 select 框添加樹結構(todu)
- 2023-11-11 【LaTex】如何輸入英文字母的花體字?花體字最全總結
- 最近更新
-
- window11 系統安裝 yarn
- 超詳細win安裝深度學習環境2025年最新版(
- Linux 中運行的top命令 怎么退出?
- MySQL 中decimal 的用法? 存儲小
- get 、set 、toString 方法的使
- @Resource和 @Autowired注解
- Java基礎操作-- 運算符,流程控制 Flo
- 1. Int 和Integer 的區別,Jav
- spring @retryable不生效的一種
- Spring Security之認證信息的處理
- Spring Security之認證過濾器
- Spring Security概述快速入門
- Spring Security之配置體系
- 【SpringBoot】SpringCache
- Spring Security之基于方法配置權
- redisson分布式鎖中waittime的設
- maven:解決release錯誤:Artif
- restTemplate使用總結
- Spring Security之安全異常處理
- MybatisPlus優雅實現加密?
- Spring ioc容器與Bean的生命周期。
- 【探索SpringCloud】服務發現-Nac
- Spring Security之基于HttpR
- Redis 底層數據結構-簡單動態字符串(SD
- arthas操作spring被代理目標對象命令
- Spring中的單例模式應用詳解
- 聊聊消息隊列,發送消息的4種方式
- bootspring第三方資源配置管理
- GIT同步修改后的遠程分支