Hi,
I currently have this function.
public void StartAndDisplayAD(int WindowId)
{
try
{
Process myProcess = new Process();
myProcess.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
myProcess.StartInfo.CreateNoWindow = true;
myProcess.StartInfo.UseShellExecute = false;
myProcess.StartInfo.FileName = "C:\\Windows\\System32\\cmd.exe";
string path = "C:\\Users\\gerar\\Desktop\\RunVM.bat";
myProcess.StartInfo.Arguments = "/c" + path;
myProcess.EnableRaisingEvents = true;
myProcess.Start();
}
catch (Exception e)
{
print(e);
}
}
This bat file starts and connects to a Hyper V Virtual Machine window, Is it possible to render this view In Unity?