Reply to thread

It's seems that adding :


[CODE=C#]          ps.AddCommand("Mount-DiskImage")

            .AddParameter("ImagePath", IsoFile)

            .AddParameter("PassThru")

            .AddCommand("Set-Volume").AddParameter("DriveLetter", "M");[/CODE]

And it works, the drive is set to M for testing and ISO seems to always mounted to M:


Top Bottom