Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: 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://twitter.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc

uVNC Install, Silent Deploy, AD -> GPO

Post Reply
leperaffinity
Posts: 2
Joined: 2017-02-09 22:56

uVNC Install, Silent Deploy, AD -> GPO

Post by leperaffinity »

Hey everyone,

I'm attempting to setup a shared folder on a network share in order to silently deploy uvnc using Active Directory Group Policy. The hardest part is trying to figure out how exactly I need to setup my batch file to pull the executable's with parameters.

In my attempts, I have made a folder (y:\uvnc) with mslogonacl.acl, ultravnc.inf, ultravnc.ini, ultravnc_setup.exe, and if needed, a uvnc.cer file. My batch file is the part I'm having trouble configuring.
  • REM Run install
    net use "y:\ultravnc_setup.exe" /verysilent /loadinf="d:\uvnc\uvncinstall.inf"
    REM Copy File from server and put into directory
    copy "y:\uvnc\ultravnc.ini" "C:\uvnc\ultravnc.ini"
    REM Run CMD
    net start WinVNC
    REM Run CMD
    winvnc -servicehelper
Objective: Silently deploy uVNC to multiple machines on a local domain from a shared network/server drive.
User avatar
Rudi De Vos
Admin & Developer
Admin & Developer
Posts: 6832
Joined: 2004-04-23 10:21
Contact:

Re: uVNC Install, Silent Deploy, AD -> GPO

Post by Rudi De Vos »

winvnc -install ( install service)
net start uvnc_service ( start service)
MSLogonACL /i /a file ( import acls from file)
leperaffinity
Posts: 2
Joined: 2017-02-09 22:56

Re: uVNC Install, Silent Deploy, AD -> GPO

Post by leperaffinity »

Thanks for the reply!

Would it be possible for you to write out an example batch that executes the 64-bit .msi file and the mslogonacl.acl?
Post Reply