Displaying a exe Window in a Unity scene

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?

No, not natively. You can try to find some kind of plugin / interface for the HyperV software that might provide an API to access the video stream that is produced by the HyperV application. Based on that you would need to implement a native plugin which can stream the video into Unity. Unity has a low level rendering API which can be used to somehow display such content. But your first and major problem is to actually get hold of the data and bring it into Unity.

So i don’t know if there is already a third party solution for this, so i would need to search as well. Unless someone knows a thirdparty solution for this, i doubt that you get a better answer than this. As for the Unity part of your question, it’s not supported natively.