Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: https://forum.uvnc.com/viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864

Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://x.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc

Search found 5 matches

by Shine
2008-02-08 22:03
Forum: Old messages
Topic: Terminate/Close/Shutdown/Kill Server by code
Replies: 8
Views: 5211

Re: Terminate/Close/Shutdown/Kill Server by code

hi,

thanks a lot.

Works fine.
by Shine
2008-02-07 21:47
Forum: Old messages
Topic: Terminate/Close/Shutdown/Kill Server by code
Replies: 8
Views: 5211

Re: Terminate/Close/Shutdown/Kill Server by code

Hi, if you execute "winvnc.exe -kill " you get this messagebox --------------------------- WinVNC Usage --------------------------- winvnc [-run] [-autoreconnect[ ID:????]] [-connect host[:display]] [-connect host[::port]] --------------------------- OK --------------------------- -kill is unknown ...
by Shine
2008-02-04 20:01
Forum: Old messages
Topic: Terminate/Close/Shutdown/Kill Server by code
Replies: 8
Views: 5211

Re: Terminate/Close/Shutdown/Kill Server by code

hi,

i kill'em like this

Code: Select all

// try to kill softly
if (!postmessage (hWnd, WM_Close,0,0)) { 
  // try the big hammer
  hProcess = OpenProcess (processId, TERMINATE | SYNCHRONIZE));
  TerminateProcess (hProcess);
  CloseHandle (hProcess);
}
Works fine.
by Shine
2008-02-02 11:30
Forum: Old messages
Topic: Terminate/Close/Shutdown/Kill Server by code
Replies: 8
Views: 5211

Re: Terminate/Close/Shutdown/Kill Server by code

hi,

thanks for your response.

if there is no way for a gracefull dead, then i use the pskill tool.
http://www.microsoft.com/germany/techne ... skill.mspx


taskkill is only available for XP and above (?).
by Shine
2008-02-01 21:05
Forum: Old messages
Topic: Terminate/Close/Shutdown/Kill Server by code
Replies: 8
Views: 5211

Terminate/Close/Shutdown/Kill Server by code

hi,

How do you gracefull shutdown the server (winvnc.exe) from an other application?

I would like to start/kill the server as an user-process from my own application.

Is there a way to kill the server by a special command/message (postmessage) or commandline argument?