Symptoms
VNC session was created and switched to full screen mode.
The following window was omitted or set to "Do not show this message again":
When machine with SCCM Console is restarted, the VNC session is re-established.
Cause
This behavior is by design of Tight VNC and other VNC clients. Parallels Device Management is using TightVNC for establishing VNC sessions from SCCM Console.
It can be also found in the following path:
"C:\Program Files (x86)\Parallels\Parallels Device Management for Configuration Manager\tvnviewer.exe"
Resolution
1. Use key combination to exit full screen mode: Ctrl + Alt + Shift + F.
2. If for some reason combinations do not work, the tvnviewer.exe process can be killed from another Windows machine remotely:
NOTE: The full screen setting from the previous session will not pertain for the next one so killing the process allows stating windowed session next time.
CMD:
taskkill /s 111.111.111.111 /u domain\user /im tvnviewer.exe
Where 111.111.111.111 should be replaced with an IP address of the machine from where VNC (client) session was initiated.
And domain\user should be replaced with domain and user which started VNC session tvnviewer.exe process on the client machine.
Powershell:
$cred = Get-Credential;Get-WmiObject -computer 111.111.111.111 -class win32_process -filter "name = 'tvnviewer.exe'" -credential $cred| %{$_.terminate()} | out-null
Was this article helpful?
Tell us how we can improve it.