After more 1 000 000 (one million) views on forum for 1.5.0.x development versions... and 1.6.0.0 version
A new stable version, UltraVNC 1.6.1.0 and UltraVNC SC 1.6.1.0 have been released: https://forum.uvnc.com/viewtopic.php?t=38080
Feedback is welcome
Celebrating the 22th anniversary of the UltraVNC (25th anniversary since the laying of the foundation stone): https://forum.uvnc.com/viewtopic.php?t=38031
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864
Forum password change request: https://forum.uvnc.com/viewtopic.php?t=38078
Development: UltraVNC development is always here... Any help is welcome.
A new development version, UltraVNC 1.6.3.0-dev has been released, please test it: https://forum.uvnc.com/viewtopic.php?t=38091
Feedback is welcome
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
A new stable version, UltraVNC 1.6.1.0 and UltraVNC SC 1.6.1.0 have been released: https://forum.uvnc.com/viewtopic.php?t=38080
Feedback is welcome
Celebrating the 22th anniversary of the UltraVNC (25th anniversary since the laying of the foundation stone): https://forum.uvnc.com/viewtopic.php?t=38031
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864
Forum password change request: https://forum.uvnc.com/viewtopic.php?t=38078
Development: UltraVNC development is always here... Any help is welcome.
A new development version, UltraVNC 1.6.3.0-dev has been released, please test it: https://forum.uvnc.com/viewtopic.php?t=38091
Feedback is welcome
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
MSlogon add group remotely
MSlogon add group remotely
Hi, is there any way I can add MSlogon access group remotely on users PC? I 've noticed the group is not added on most of the Win 7 64-bit machines, so I could add it remotely it would save me some time, but I cannot see where the group info is stored.
Re: MSlogon add group remotely
This information is only stored in the registry.
You can either modify the registry directly (which can be quite challenging depending on what is needed) or you can use the MSLogonACL.exe program to import the permissions based on a file that details them.
Here is a post I made detailing how to modify security via the MSLogonACL.exe program, although it's in the context of working with the local administrator account.
https://forum.ultravnc.net/viewtopic.ph ... 723#p93723
Here is another post of mine that provides some more information.
https://forum.ultravnc.net/viewtopic.ph ... 470#p93470
If you want to modify the registry directly, let me know and I'll regurgitate some of my code for you.
You can either modify the registry directly (which can be quite challenging depending on what is needed) or you can use the MSLogonACL.exe program to import the permissions based on a file that details them.
Here is a post I made detailing how to modify security via the MSLogonACL.exe program, although it's in the context of working with the local administrator account.
https://forum.ultravnc.net/viewtopic.ph ... 723#p93723
Here is another post of mine that provides some more information.
https://forum.ultravnc.net/viewtopic.ph ... 470#p93470
If you want to modify the registry directly, let me know and I'll regurgitate some of my code for you.
-Ben
Re: MSlogon add group remotely
Thanks for info!
I have tried Mslogon method and it's ok for me.
Here is what I do in case any one is interested:
First I copy permission files on target machine:
copy c:\Perms.txt "\\%ip%\C$\Program Files\UltraVNC"
then I connect to machine with psexec (you need to donload it first)
psexec \\%ip% cmd
Then I navigate to proper folder and execute
mslongonacl /i /o Perms.txt
So far works great
I have tried Mslogon method and it's ok for me.
Here is what I do in case any one is interested:
First I copy permission files on target machine:
copy c:\Perms.txt "\\%ip%\C$\Program Files\UltraVNC"
then I connect to machine with psexec (you need to donload it first)
psexec \\%ip% cmd
Then I navigate to proper folder and execute
mslongonacl /i /o Perms.txt
So far works great
Re: MSlogon add group remotely
HI,
Can this done via GPO?
AS
Can this done via GPO?
AS
Re: MSlogon add group remotely
Sure
GPOs can push registry settings directly or run scripts, which is what we are already doing here.
GPOs can push registry settings directly or run scripts, which is what we are already doing here.
-Ben