30 March 2008

Part 3 - Hyper-V Remote Management: You do not have the requested permission to complete this task. Contact the administrator of the authorization policy for the computer ‘COMPUTERNAME’

Although I thought I’d finished at part two, after even more emails and comments on part one and two, it quickly became obvious to me that I need to round off the series by answering “But what if my server is a server core installation”. In server core, you have none of the “niceties” of most of the user interface.

This blog post is an alternate to part one, covering the case where the server is server core. Before going any further, make sure you have followed the steps in my previous post to enable the Hyper-V role on server core and enable remote management. Remote management is important for this walkthrough - you'll need it to complete the steps. 

Step 10 (On Client and Server)

This mirrors step 1 in part one. Make sure you are using a username and password which matches between the client and the server. For this walkthrough, I created an account with the username “john” with the same password on both machines. The “john” account is not an administrator on the server machine, but is an administrator on the client machine (for convenience). Enter the following command.

net user john * /add



Step 11 (On Server)

This step mirrors step 2 in part one. Enable the firewall rules on the server for WMI (Windows Management Instrumentation). Enter the following command:

netsh advfirewall firewall set rule group=”Windows Management Instrumentation (WMI)” new enable=yes

Make sure the command it successful and responds with Updated 4 rules(s). Ok.



Note: What you enter in quotes is just a name must match the group name defined in the Windows firewall itself. So if you are running a non-English language server, you will need to verify what group name this is.

Step 12 (On Server)

This step mirrors step 3 in part one. It grants appropriate DCOM (Distributed COM) permissions to the user(s) who are remotely connecting. In a full install of Windows Server 2008, this is (relatively) easy using dcomcnfg. Unfortunately, this is not available on server core. However, there is a built-in user group you can use which does the job just as well (in fact, although I haven’t tested it, this should work equally well on a full installation of Windows Server 2008).

You need to add the user account(s) or groups to the “Distributed COM Users” group. In my example, the server is named jhoward-hp2 and the local user account is john.

net localgroup “Distributed COM Users” /add jhoward-hp2\john.

 

Step 12B (On the remote management console/client)

[Edited 16th May 2008. This was step 15, but moved to before step 13]
Follow steps 5, 6 and 7 in part two. These are identical and must be done on the client machine. 

Step 13 (On Remote Management Machine)

This step mirrors 4 in part one and grants appropriate WMI permissions to the user(s) who are remotely connecting. You need grant access to two namespaces, and, as in step 3, you can add individual users, group(s) or the “Authenticated Users” group.

This is a little more challenging on server core as there is no computer management MMC. However, as I’ve already enabled remote management, I can do this from my remote management (Vista SP1) workstation. On that machine, I’m logged on with administrator credentials matching an account on the server machine.

Open Computer Management under Start/Administrative Tools. Right-click on the top most node, “Computer Management (Local Computer)”, and click “Connect to another computer …”



In the select computer dialog, enter the name of the remote server core machine and click OK. In my case, this is jhoward-hp2 (jhoward-hpu was the full installation). Then expand the tree down through Services and Applications\WMI Control and select WMI Control





Right-click on WMI Control and select properties. Then switch to the Security tab. Select the Root\CIMV2 namespace node.



IMPORTANT: You need to set the security twice. Once for the Root\CIMV2 namespace, and then again for the Root\virtualization namespace.

Click the Security button. If the appropriate user or group does not already appear, use “Add…” to add them. Note that when doing this remotely, you will be prompted for credentials. Make sure you entere the username as server\username as the default domain will be that of the client management machine







Now select the user and click the Advanced button below the “Permissions for <user>” area.



Make sure the user/group is selected and click Edit



You need to make three changes here. 

  • In the “Apply to:” drop-down, select “This namespace and subnamespaces”
  • In the Allow column, select Remote Enable
  • Check “Apply these permissions to objects and/or containers within this container only”

The screen should look like this. If so, click OK through the open dialogs.



Repeat for the Root\virtualization namespace



Click OK as appropriate to confirm all open dialogs and close Computer Management.

Step 14 (On Remote Management Machine)

This step mirrors step 5 in part one and configures the Authorization Manager (AZMan) policy for the server running the Hyper-V role. I am assuming in this walkthrough, you are using the in-box default policy and have not re-configured anything at this stage.

