{"id":579,"date":"2008-08-08T05:06:10","date_gmt":"2008-08-08T13:06:10","guid":{"rendered":"http:\/\/www.sapien.com\/blog\/?p=579"},"modified":"2008-08-08T05:06:10","modified_gmt":"2008-08-08T13:06:10","slug":"fine-tuning-set-casmailbox","status":"publish","type":"post","link":"https:\/\/dev.sapien.com\/blog\/2008\/08\/08\/fine-tuning-set-casmailbox\/","title":{"rendered":"Fine Tuning Set-CASMailbox"},"content":{"rendered":"<p>When you use the EMS cmdlet Set-CASMailbox to configure user-based segmentation for Outlook Web Access, you may already have noticed that even though you set the value of just one property to $False, by running a simple line like:<\/p>\n<p><em>Set-CASMailbox UserA -OWAChangePasswordEnabled:$False<\/em><\/p>\n<p>Exchange will set the value of all properties starting with OWA to $False, thereby disabling almost every feature of Outlook Web Access for that user or the users you selected to change.<\/p>\n<p>And yes, it&#8217;s the same when you run:<\/p>\n<p><em>Set-CASMailbox UserA -OWAChangePasswordEnabled:$True<\/em><\/p>\n<p>Exchange will enable the ability to change the password using OWA, but will disable all other features that weren&#8217;t explicitly enabled or disabled prior to running the cmdlet.<\/p>\n<p>There are quite a few easy ways to reset or undo the changes, but for me using the <a href=\"http:\/\/www.quest.com\/powershell\/activeroles-server.aspx\" target=\"_blank\"><em>ActiveRole Management Shell for Active Directory (Quest)<\/em><\/a> is the quickest way to change settings, since it allows you to change the value of the <em>msExchMailboxFolderSet<\/em> attribute of one or more users, which actually stores the segmentation settings for a mailbox-enabled user in AD. Depending on the features that are enabled and disabled, this attribute will have a different value. But these are the two which may help you out to reset the value of all OWA* properties for a user to True or to the default value of &lt;not set&gt;.<\/p>\n<p>To reset the value of the parameter to the default &lt;not set&gt;, just run the following line:<\/p>\n<p><em>Set-QADUser &#8216;&lt;domainname&gt;\/&lt;OU&gt;\/username&#8217; -objectattributes @{msExchMailboxFolderSet=$Null}<\/em><\/p>\n<p>To set the value of all properties (starting with OWA) to $True, just run the following:<\/p>\n<p><em>Set-QADUser &#8216;&lt;domainname&gt;\/&lt;OU&gt;\/username&#8217; -objectattributes @{msExchMailboxFolderSet=2147483647}<\/em><\/p>\n<p>So, for example, if you want to disable the ability of user A\u00a0to change\u00a0its passwords using OWA, I would run:<\/p>\n<p><em>Get-QADUser<\/em> <em>&#8216;&lt;domainname&gt;\/&lt;OU&gt;\/user A&#8217; <\/em>| <em>Set-QADUser -objectattributes @{msExchMailboxFolderSet=2147483647}<\/em><\/p>\n<p><em>Set-CASMailbox\u00a0 UserA -OWAChangePasswordEnabled:$False<\/em><\/p>\n<p>For other settings, create or use a test user, and see what the value is of the attribute msExchMailboxFolderSet, and you&#8217;re ready to change the setting for any amount of users at once \ud83d\ude42<\/p>\n<p><em>$testuser = Get-QADUser UserA<\/em><\/p>\n<p><em>$testuser.msExchMailboxFolderSet<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>When you use the EMS cmdlet Set-CASMailbox to configure user-based segmentation for Outlook Web Access, you may already have noticed that even though you set the value of just one property to $False, by running a simple line like<\/p>\n<p>Set-CASMailbox UserA -OWAChangePasswordEnabled:$False<\/p>\n<p>Exchange will set the value of all properties starting with OWA to $False, thereby disabling almost every feature of Outlook Web Access for that user or the users you selected to change. Exchange will enable the ability to change the password using OWA, but will disable all other features that weren&#8217;t explicitly enabled or disabled prior to running the cmdlet. There are quite a few easy ways to reset or undo the changes.<\/p>\n","protected":false},"author":6,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[160,25],"tags":[50,88,998,267,265,28,158,264,266],"class_list":["post-579","post","type-post","status-publish","format-standard","hentry","category-exchange-management-shell","category-windows-powershell","tag-exchange","tag-exchange-2007","tag-exchange-management-shell","tag-get-qaduser","tag-owa","tag-powershell","tag-quest","tag-set-casmailbox","tag-set-qaduser"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"When you use the EMS cmdlet Set-CASMailbox to configure user-based segmentation for Outlook Web Access, you may already have noticed that even though you set the value of just one property to $False, by running a simple line like Set-CASMailbox UserA -OWAChangePasswordEnabled:$False Exchange will set the value of all properties starting with OWA to $False, thereby disabling almost every feature of Outlook Web Access for that user or the users you selected to change. Exchange will enable the ability to change the password using OWA, but will disable all other features that weren&#039;t explicitly enabled or disabled prior to running the cmdlet. There are quite a few easy ways to reset or undo the changes.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"IlseVanCriekinge\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/dev.sapien.com\/blog\/2008\/08\/08\/fine-tuning-set-casmailbox\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"DEV SAPIEN Blog - Tools for IT Success\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Fine Tuning Set-CASMailbox - DEV SAPIEN Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"When you use the EMS cmdlet Set-CASMailbox to configure user-based segmentation for Outlook Web Access, you may already have noticed that even though you set the value of just one property to $False, by running a simple line like Set-CASMailbox UserA -OWAChangePasswordEnabled:$False Exchange will set the value of all properties starting with OWA to $False, thereby disabling almost every feature of Outlook Web Access for that user or the users you selected to change. Exchange will enable the ability to change the password using OWA, but will disable all other features that weren&#039;t explicitly enabled or disabled prior to running the cmdlet. There are quite a few easy ways to reset or undo the changes.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/dev.sapien.com\/blog\/2008\/08\/08\/fine-tuning-set-casmailbox\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2008-08-08T13:06:10+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2008-08-08T13:06:10+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Fine Tuning Set-CASMailbox - DEV SAPIEN Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"When you use the EMS cmdlet Set-CASMailbox to configure user-based segmentation for Outlook Web Access, you may already have noticed that even though you set the value of just one property to $False, by running a simple line like Set-CASMailbox UserA -OWAChangePasswordEnabled:$False Exchange will set the value of all properties starting with OWA to $False, thereby disabling almost every feature of Outlook Web Access for that user or the users you selected to change. Exchange will enable the ability to change the password using OWA, but will disable all other features that weren&#039;t explicitly enabled or disabled prior to running the cmdlet. There are quite a few easy ways to reset or undo the changes.\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2008\\\/08\\\/08\\\/fine-tuning-set-casmailbox\\\/#blogposting\",\"name\":\"Fine Tuning Set-CASMailbox - DEV SAPIEN Blog\",\"headline\":\"Fine Tuning Set-CASMailbox\",\"author\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/author\\\/ilsevancriekinge\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/#organization\"},\"datePublished\":\"2008-08-08T05:06:10-07:00\",\"dateModified\":\"2008-08-08T05:06:10-07:00\",\"inLanguage\":\"en-US\",\"commentCount\":3,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2008\\\/08\\\/08\\\/fine-tuning-set-casmailbox\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2008\\\/08\\\/08\\\/fine-tuning-set-casmailbox\\\/#webpage\"},\"articleSection\":\"Exchange Management Shell, Windows PowerShell, exchange, Exchange 2007, Exchange Management Shell, Get-QADUser, OWA, powershell, Quest, Set-CASMailbox, Set-QADUser\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2008\\\/08\\\/08\\\/fine-tuning-set-casmailbox\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/dev.sapien.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/topics\\\/windows-powershell\\\/#listItem\",\"name\":\"Windows PowerShell\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/topics\\\/windows-powershell\\\/#listItem\",\"position\":2,\"name\":\"Windows PowerShell\",\"item\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/topics\\\/windows-powershell\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2008\\\/08\\\/08\\\/fine-tuning-set-casmailbox\\\/#listItem\",\"name\":\"Fine Tuning Set-CASMailbox\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2008\\\/08\\\/08\\\/fine-tuning-set-casmailbox\\\/#listItem\",\"position\":3,\"name\":\"Fine Tuning Set-CASMailbox\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/topics\\\/windows-powershell\\\/#listItem\",\"name\":\"Windows PowerShell\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/#organization\",\"name\":\"DEV SAPIEN Blog\",\"description\":\"Tools for IT Success\",\"url\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/author\\\/ilsevancriekinge\\\/#author\",\"url\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/author\\\/ilsevancriekinge\\\/\",\"name\":\"IlseVanCriekinge\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2008\\\/08\\\/08\\\/fine-tuning-set-casmailbox\\\/#webpage\",\"url\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2008\\\/08\\\/08\\\/fine-tuning-set-casmailbox\\\/\",\"name\":\"Fine Tuning Set-CASMailbox - DEV SAPIEN Blog\",\"description\":\"When you use the EMS cmdlet Set-CASMailbox to configure user-based segmentation for Outlook Web Access, you may already have noticed that even though you set the value of just one property to $False, by running a simple line like Set-CASMailbox UserA -OWAChangePasswordEnabled:$False Exchange will set the value of all properties starting with OWA to $False, thereby disabling almost every feature of Outlook Web Access for that user or the users you selected to change. Exchange will enable the ability to change the password using OWA, but will disable all other features that weren't explicitly enabled or disabled prior to running the cmdlet. There are quite a few easy ways to reset or undo the changes.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2008\\\/08\\\/08\\\/fine-tuning-set-casmailbox\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/author\\\/ilsevancriekinge\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/author\\\/ilsevancriekinge\\\/#author\"},\"datePublished\":\"2008-08-08T05:06:10-07:00\",\"dateModified\":\"2008-08-08T05:06:10-07:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/\",\"name\":\"DEV SAPIEN Blog\",\"description\":\"Tools for IT Success\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Fine Tuning Set-CASMailbox - DEV SAPIEN Blog","description":"When you use the EMS cmdlet Set-CASMailbox to configure user-based segmentation for Outlook Web Access, you may already have noticed that even though you set the value of just one property to $False, by running a simple line like Set-CASMailbox UserA -OWAChangePasswordEnabled:$False Exchange will set the value of all properties starting with OWA to $False, thereby disabling almost every feature of Outlook Web Access for that user or the users you selected to change. Exchange will enable the ability to change the password using OWA, but will disable all other features that weren't explicitly enabled or disabled prior to running the cmdlet. There are quite a few easy ways to reset or undo the changes.","canonical_url":"https:\/\/dev.sapien.com\/blog\/2008\/08\/08\/fine-tuning-set-casmailbox\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/dev.sapien.com\/blog\/2008\/08\/08\/fine-tuning-set-casmailbox\/#blogposting","name":"Fine Tuning Set-CASMailbox - DEV SAPIEN Blog","headline":"Fine Tuning Set-CASMailbox","author":{"@id":"https:\/\/dev.sapien.com\/blog\/author\/ilsevancriekinge\/#author"},"publisher":{"@id":"https:\/\/dev.sapien.com\/blog\/#organization"},"datePublished":"2008-08-08T05:06:10-07:00","dateModified":"2008-08-08T05:06:10-07:00","inLanguage":"en-US","commentCount":3,"mainEntityOfPage":{"@id":"https:\/\/dev.sapien.com\/blog\/2008\/08\/08\/fine-tuning-set-casmailbox\/#webpage"},"isPartOf":{"@id":"https:\/\/dev.sapien.com\/blog\/2008\/08\/08\/fine-tuning-set-casmailbox\/#webpage"},"articleSection":"Exchange Management Shell, Windows PowerShell, exchange, Exchange 2007, Exchange Management Shell, Get-QADUser, OWA, powershell, Quest, Set-CASMailbox, Set-QADUser"},{"@type":"BreadcrumbList","@id":"https:\/\/dev.sapien.com\/blog\/2008\/08\/08\/fine-tuning-set-casmailbox\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/dev.sapien.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/dev.sapien.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/dev.sapien.com\/blog\/topics\/windows-powershell\/#listItem","name":"Windows PowerShell"}},{"@type":"ListItem","@id":"https:\/\/dev.sapien.com\/blog\/topics\/windows-powershell\/#listItem","position":2,"name":"Windows PowerShell","item":"https:\/\/dev.sapien.com\/blog\/topics\/windows-powershell\/","nextItem":{"@type":"ListItem","@id":"https:\/\/dev.sapien.com\/blog\/2008\/08\/08\/fine-tuning-set-casmailbox\/#listItem","name":"Fine Tuning Set-CASMailbox"},"previousItem":{"@type":"ListItem","@id":"https:\/\/dev.sapien.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/dev.sapien.com\/blog\/2008\/08\/08\/fine-tuning-set-casmailbox\/#listItem","position":3,"name":"Fine Tuning Set-CASMailbox","previousItem":{"@type":"ListItem","@id":"https:\/\/dev.sapien.com\/blog\/topics\/windows-powershell\/#listItem","name":"Windows PowerShell"}}]},{"@type":"Organization","@id":"https:\/\/dev.sapien.com\/blog\/#organization","name":"DEV SAPIEN Blog","description":"Tools for IT Success","url":"https:\/\/dev.sapien.com\/blog\/"},{"@type":"Person","@id":"https:\/\/dev.sapien.com\/blog\/author\/ilsevancriekinge\/#author","url":"https:\/\/dev.sapien.com\/blog\/author\/ilsevancriekinge\/","name":"IlseVanCriekinge"},{"@type":"WebPage","@id":"https:\/\/dev.sapien.com\/blog\/2008\/08\/08\/fine-tuning-set-casmailbox\/#webpage","url":"https:\/\/dev.sapien.com\/blog\/2008\/08\/08\/fine-tuning-set-casmailbox\/","name":"Fine Tuning Set-CASMailbox - DEV SAPIEN Blog","description":"When you use the EMS cmdlet Set-CASMailbox to configure user-based segmentation for Outlook Web Access, you may already have noticed that even though you set the value of just one property to $False, by running a simple line like Set-CASMailbox UserA -OWAChangePasswordEnabled:$False Exchange will set the value of all properties starting with OWA to $False, thereby disabling almost every feature of Outlook Web Access for that user or the users you selected to change. Exchange will enable the ability to change the password using OWA, but will disable all other features that weren't explicitly enabled or disabled prior to running the cmdlet. There are quite a few easy ways to reset or undo the changes.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/dev.sapien.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/dev.sapien.com\/blog\/2008\/08\/08\/fine-tuning-set-casmailbox\/#breadcrumblist"},"author":{"@id":"https:\/\/dev.sapien.com\/blog\/author\/ilsevancriekinge\/#author"},"creator":{"@id":"https:\/\/dev.sapien.com\/blog\/author\/ilsevancriekinge\/#author"},"datePublished":"2008-08-08T05:06:10-07:00","dateModified":"2008-08-08T05:06:10-07:00"},{"@type":"WebSite","@id":"https:\/\/dev.sapien.com\/blog\/#website","url":"https:\/\/dev.sapien.com\/blog\/","name":"DEV SAPIEN Blog","description":"Tools for IT Success","inLanguage":"en-US","publisher":{"@id":"https:\/\/dev.sapien.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"DEV SAPIEN Blog - Tools for IT Success","og:type":"article","og:title":"Fine Tuning Set-CASMailbox - DEV SAPIEN Blog","og:description":"When you use the EMS cmdlet Set-CASMailbox to configure user-based segmentation for Outlook Web Access, you may already have noticed that even though you set the value of just one property to $False, by running a simple line like Set-CASMailbox UserA -OWAChangePasswordEnabled:$False Exchange will set the value of all properties starting with OWA to $False, thereby disabling almost every feature of Outlook Web Access for that user or the users you selected to change. Exchange will enable the ability to change the password using OWA, but will disable all other features that weren't explicitly enabled or disabled prior to running the cmdlet. There are quite a few easy ways to reset or undo the changes.","og:url":"https:\/\/dev.sapien.com\/blog\/2008\/08\/08\/fine-tuning-set-casmailbox\/","article:published_time":"2008-08-08T13:06:10+00:00","article:modified_time":"2008-08-08T13:06:10+00:00","twitter:card":"summary_large_image","twitter:title":"Fine Tuning Set-CASMailbox - DEV SAPIEN Blog","twitter:description":"When you use the EMS cmdlet Set-CASMailbox to configure user-based segmentation for Outlook Web Access, you may already have noticed that even though you set the value of just one property to $False, by running a simple line like Set-CASMailbox UserA -OWAChangePasswordEnabled:$False Exchange will set the value of all properties starting with OWA to $False, thereby disabling almost every feature of Outlook Web Access for that user or the users you selected to change. Exchange will enable the ability to change the password using OWA, but will disable all other features that weren't explicitly enabled or disabled prior to running the cmdlet. There are quite a few easy ways to reset or undo the changes."},"aioseo_meta_data":{"post_id":"579","title":null,"description":null,"keywords":null,"keyphrases":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_custom_url":null,"og_image_custom_fields":null,"og_image_url":null,"og_image_width":null,"og_image_height":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_image_url":null,"twitter_title":null,"twitter_description":null,"schema_type":"default","schema_type_options":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null,"created":"2026-08-28 15:17:17","updated":"2026-08-28 15:17:17"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/dev.sapien.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/dev.sapien.com\/blog\/topics\/windows-powershell\/\" title=\"Windows PowerShell\">Windows PowerShell<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tFine Tuning Set-CASMailbox\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/dev.sapien.com\/blog"},{"label":"Windows PowerShell","link":"https:\/\/dev.sapien.com\/blog\/topics\/windows-powershell\/"},{"label":"Fine Tuning Set-CASMailbox","link":"https:\/\/dev.sapien.com\/blog\/2008\/08\/08\/fine-tuning-set-casmailbox\/"}],"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/posts\/579","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/comments?post=579"}],"version-history":[{"count":6,"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/posts\/579\/revisions"}],"predecessor-version":[{"id":585,"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/posts\/579\/revisions\/585"}],"wp:attachment":[{"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/media?parent=579"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/categories?post=579"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/tags?post=579"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}