If you receive the error: Add-HybridRunbookWorker : Machine is already registered to different account
Simply delete the key under: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HybridRunbookWorker and try the command again.
Thanks go to Wayne Hoggett for pointing this out, this point reprints his.
Showing posts with label group. Show all posts
Showing posts with label group. Show all posts
Sunday, August 13, 2017
Friday, August 26, 2016
Unable to add multiple listen rule keys or subscriptions to a Topic in an Azure Service Bus in an Azure Resource Group template
I recently ran across a problem wherein I was unable to add multiple Listen rules for my applications to my Topics in Azure Service Bus within an Azure Resource Group Template. I would run my template and it would fail to create the keys for the Topic or the Subscription for the topic of there was more than one of either of those for the Topic. It wouldn't even be consistent: it would switch back and forth between them between runs of the template. After a discussion with one of the Solution Architects at Microsoft, I found out there is, at the time of this writing, a bug in the Azure Resource Manager for Topics within Service Buses that prevents Topic access rules and subscriptions from being simultaneously created. As a work around, I was instructed to introduce an artificial dependency between each of the subscriptions to force the resource manager to create them serially rather than in parallel and this did the trick.
For example:
// TODO:
For example:
// TODO:
Monday, January 18, 2016
Enabling manipulation of Azure Active Directory groups through Web Applications via the Azure Graph SDK
In your application(s) (plural if you're using a web / native application delegating to a Web Services API which is doing the actual work), you'll need to go into their pages in the Azure Active Directory management page. Once there, edit the permissions of the applications to include the following:
Under the delegated-to application:
Under the delegated-to application:
- Under "Application Permissions", select:
- Read and write domains
- Read and write directory data
- Read directory data
- Under "Delegated Permissions", select:
- Read and write directory data
- Read and write all groups
- Read all groups
- Access the directory as the signed-in user
- Read directory data
Under the top-level application:
- Under "Delegated permissions", select:
- Read and write directory data
- Read and write all groups
- Read all groups
- Access the directory as the signed-in user
- Read directory data
Wednesday, August 26, 2015
Enabling group membership claims in delegated tokens in Azure Active Directory
In your application manifest, add the following to the root object:
{
....
"groupMembershipClaims": "All",
....
}
{
....
"groupMembershipClaims": "All",
....
}
Subscribe to:
Posts (Atom)