Note: This assumes you’ve already got the RSAT tools installed. RSAT for Windows 10
Building on my post here for Hyper-V manager:
You can use the same method to get Active Directory Users and Computers (ADUC) and DNS MMC admin consoles working if you’re logged in with your Microsoft account versus your domain account:
DNS shortcut:
C:\Windows\System32\runas.exe /savecred /user:domain\username "cmd /c Start /B %SystemRoot%\system32\mmc.exe %SystemRoot%\system32\dnsmgmt.msc""
Icon path:
%SystemRoot%\system32\dnsmgr.dll
ADUC shortcut:
C:\Windows\System32\runas.exe /savecred /user:domain\username "cmd /c Start /B %SystemRoot%\system32\dsa.msc""
Icon path:
%SystemRoot%\system32\dsadmin.dll
When you double-click, you’ll get prompted for the password (if you haven’t already) and also for UAC
DHCP is a little more involved as the RSAT doesn’t include the DHCP manager. NOTE: this is not currently supported by MS
- 1. copy dhcpmgmt.msc and dhcpsnap.dll.mui from %windir%\system32\system32\en-us on the 2012 server to the same location on the w10 pc
- copy dhcpsnap.dll from %windir%\system32\ on the 2012 server to the w10 pc
- From an admin cmd prompt run: regsvr32.exe dhcpsnap.dll
- Create the short-cut: C:\Windows\System32\runas.exe /savecred /user:domain\username “cmd /c Start /B %SystemRoot%\system32\mmc.exe %SystemRoot%\system32\dhcpmgmt.msc””
- Change Icon path: %SystemRoot%\System32\dhcpsnap.dll
You’ll need to manually add your DHCP server each time you run this. I haven’t found a way to save the config.
*This was done with Windows 10 Build 1511 and Windows Server 2012.
For additional snap-ins, just modify the last part of the short-cut with the correct mmc path for the add-in you want.