To make life a little easier, I’m first going to map a network drive on the remote management machine to the system drive on the machine running server core. In my case, the system drive is G.  At an elevated command prompt on the client, type the following (replacing G and jhoward-hp2 as appropriate)

net use * \\jhoward-hp2\g$



Open Authorization Manager by typing “azman.msc” in the box on the start menu.





Right-click on the Authorization Manager and choose Open Authorization Store from the context menu.



Make sure the “XML file” radio button is selected, and browse to the \ProgramData\Microsoft\Windows\Hyper-V directory on the mapped drive, select InitialStore.xml, then click OK.



I’m going to keep this walkthrough as simple (!) as possible, and making my “john” account an Administrator in the context of Hyper-V authorization policy. Expand the tree down through InitialStore.xml\Hyper-V services\Role Assignments\Administrator, and select Administrator.



In the area on the right, right-click and select “Assign Users and Groups” then “From Windows and Active Directory…”.



Note that you are prompted for appropriate administrative credentials. Make sure you enter the username as server\administrativeaccount again, to ensure the domain name is that of the server.

At this point, I would say to add the appropriate users or groups like I did in the full installation option. However, I hit a snag. For some reason, AZMan running remotely did not seem able to find the “john” account (or any other user account I created on the core installation) even though it was definitely there as you can see using Computer Management on the remote machine targeting the server.



The answer (I thought) was to create a new user group and add the “john” account to that group. However, that also failed. All was not lost. First thing to do was to report a bug. Next, was to come up with a backup plan. Now at this point, I apologise in advance - it's a really horrible workaround, and involves hand-editing InitialStore.xml

Let’s take a look at InitialStore.xml on the full installation I made in part one, particularly the section with “Name=Administrator”. In the first screenshot taken using Internet Explorer to open the XML file, you can see that the “john” account has been added, the second screenshot being without “john” being an administrator.





So it just is a question of finding and adding the appropriate user/group sid as member. How hard can that be? (OK, don't answer that quite yet!) Thanks to the scripting guy, it didn’t take long to get the answer. I created the script below, test.vbs, and ran it on the remote management machine using "cscript test.vbs". (Replace jhoward-hp2 in both places with your server name, and john with the appropriate user name. Also make sure there is no space between 'john', and Domain= in the penultimate line.)

strComputer = "."
Set objWMIService = _
   GetObject("winmgmts:\\jhoward-hp2\root\cimv2")
Set objAccount = objWMIService.Get _
 ("Win32_UserAccount.Name='john',Domain='jhoward-hp2'")
Wscript.Echo objAccount.SID



So now I had the account SID for the "john" account, I could use notepad to edit InitialStore.xml appropriately. I still had my network drive mapped. IMPORTANT: Take a backup copy of InitialStore.xml now!



Unfortunately, notepad is not the most easy to use editor for XML files. There are plenty of freeware XML editor out there, but I stuck with notepad, if for no more reason than to prove that this whole walkthrough can be done using inbox components. Here you can see I’ve added a new member tag on the bottom line – everything from <Member>S-1-5-21-602….. to the following </Member>



Just to make sure I hadn’t made a huge editing error, I used IE again to confirm



And yes, you can now close the Authorization Manager MMC if it is still open on the remote management machine!

Important. You must reboot your server for the above changes to take effect.

Step 15 (On the remote management console/client)
[Edited 16th May 2008. Moved this step to earlier as step 12B. Ignore step 15 if you did it earlier]

Follow steps 5, 6 and 7 in part two. These are identical and must be done on the client machine.

Step 16 (Away from the keyboard)

This mirrors step 8 in part two. Take a very deep breath and congratulate yourself. Open beer, have a party, whatever takes your fancy. To have got this far, you deserve it. Make sure you have followed all the steps to the letter, especially the bit about restarting the server.

Step 17 (On the client)

Logon as the account you have given permissions to (“john” in my walkthrough) on the client.

Start Hyper-V Manager from Administrative Tools on the Control Panel. Enter appropriate administrative credentials if UAC is enabled and the account is not an administrator on the client.

Click Connect to Server and enter the name of the remote machine, accepting the EULA if this is a pre-release version of Hyper-V.

Watch in even more awe than you did in part 2 as you get a screen like below ;) Here I’m managing jhoward-hpu which is the full installation, and jhoward-hp2 which is the server core installation. Wow! I need some time off!

