I am trying to open google chrome window on remote server through a webservice deployed on same server. The chrome is opening I can see process in Task Manager but unable to see the chrome window when I login.
Is it possible to see chrome window as well? I am using below code in the webservice.
public string openChrome()
{
Process.Start(@"chrome.exe");
return "Hello World";
}