public void RemountDevice()
 {
     foreach (var mp in _mountPoints)
     {
         Main.SendDebug("Mounting {0} to {1}", mp.VolumePath, mp.MountPath);
         NativeWin32.SetVolumeMountPoint(mp.MountPath, mp.VolumePath);
     }
 }