Cheers,
John.

Comment Notification

If you would like to receive an email when updates are made to this post, please register here

Subscribe to this post's comments using RSS

Comments

# John Howard : Part 1 - Hyper-V Remote Management: You do not have the requested permission to complete this task. Contact the administrator of the authorization policy for the computer ???COMPUTERNAME??? said:

PingBack from http://blogs.technet.com/jhoward/archive/2008/03/28/part-1-hyper-v-remote-management-you-do-not-have-the-requested-permission-to-complete-this-task-contact-the-administrator-of-the-authorization-policy-for-the-computer-computername.aspx

30 March 08 at 8:56 PM
# Ryan said:

John,

Thank you for all the great information, however, I am still having problems. I am running Hyper-V on Server Core and I am trying to access it from a workstation running Vista SP1 with the Hyper-V console installed. Both computers are added to the same domain and both computer have my domain username added as a member of the local administrators group. I applied the Hyper-V RC0 update to the install.wim file, I then installed server core using the updated wim. I am getting the "don't have requested permission" error on my workstation. What is interesting is that the first time I opened the management console, it worked and I was able to configure my virtual switches. Now it won't let me change any settings. Any ideas?

Thanks,

Ryan Lenkersdorfer

31 March 08 at 11:39 PM
# jhoward said:

Hi Ryan. I'm in the process of setting up a private domain outside of the Microsoft corporate network to work through the same steps in a controlled domain scenario - the fairly complex corpnet enforced policies and IPSec make it difficult to track down issues without a private domain. It's unlikely I'll get my private network walkthrough finished before the end of the week, but I'll post up my results as soon as I can - I guess parts one two AND three weren't enough. I don't have any suggestions currently. Sorry!

Cheers,

John.

31 March 08 at 11:55 PM
# Dale Unroe said:

I too have experienced a difference between the first run of the Hyper-V mmc UI from my Vista managment and the subsequent runs.  Specifically I need to change the path to where the Virtual Hard Drives are to be stored and located; howver, I'm unable and am getting a message:

---------------------------

Remote File Browser

---------------------------

You may not browse the local file system when connecting to a remote Hyper-V server.

---------------------------

OK  

-------------------------

01 April 08 at 8:54 AM
# Dale Unroe said:

going through step 14 above - the \ProgramData directory (as part of the path to the InitialStore.xml) is apparently a Hidden directory as it isn't directly browsable.  I did a search and then copied the path; however, you can simple cut and paste the path from Step 14 instructions or type it out.

01 April 08 at 9:21 AM
# Alberto said:

Thanks John. I now have a Windows Server 2008 Core DC, a Windows server 2008 NAP, a windows Server 2003 exchange 2007 sp1 server all in the same Core Hyper-v black box.

A complete network for testing and funny.

I do hope this issues are RC0 related, though. I'll stay tuned to your blog.

You deserve a good italian pizza! :)

01 April 08 at 9:24 AM
# jhoward said:

@Ryan - no I have a test environment up and running, I'll try this and get back to you.

@Dale - am investigating. I saw this once too, but was not able to reproduce it or get a list of steps to make it happen.

@Alberto - Curry would be nicer :) (Although "American" curry takes a lot of getting used to after my "British" indian cuisine up-bringing). Glad you got it going.

Thanks,

John

01 April 08 at 10:29 PM
# HiltonT said:

Hi John,

I get to step 13 fine, however when I connect to the WMI Control, it connects fine, but the "Security" tab contains only the "Root" and no namespaces below this.

Any ideas why?

(Server is WS2K8 Ent Core with Hyper-V RC0 and guest is Vista x86 SP1 with RSAT and Hyper-V Management tools loaded.)

02 April 08 at 9:51 AM
# George said:

Thanks for the lesson. Everything you showed worked fine for me as far as you went, but when I go to add my first virtual machine I get an error that the Wizard cannot load because I do not have permission. Did I miss a step?

Actually I can move the error message box to one side and navigate the wizard, but when I hit finish it throws another permissions error and I am forced to acknowledge and close the wizard. Any thoughts?

Thanks again for getting me this far.

02 April 08 at 9:36 PM
# jhoward said:

George - if you can connect in the first place, then it sounds like you didn't setup the AZMan bit correctly. Can you run the script on the server core machine and confirm that under IE on the remote machine, the correct SID is in the administrator part like in the screenshot above.

