解决方法
本机函数调用
AttachVirtualDisk
.
但是,如果你正在使用C#,就像你的标签所示,它可能更容易只是call out to PowerShell并使用它的包装函数Mount-DiskImage
using System.Management.Automation; namespace IsoMountTest { internal class Program { private static void Main(string[] args) { var isoPath = @"C:\Foo\bar.iso"; using (var ps = PowerShell.Create()) { ps.AddCommand("Mount-DiskImage").AddParameter("ImagePath",isoPath).Invoke(); } } } }