I'm trying to figure out what userrights or group membership would be necessary to allow normal built-in\users read-access to a remote server's certificate store via certmgr.msc (or "manage computer certificates"). As seen below, one of the users I had test from their laptop opened certmgr and selected "connect to another server", but then received "you do not have permissions to manage the certifcate store". The only thing I've seen is possibly adding registry permissions so they can query, but that was from a pretty old winsrv2012 article that was more towards using posh to query. I'd just prefer admins not have to stop and check server cert stores, since I'm not supposed to allow everyone RDP access.
Windows server 2019 - minimal permissions to allow certmgr.msc (local) to connect to server for read cert store access
30 Views Asked by QuilleyPowers At
1
There are 1 best solutions below
Related Questions in OPERATING-SYSTEM
- the end of the I/O operation is notified to the system by an interrupt.how much system time do the mentioned operations occupy?
- Problem on CPU scheduling algorithms in OS
- OS-wide text autocomplete service with popup
- mkssecreenshotmgr taking a screenshot
- How to prevent app from crashing on android emulator
- Is there a function to end a child process?
- Swapping a healthy and unallocated partition in Windows 10
- ubuntu OS : Why my battery is completely drained of in just 2 hours in suspend mode
- 1 filenames = [] 2 ----> 3 for file in os.zipfile('images.zip'):
- Worth it to access data by blocks on modern OS/hardware?
- How does outlook disable screenshot
- How can I enable my app to access a specific partition directory for reading and writing without showing popup to user?
- Exception of type 'System.Exception' was thrown. Error in Cosmos Project
- Maximum CPU Voltage reading
- Java: get username from uid
Related Questions in CERTIFICATE
- Create aws certification for domain
- How can I create a simple signed certificate for my Windows Forms .NET app in Visual Studio 2022
- Problem validating server certificate connecting to a Kafka cluster
- connecting to secure server from Java application without importing certificate to keystore
- Inside Windows 2016 : error message : "Caused by: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty"
- Visual Studio 2022 free certificate problem. "cannot import key file " how to fix
- How do I sign a powershell script with in-network server so that all clients can run script without changing execution policy?
- Mac Sonoma 14.4 Dotnet 8.0.203 SDK webapi https error
- CA certificate for .NET Maui
- Fiddler doesn't work because Chrome and Edge don't trust fiddler certificate
- openssl: try to load local ca store
- Authentication with SmartCard sending a SOAPUI request
- SSL/TLS certificate exchange/renewal needs private key of the old certificate in CSR
- Questions about p12 certificate and private key password
- ERROR: Could not install packages due to an OSError: Could not find a suitable TLS CA certificate bundle, invalid path: /path/to/cacert.pem
Related Questions in REMOTE-ACCESS
- on linux gitclone issue remote server error showing fatal error with proxy n port
- Speed up search of remote directories
- Can't remotely connect to my postgresql database on digitalocean
- Cannot connect on PostgreSQL From remote
- How to run a Python script hosted on a different server remotely from a Java application hosted on another server?
- Windows server 2019 - minimal permissions to allow certmgr.msc (local) to connect to server for read cert store access
- Is there any project that enables YouCompleteMe to connect to a ycmd running on a remote server?
- I am trying to connect to remote server using mysql workbench but i can't. I am using ubantu 22
- How to use neovim remote feature
- PyTorch RuntimeError
- Detect Zoom-Control in .NET 8 application
- Can't open webpage with live server using remote tunnel on a phone with different wifi
- How do I revoke access to a file remotely after it was downloaded by a website user
- How to read netcdf data from minio s3 server by xarray?
- Can't reach azure virtual machine with RDP Connection
Related Questions in WINDOWS-SERVER-2019
- Hosting ASP.NET MVC application on IIS web server using Windows 2019 server
- link href to website css does not work since upgrading to Windows Server 2019
- IIS PHP FastCGI 500 error when running with PHP 8.2 instead of PHP 7.4
- GPU is not detected in Tensorflow
- Windows server 2019 - minimal permissions to allow certmgr.msc (local) to connect to server for read cert store access
- IIS HTTP Error 500.19 - Internal server error . Error Code-0x80070003
- Why does Windows Filtering Platform apply ALE reauthorization for EVERY single incoming multicast UDP packet from same source?
- LDAP query, geto all user of a group
- The SSL connection could not be established on Windows Runner for Github
- Getting 404 / 500 errors deploying ASP.NET Core 5.0 Web API
- Issues with deploying ASP.NET Core 5.0 Web API
- how can i show "this pc" icon for all my domain users?
- uninstall dockerce/moby from windows server 2019
- Error deploying .NET Framework 4.8 project on Windows Server 2019: "targetFramework" attribute issue
- Addressing Resource Exhaustion and Connection Leakage in Python Monitoring Scripts
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?


Windows stores LocalMachine certificates in the registry, so your users need access to connect to the Remote Registry service, and the service must be running. By default, only Administrators and the Backup Operators group have permission.
To give access to other users:
HKLM:\SYSTEM\CurrentControlSet\Control\SecurePipeServers\winregIt looks like you can give
ReadKeyrights for read-only access.Also note that the windows cert store allows all users to read the public certificate information, but only Administrators and SYSTEM can read/export the private keys. This can be adjusted per-certificate in certlm.msc by right-click the cert > All Tasks > Manage Private Keys.