111,097
社区成员




var isoPath = @"D:\333.iso";
using (var ps = PowerShell.Create())
{
ps.AddCommand("Mount-DiskImage").AddParameter("ImagePath", isoPath).Invoke();
}
可以通过PowerShell实现,载入iso并创建虚拟磁盘,不过win7上支持。