You are using an unsupported browser. Please update your browser to the latest version on or before July 31, 2020.
close

04: How do I elevate MMC snap ins without granting administrative rights?

A standard user may not be able to run an MMC console without elevated rights. For instance, a standard user does not have the ability to start, stop or change the configuration within any service. This article will step through the process to create a policy to allow this and other items similar to this.

  1. Create a new GPO or edit an existing one
  2. Expand the PolicyPak node (user or computer policies may be used but general recommendations are to us users where possible) and select "Least Privilege Manager"
  3. Create a new "New Executable Policy"

  4. Select "Use combo rule (advanced)" and click NEXT

  5. Select "Apply command-line arguments", leaving everything else as-is and click NEXT

  6. Under Path Condition, click Add -> Add file ...

  7. In the Path field, type in "*\mmc.exe" (no "") and click OK

  8. Click on Command-line Arguments, select "Strict equality", under Arguments type in the exact path to services.msc ("C:\Windows\system32\services.msc") and click NEXT
     

  9. Ensure "Run with elevated privileges" is selected and click NEXT

  10. Name it according to your conventions (e.g. "Elevate Services.msc") and click FINISH

Note: Users will not acquire this new GPO until Group Policy is refreshed on the user's computer either through automatic or manual means.

TESTING:

To test this out, you can use the RUN command like this… and be sure to type in the EXACT command you’ve specified in step 8. Only then will elevation occur.

Additionally, you can test with a command prompt like what’s seen here. Again, the command has to match exactly.

Note if you attempt other avenues, like from the Start menu or alternate command lines, these will not work. An example like this… will not work because it is NOT the exact same command line.

In order to make this work, you need to specify a second policy with alternate approved command lines. For instance, you could do this which removes the requirement for c:\windows\system32\services.msc

The result would be that the shorter command line: mmc services.msc is accepted and runs elevated.

However, at no time would the shortest expression, of only “services.msc” work. The required MMC must appear before the command line.

  • 872
  • 21-Jun-2022
  • 5380 Views