{"id":1541,"date":"2015-02-05T19:26:30","date_gmt":"2015-02-05T19:26:30","guid":{"rendered":"http:\/\/microsoftgeek.com\/?p=1541"},"modified":"2015-02-05T19:26:52","modified_gmt":"2015-02-05T19:26:52","slug":"manage-full-access-permissions-on-mailboxes-in-exchange-2010","status":"publish","type":"post","link":"https:\/\/microsoftgeek.com\/?p=1541","title":{"rendered":"Manage full access permissions on mailboxes in Exchange 2010"},"content":{"rendered":"<h1 dir=\"ltr\">Manage full access permissions on mailboxes in Exchange 2010<\/h1>\n<p>&nbsp;<\/p>\n<p dir=\"ltr\">This is the updated version with a few additions and corrections based on both comments and new features added by Microsoft since my first post.<\/p>\n<h3 dir=\"ltr\">Grant permissions on a single mailbox<\/h3>\n<p dir=\"ltr\">Use the following command to grant access to just one mailbox:<\/p>\n<div dir=\"ltr\">\n<table>\n<colgroup>\n<col width=\"624\" \/><\/colgroup>\n<tbody>\n<tr>\n<td>\n<p dir=\"ltr\">Add-MailboxPermission -Identity &#8220;&#8221; -User &lt;UserorGroupIdentity&gt; -AccessRights Fullaccess -InheritanceType all<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<\/div>\n<p dir=\"ltr\">Note: the User parameter can in fact be either users or groups, the parameter name \u201cUser\u201d is a bit misleading!<\/p>\n<p dir=\"ltr\">Example:<\/p>\n<div dir=\"ltr\">\n<table>\n<colgroup>\n<col width=\"624\" \/><\/colgroup>\n<tbody>\n<tr>\n<td>\n<p dir=\"ltr\">Add-MailboxPermission -Identity &#8220;Test&#8221; -User Administrator -AccessRights Fullaccess -InheritanceType all<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p dir=\"ltr\"><img decoding=\"async\" title=\"FullAccess1\" alt=\"FullAccess1\" src=\"https:\/\/lh6.googleusercontent.com\/XKvWgDu_PGDVNzPNtwhn5fyPDhYOszhJ50voD1lOiFrb7dqRhOzrncNAESFpp9c-OejpJbaDAHueMxgXnCot6wIrtW0MGhpYVQc36MDGXfDhiBl65WIFW-a5_wWwle3uMf0\" width=\"624px;\" height=\"153px;\" \/><\/p>\n<p dir=\"ltr\">Or If I want to add the security Group Group2:<\/p>\n<p dir=\"ltr\"><a href=\"https:\/\/msundis.wordpress.com\/2011\/06\/21\/manage-full-access-permissions-on-mailboxes-in-exchange-2010\/#\">\u00a0<\/a><\/p>\n<div dir=\"ltr\">\n<table>\n<colgroup>\n<col width=\"624\" \/><\/colgroup>\n<tbody>\n<tr>\n<td>\n<p dir=\"ltr\">Add-MailboxPermission -Identity &#8220;Test&#8221; -User Group2 -AccessRights Fullaccess -InheritanceType all<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p dir=\"ltr\"><img decoding=\"async\" title=\"fullaccess01\" alt=\"fullaccess01\" src=\"https:\/\/lh5.googleusercontent.com\/jg0m6Og9LtkbOWceEXUvoJij_B67umqrUANHsgOcGt92cHpbS5ZwNoh7rLMbLLAsZARviEyjugYUpK8C5D6FnBjh4MGMSRjbnqipM5dYGEIkYtj4ZEQ8ImhCyfFi1_Ln0lU\" width=\"624px;\" height=\"111px;\" \/><\/p>\n<h3 dir=\"ltr\">Grant permissions on all mailboxes<\/h3>\n<p dir=\"ltr\">Use the following command to grant access to all mailboxes:<\/p>\n<div dir=\"ltr\">\n<table>\n<colgroup>\n<col width=\"624\" \/><\/colgroup>\n<tbody>\n<tr>\n<td>\n<p dir=\"ltr\">Get-Mailbox | Add-MailboxPermission -User &lt;UserorGroupIdentity&gt; -AccessRights Fullaccess -InheritanceType all<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p dir=\"ltr\">Example:<\/p>\n<div dir=\"ltr\">\n<table>\n<colgroup>\n<col width=\"624\" \/><\/colgroup>\n<tbody>\n<tr>\n<td>\n<p dir=\"ltr\">Get-Mailbox | Add-MailboxPermission -User Administrator -AccessRights Fullaccess -InheritanceType all<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p dir=\"ltr\">Note: In the screenshot below I received a message saying that Administrator already have access to the mailbox Test (Yellow text message).<\/p>\n<p dir=\"ltr\"><img decoding=\"async\" title=\"FullAccess2\" alt=\"FullAccess2\" src=\"https:\/\/lh3.googleusercontent.com\/6WDO5D1OhD30lKgMnA69FI54z8pBsvSPEtvYmWzMwjS9crm1YAJsbObiLLOIaHf87d01Q7U5hMBZZTyDpSDNLE8p__PEFPgWCUvDO5Zu0vQhs2IoEkCCQUUqqyBBHS9sFC4\" width=\"624px;\" height=\"185px;\" \/><\/p>\n<h3 dir=\"ltr\">Grant permissions on mailboxes using Where<\/h3>\n<p dir=\"ltr\">We might as well add a where to the command while we are at it. With this command we grant access to all mailboxes in a specific OU:<\/p>\n<div dir=\"ltr\">\n<table>\n<colgroup>\n<col width=\"624\" \/><\/colgroup>\n<tbody>\n<tr>\n<td>\n<p dir=\"ltr\">Get-Mailbox | Where { $_.OrganizationalUnit -eq \u201c\u201d } | Add-MailboxPermission -User &lt;UserorGroupIdentity&gt; -AccessRights Fullaccess -InheritanceType all<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p dir=\"ltr\">Example:<\/p>\n<div dir=\"ltr\">\n<table>\n<colgroup>\n<col width=\"624\" \/><\/colgroup>\n<tbody>\n<tr>\n<td>\n<p dir=\"ltr\">Get-Mailbox | Where { $_.OrganizationalUnit -eq \u201csundis.local\/Test\/Users\u201d } | Add-MailboxPermission -User Administrator -AccessRights Fullaccess -InheritanceType all<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p dir=\"ltr\"><img decoding=\"async\" title=\"FullAccess3\" alt=\"FullAccess3\" src=\"https:\/\/lh4.googleusercontent.com\/lcTagtS0af2PJy3gr7wzZ-V9dpaBjVzO9pr8BxyrX29VzDX7n2aGWwR_q1SjQwKlIWgymL5e225kS9gbs3OBT-MIhgCxZrjCvoXTatKHYyQcCNrWpnvjx9SHioSDqEQErZg\" width=\"624px;\" height=\"177px;\" \/><\/p>\n<h5 dir=\"ltr\"><\/h5>\n<h3 dir=\"ltr\">Remove permissions on a single mailbox<\/h3>\n<p dir=\"ltr\">Quite simple, just change Add to Remove:<\/p>\n<div dir=\"ltr\">\n<table>\n<colgroup>\n<col width=\"624\" \/><\/colgroup>\n<tbody>\n<tr>\n<td>\n<p dir=\"ltr\">Remove-MailboxPermission -Identity &#8220;&#8221; -User &lt;UserorGroupIdentity&gt; -AccessRights Fullaccess -InheritanceType all<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p dir=\"ltr\">Example:<\/p>\n<div dir=\"ltr\">\n<table>\n<colgroup>\n<col width=\"624\" \/><\/colgroup>\n<tbody>\n<tr>\n<td>\n<p dir=\"ltr\">Remove-MailboxPermission -Identity &#8220;Test&#8221; -User Administrator -AccessRights Fullaccess -InheritanceType all<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p dir=\"ltr\"><img decoding=\"async\" title=\"FullAccess4\" alt=\"FullAccess4\" src=\"https:\/\/lh5.googleusercontent.com\/t_42S_JXOT7X8242El6r8uReofI7z0speq05QnNPSXX-LvTnlu6g1YuNO4Gvy58P6wIBuuYYIDKnSXIpPGQJH2_uB1qzvKYdQ98oz38w4ZAG-yxbT7JcP2voCsYhXZnVW9w\" width=\"624px;\" height=\"125px;\" \/><\/p>\n<h3 dir=\"ltr\">Remove permissions on all mailboxes<\/h3>\n<p dir=\"ltr\">Well you have probably figured this one out already, but I will show it to you anyway:<\/p>\n<div dir=\"ltr\">\n<table>\n<colgroup>\n<col width=\"624\" \/><\/colgroup>\n<tbody>\n<tr>\n<td>\n<p dir=\"ltr\">Get-Mailbox | Remove-MailboxPermission -User &lt;UserorGroupIdentity&gt; -AccessRights Fullaccess -InheritanceType all<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p dir=\"ltr\">Example:<\/p>\n<div dir=\"ltr\">\n<table>\n<colgroup>\n<col width=\"624\" \/><\/colgroup>\n<tbody>\n<tr>\n<td>\n<p dir=\"ltr\">Get-Mailbox | Remove-MailboxPermission -User Administrator -AccessRights Fullaccess -InheritanceType all<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p dir=\"ltr\">Note: As you can se below, using this command will remove the users full access to its own mailbox. That is not good, this command should be used with care\u2026<\/p>\n<p dir=\"ltr\"><img decoding=\"async\" title=\"FullAccess5\" alt=\"FullAccess5\" src=\"https:\/\/lh4.googleusercontent.com\/6aaBLxRLVoSvA30j3595mINKSPeHj1xDogpgzA1npl5vo_8nbJkLUkcy-oF4vhIpeQB_EfPt3Ps0DVg8Caz2jGLDjzdjNgoyRUzY2rLLzeMyEXnMryYj7axdFJ9oY011vFk\" width=\"624px;\" height=\"135px;\" \/><\/p>\n<h3 dir=\"ltr\">How to configure the rights assignment to apply on new mailboxes automatically<\/h3>\n<p dir=\"ltr\">This can be done using one of three methods, you can add permissions using EMS or ADSIEdit.<\/p>\n<h4 dir=\"ltr\">Using EMS method 1 (recommended)<\/h4>\n<p dir=\"ltr\">With this method we grant permissions on the databases container in the configuration Naming context using the following PowerShell command:<\/p>\n<div dir=\"ltr\">\n<table>\n<colgroup>\n<col width=\"624\" \/><\/colgroup>\n<tbody>\n<tr>\n<td>\n<p dir=\"ltr\">Add-AdPermission -Identity \u201cCN=Databases,CN=Exchange Administrative Group (FYDIBOHF23SPDLT),CN=Administrative Groups,CN=First Organization,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=&lt;DomainName&gt;,DC=&lt;TopDomain&gt;\u201d -User &lt;UserorGroupIdentity&gt; -InheritedObjectType msExchPrivateMDB -AccessRights ExtendedRight -ExtendedRights Receive-As,Send-As -inheritanceType Descendents<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p dir=\"ltr\">If we brake this up a bit we can se that the Identity is in fact the Distinguished Name of the Databases container:<\/p>\n<div dir=\"ltr\">\n<table>\n<colgroup>\n<col width=\"624\" \/><\/colgroup>\n<tbody>\n<tr>\n<td>\n<p dir=\"ltr\">\u201cCN=Databases,CN=Exchange Administrative Group (FYDIBOHF23SPDLT),CN=Administrative Groups,CN=First Organization,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=&lt;DomainName&gt;,DC=&lt;TopDomain&gt;\u201d<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p dir=\"ltr\">The InheritedObjectType parameter specifies what kind of object inherits this access control entry, in this case it is only Exchange Mailbox Databases:<\/p>\n<div dir=\"ltr\">\n<table>\n<colgroup>\n<col width=\"624\" \/><\/colgroup>\n<tbody>\n<tr>\n<td>\n<p dir=\"ltr\">-InheritedObjectType msExchPrivateMDB<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p dir=\"ltr\">Then we grant Receive-As permissions. Granting Receive As and \u00a0Send As permission to a mailbox database, the user can log on to all mailboxes within that database, and send mail from those mailboxes:<\/p>\n<div dir=\"ltr\">\n<table>\n<colgroup>\n<col width=\"624\" \/><\/colgroup>\n<tbody>\n<tr>\n<td>\n<p dir=\"ltr\">-AccessRights ExtendedRight -ExtendedRights Receive-As,Send-As<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p dir=\"ltr\">And finally we set the inheritance type to Descendents:<\/p>\n<div dir=\"ltr\">\n<table>\n<colgroup>\n<col width=\"624\" \/><\/colgroup>\n<tbody>\n<tr>\n<td>\n<p dir=\"ltr\">-inheritanceType Descendents<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p dir=\"ltr\">Example:<\/p>\n<div dir=\"ltr\">\n<table>\n<colgroup>\n<col width=\"624\" \/><\/colgroup>\n<tbody>\n<tr>\n<td>\n<p dir=\"ltr\">Add-AdPermission -Identity \u201cCN=Databases,CN=Exchange Administrative Group (FYDIBOHF23SPDLT),CN=Administrative Groups,CN=First Organization,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=sundis,DC=local\u201d -User test8 -InheritedObjectType msExchPrivateMDB -AccessRights ExtendedRight -ExtendedRights Receive-As,Send-As<\/p>\n<p dir=\"ltr\">-inheritanceType Descendents<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p dir=\"ltr\"><img decoding=\"async\" title=\"fullaccess10\" alt=\"fullaccess10\" src=\"https:\/\/lh5.googleusercontent.com\/aiJsAV0ChKjWgUb7rgqiW90h0nvoozG3YQTvqUPDOW90ELfXkcus0ZQy7yS4RHpJgWhBBRbNbkgOfxpTBm8w01BlgSsFGQW173kQMbswkmyo824ypEBlgzod-77AXWh-2Io\" width=\"624px;\" height=\"140px;\" \/><\/p>\n<h4 dir=\"ltr\">Using EMS method 2<\/h4>\n<p dir=\"ltr\">With method two we use a pipe to set the permission on each mailbox database with the following command:<\/p>\n<div dir=\"ltr\">\n<table>\n<colgroup>\n<col width=\"624\" \/><\/colgroup>\n<tbody>\n<tr>\n<td>\n<p dir=\"ltr\">Get-Mailboxdatabase | Add-ADPermission -User &lt;UserorGroupIdentity&gt; -AccessRights ExtendedRight -ExtendedRights Receive-As,Send-As<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p dir=\"ltr\">Example:<\/p>\n<div dir=\"ltr\">\n<table>\n<colgroup>\n<col width=\"624\" \/><\/colgroup>\n<tbody>\n<tr>\n<td>\n<p dir=\"ltr\">Get-Mailboxdatabase | Add-ADPermission -User test3 -AccessRights ExtendedRight -ExtendedRights Receive-As,Send-As<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p dir=\"ltr\"><img decoding=\"async\" title=\"fullaccess03\" alt=\"fullaccess03\" src=\"https:\/\/lh3.googleusercontent.com\/VRRaXn1BuL98P17q2hguparcWCHOc8A3QVzz_tqWVAs5thUcMrEyWMw167qphvzdWRf65hVTkBaZzpq2A-0AoXKupNyuVNAiblOago1FDBA1OnPwg0sJbTiz2b_3_L4hdTE\" width=\"624px;\" height=\"125px;\" \/><\/p>\n<p dir=\"ltr\">Granting Receive As and Send As permission to a mailbox database, the user can log on to all mailboxes within that database, and send mail from those mailboxes.<\/p>\n<h4 dir=\"ltr\">Using ADSIEdit<\/h4>\n<p dir=\"ltr\">There are also the ADSIEdit way of addressing the problem. I will give you a description on what you need to do but I STRONGLY recommend you to have a look at Michaels post instead. That said, here you go\u2026<\/p>\n<p dir=\"ltr\">Open ADSIEdit, Right click ADSIEdit and choose Connect to.<\/p>\n<p dir=\"ltr\"><img decoding=\"async\" title=\"fullaccess02\" alt=\"fullaccess02\" src=\"https:\/\/lh5.googleusercontent.com\/dsrKaugbquDRNTzKC4TamQ2slbx4OIU7Y2aGBxlSQLZrPSImRztOGkh94rRvdok31wCp3IEQYW2estpk6fzqGPH32DfRAjQ21dlYIizSaBNbwihUAJbnaSlGtN4jkkq5--c\" width=\"624px;\" height=\"415px;\" \/><\/p>\n<p dir=\"ltr\">Select the Configuration Naming Context and click Ok.<\/p>\n<p dir=\"ltr\"><img decoding=\"async\" title=\"fullaccess04\" alt=\"fullaccess04\" src=\"https:\/\/lh3.googleusercontent.com\/7QDUnP-sUY2Uv4qeSwkhzWHz1_tJEfEhCeb43NgE4mpYO9xecI6_br3sbxD8G1hR76J8P5m4ooHnz_lCQSQVwypSC1rt5zwn5wMIM-tR1zXLLHvTia6S4hRcFy2wAzc4zM0\" width=\"432px;\" height=\"427px;\" \/><\/p>\n<p dir=\"ltr\">Navigate to Configuration\/Services\/Microsoft Exchange\/&lt;OrganisationName&gt;\/Administrative Groups\/Exchange Administrative Group (FYDIBOHF23SPDLT).<\/p>\n<p dir=\"ltr\"><img decoding=\"async\" title=\"fullaccess05\" alt=\"fullaccess05\" src=\"https:\/\/lh3.googleusercontent.com\/zIfwHC9xsb3hvHNB3ymMFODM3Yq073VYExiLcx9Fkl2NTZsCP81O6GMS9TOvpYARpDZ5F1z-Vt_wm6yk8PWsdWE3xRXi5udTpmC5JEn5I1QLldZXloQot7ATxCBKe2tA2kU\" width=\"624px;\" height=\"267px;\" \/><\/p>\n<p dir=\"ltr\">Right Click the Databases folder and choose Properties.<\/p>\n<p dir=\"ltr\"><img decoding=\"async\" title=\"fullaccess06\" alt=\"fullaccess06\" src=\"https:\/\/lh3.googleusercontent.com\/uNmClEs0DMPSGmPwVkp-3FkoZIiisOMJu41EiogU5Fw1VRv9x6EsXM18MiHtJwXUZ1oLiRhWLTPo2rBkAch7R3T43MBG49cmmICSgvJvwbQ-A6BF4RCYt_SdDAe19j6xur4\" width=\"624px;\" height=\"267px;\" \/><\/p>\n<p dir=\"ltr\">Click on the Security tab and click Add.<\/p>\n<p dir=\"ltr\"><img decoding=\"async\" title=\"fullaccess07\" alt=\"fullaccess07\" src=\"https:\/\/lh6.googleusercontent.com\/5MqvwxW5LhQyvGdsZY-oCnGo90rd1Cfjo6heGBHk_9ZmqmOXeZgB05D-RYcrcypMRS-7HVhtD4Sd7DveD8yFK4OQ-fL-sM1poD3lS8AqMje8sdTfI0jC1SD88uRRX2Tde8k\" width=\"432px;\" height=\"480px;\" \/><\/p>\n<p dir=\"ltr\">Enter the users or groups that you want to add and then click Ok.<\/p>\n<p dir=\"ltr\"><img decoding=\"async\" title=\"fullaccess08\" alt=\"fullaccess08\" src=\"https:\/\/lh5.googleusercontent.com\/mRCBHAJcAejh9GxjYoNOOmfsXDclsOCk5zu2hEshBX1BB2IYEsVhUNUukHZGPKEdXhtAbd96uAp2_FY7j4GAumOo3dEFRlC1ptxNu5TkwzIBF5PXfsg43-poVfSUwZrAWk8\" width=\"432px;\" height=\"233px;\" \/><\/p>\n<p dir=\"ltr\">Make sure that the added users or groups is selected, check the Allow box for Full control for each user or group, then click Ok to close the window and now we are finished with ADSIEdit.<\/p>\n<p dir=\"ltr\"><img decoding=\"async\" title=\"fullaccess09\" alt=\"fullaccess09\" src=\"https:\/\/lh3.googleusercontent.com\/Q5VJhszSoIdSCVSqlcfRpgjK7Y1VIR4SN7a1ZmItVgp6zuq3v_UBt_RPRMcIC4U0XRd0cuK3CyW3vnBEf2cPjrhHx0byKpcitj8nzsxscXP5TB-K9AE9tQ2Rvc43GvCI8Es\" width=\"432px;\" height=\"480px;\" \/><\/p>\n<p dir=\"ltr\">This adds permissions to all databases. If you want to edit the permissions for a specific database you can open theDatabases folder and open Properties for the database you want to configure.<\/p>\n<p dir=\"ltr\">A final note: Full Access or Receive As permissions are granted next time the Microsoft Exchange Information Store service caches the permissions and updates the cache. To grant the permissions immediately, stop and then restart the Microsoft Exchange Information Store service.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Manage full access permissions on mailboxes in Exchange 2010 &nbsp; This is the updated version with a few additions and corrections based on both comments and new features added by Microsoft since my first post. Grant permissions on a single mailbox Use the following command to grant access to just one mailbox: Add-MailboxPermission -Identity &#8220;&#8221; [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[22],"tags":[],"class_list":["post-1541","post","type-post","status-publish","format-standard","hentry","category-exchange-2010"],"_links":{"self":[{"href":"https:\/\/microsoftgeek.com\/index.php?rest_route=\/wp\/v2\/posts\/1541","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/microsoftgeek.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/microsoftgeek.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/microsoftgeek.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/microsoftgeek.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1541"}],"version-history":[{"count":3,"href":"https:\/\/microsoftgeek.com\/index.php?rest_route=\/wp\/v2\/posts\/1541\/revisions"}],"predecessor-version":[{"id":1544,"href":"https:\/\/microsoftgeek.com\/index.php?rest_route=\/wp\/v2\/posts\/1541\/revisions\/1544"}],"wp:attachment":[{"href":"https:\/\/microsoftgeek.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1541"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/microsoftgeek.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1541"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/microsoftgeek.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1541"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}