Hi All,
I have a number of PCs running older ultraVNC versions (1.0.9.5 and 1.2.24) in my environment. Need a way to automate the uninstall on all the PCs. Is there an MSI file for these I can deploy to install and uninstall using GPO. All advice and help are welcome, thanks in advance.
Celebrating the 22th anniversary of the UltraVNC: https://forum.uvnc.com/viewtopic.php?t=38031
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
- Bluesky/AT Protocol: https://bsky.app/profile/ultravnc.bsky.social
- 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
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
- Bluesky/AT Protocol: https://bsky.app/profile/ultravnc.bsky.social
- 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
Uninstall Script
- Rudi De Vos
- Admin & Developer
- Posts: 6882
- Joined: 2004-04-23 10:21
- Contact:
Re: Uninstall Script
If installed using the setupXX.exe, it's registered with an uninstaller.
You can uninstall it using the default windows app uninstaller
using cmd
you can use the wmic command
You can uninstall it using the default windows app uninstaller
using cmd
you can use the wmic command
Re: Uninstall Script
Hi Rudi,
Thanks, looking for something I can run on a few hundred PCs at once. Any suggestions?.
Thanks
Thanks, looking for something I can run on a few hundred PCs at once. Any suggestions?.
Thanks
- Rudi De Vos
- Admin & Developer
- Posts: 6882
- Joined: 2004-04-23 10:21
- Contact:
Re: Uninstall Script
How is it installed ?
msi/ setup_xxx.exe
OS pc ?
msi/ setup_xxx.exe
OS pc ?
Re: Uninstall Script
Thanks for your response.
It's installed using setup_xxx.exe
PCs are mostly windows 10.
It's installed using setup_xxx.exe
PCs are mostly windows 10.
- Rudi De Vos
- Admin & Developer
- Posts: 6882
- Joined: 2004-04-23 10:21
- Contact:
Re: Uninstall Script
This stop the service if needed
Usual you only have the 32 or 64 bit version, if default path is used
uninstall.bat
net stop uvnc_service
"C:\Program Files\uvnc bvba\UltraVNC\unins000.exe" /VERYSILENT
"C:\Program Files (x86)uvnc bvba\UltraVNC\unins000.exe" /VERYSILENT
Usual you only have the 32 or 64 bit version, if default path is used
uninstall.bat
net stop uvnc_service
"C:\Program Files\uvnc bvba\UltraVNC\unins000.exe" /VERYSILENT
"C:\Program Files (x86)uvnc bvba\UltraVNC\unins000.exe" /VERYSILENT
Re: Uninstall Script
Thanks Rudi. Will give it a try. Appreciate your responses.