I have a Selenium Grid configured with its hub and nodes(VMs) started automatically as Windows services. Sometimes I would like to visually inspect how a test runs within a browser on a specific node but nothing actually appears on the screen. After some research the reason seem to be that Windows services run in Session 0 which is a special session where Windows services run in isolation.
My question is whether there any way to start Windows service outside Session 0 so I will be able to see the actual test?
P.S. I am using Windows 7 on all machines.