Thanks,

John.

02 April 08 at 10:03 PM
# The things that are better left unspoken said:

Remote management of Server Core installations helps you. It prevents you from having to struggle with

03 April 08 at 5:32 AM
# George said:

As a matter of fact I ran the vbs script on the server in the first place.

After I edited the initial store XML file, I reimported it into AZMan (deleting the previous initial store entry).

When I look in AZMan at the "Administrator" role assignment I see my specified domain\username listed as a "user" type right under the "Administrators(BUILTIN\Administrators)" group.

I am conected to the hyperv server and see the "No virtual machines were found..." message. It just seems I am missing whatever permission is needed to create new VMs.

03 April 08 at 6:39 AM
# John Howard said:

So far, I’ve covered the following Hyper-V Remote Management scenarios: Workgroup: Vista client to remote

04 April 08 at 10:49 PM
# Tony said:

I have the same problem as HiltonT above, where I open the WMI Control Properties Security Tab and expanding the "Root" node displays nothing.  The "plus" sign button goes away and no child of "Root" ever appears.

All the steps leading up to that point were fine and I can connect via RDC and I can browse to the administrative shares in the file explorer.  I just can;t seem to get any of the "root" children.

Any ideas?  

11 April 08 at 2:38 AM
# jhoward said:

Ryan/Tony  (Hilton - already sent you an email).

Can both of you email me using the link at the top. This is not something we can reproduce in house, so I'd like to understand a bit more about the configuration.

- Verification of domain vlient to domain server (same domain), or combination of workgroup/domain, or workgroup-workgroup (same workgroup)

- x86 vs x64 client

- Whether the client was RTM Vista then upgraded to SP1 or a "slipstream" install.

- SKU (Business/Enterprise/Ultimate)

- Whether UAC is enabled (Server and client)

- Whether user is a local administrator (Server and client)

- Whether windows firewall is turned off or on (server and client)

- Whether there's any additional software installed on server or client (eg Antivirus)

- If domain joined, whether there could be group policy being pushed down to the firewall settings

If the firewall is currently on, one suggestion from a colleage to also try:

>>Can you try add

>> %windir%\System32\wbem\unsecapp.exe

>> into Firewall.cpl to unlock the app.

>> Then reconnect in the UI, it should work.

Thanks,

John.

11 April 08 at 7:32 PM
# jhoward said:

George - did you reboot the server after applying the AZMan changes?

Thanks,

John.

11 April 08 at 7:33 PM
# evan said:

Any update on nothing displayed below the root node?  I also am running into this.

15 April 08 at 8:14 PM
# evan said:

Since I also had the issue where only Root would show I just followed step 13 and applied it only to Root.  Was able to get it working! Not sure of the security implication, but I'm running it all privately anyway.   Thanks for the great info John.  Figuring out a problem like this wouldn't t have been possible a few years back.  You guys at Microsoft are doing a good job opening everything up.

15 April 08 at 10:14 PM
# jhoward said:

Evan - thanks for the feedback :)

Glad you got it going. We're still investigating and can't currently repro the problem in-house but working with a couple of people who have given us some great information to work on. I'll post up more info when we have a workaround and understand the problem.

Cheers,

John.

15 April 08 at 10:27 PM
# jhoward said:

For those that cannot expand the "root" note, in Tony's case, this was resolved by not having followed the instructions on the Vista machine to enable anonymous logon remote access in DCOM Security (step 15 above).

Thanks,

John.

24 April 08 at 5:42 PM
# peter said:

You might want to reoder the guide so step 15 is before step 13 if thats the fix to the empty root issue.

I followed step 15 and then the root wasn't empty but it also wouldn't expand so I just applied the right to the root as mentioned above.

Working great now thanks for the Guide!

Peter

26 April 08 at 3:55 PM
# Lance Fisher said:

Thanks!!!!

I would also suggest putting step 15 before step 13 in your guide :)

14 May 08 at 2:46 AM
# jhoward said:

Peter/Lance - finally got a chance to update it.

Thanks,

John.

16 May 08 at 1:32 PM

Leave a Comment

Comment Policy: No HTML allowed. URIs and line breaks are converted automatically. Your e–mail address will not show up on any public page.

(required) 
(optional)
(required) 
Page view tracker