如何使用 C# 备份 Windows 主引导记录? [关闭]

Posted

技术标签:

【中文标题】如何使用 C# 备份 Windows 主引导记录? [关闭]【英文标题】:How Do I Backup the Windows Master Boot Record with C#? [closed] 【发布时间】:2018-03-17 15:24:40 【问题描述】:

使用 C#,如何备份系统启动硬盘的 Windows 主启动记录?它用于防病毒引擎。

【问题讨论】:

【参考方案1】:
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;

namespace BackupMBR

    class Program
    

        [DllImport("kernel32")]
        private static extern IntPtr CreateFile(
           string lpFileName,
           uint dwDesiredAccess,
           uint dwShareMode,
           IntPtr lpSecurityAttributes,
           uint dwCreationDisposition,
           uint dwFlagsAndAttributes,
           IntPtr hTemplateFile);

        static void Main(string[] args)
        
            IntPtr handle = CreateFile(
                @"\\.\PHYSICALDRIVE0",
                0x80000000, 
                1, 
                IntPtr.Zero, 
                3, 
                0, 
                IntPtr.Zero
           );
            using (FileStream disk = new FileStream(handle, FileAccess.Read))
            
                byte[] mbrData = new byte[512];
                Console.WriteLine("Starting MBR Backup...");
                try
                
                    disk.Read(mbrData, 0, mbrData.Length);
                    FileStream mbrSave = new FileStream("mbr.img", FileMode.Create);
                    mbrSave.Write(mbrData, 0, mbrData.Length);
                    Console.WriteLine("MBR Backuped to mymbr.img success!");
                
                catch (Exception e)
                
                    Console.WriteLine(e.Message);
                
            

            Console.ReadKey();

        
    

【讨论】:

不错的清晰代码,但 GPT 呢? @DaveBurton 好点。我正在查看来自 Microsoft 的 this doc 以了解更多信息。

以上是关于如何使用 C# 备份 Windows 主引导记录? [关闭]的主要内容,如果未能解决你的问题,请参考以下文章

windows启动过程

不会安装WimESD格式系统的小伙伴请进来

如何在 C# 中检测 Windows 是通过 LAN 还是通过 WiFi 引导流量

MBR扇区故障修复

使用网络Ghost批量部署Windows Server 2008 R2

主引导记录MBR的结构和作用