C# 偵測登錄資料庫有無相關紀錄值

C# 偵測登錄資料庫有無相關紀錄值

C# 偵測登錄資料庫有無相關紀錄值


關鍵字:RegistryKey、OpenSubKey、GetValue

            RegistryKey loca = Registry.LocalMachine;
            RegistryKey run = loca.OpenSubKey(@”SOFTWARE\Microsoft\Windows\CurrentVersion\Run”);
            String pathString = (string)run.GetValue(“csbootrun”);
            if (pathString != null)
            {
                checkBox_Base1.Checked = true;
            }
            else
            {
                checkBox_Base1.Checked = false;
            }



 


發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *