<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Exchange Archives - HackBuddies</title>
	<atom:link href="https://www.hackbuddies.com/category/exchange/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.hackbuddies.com/category/exchange/</link>
	<description>Solutions and optimizations for your daily IT issues and work</description>
	<lastBuildDate>Fri, 09 Aug 2019 07:05:22 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.hackbuddies.com/wp-content/uploads/2019/07/cropped-apple-icon-152x152-150x150.png</url>
	<title>Exchange Archives - HackBuddies</title>
	<link>https://www.hackbuddies.com/category/exchange/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Find users where Outlook Web Access (OWA) is disabled with Exchange Management Shell</title>
		<link>https://www.hackbuddies.com/find-users-where-outlook-web-access-owa-is-disabled-with-exchange-management-shell/</link>
					<comments>https://www.hackbuddies.com/find-users-where-outlook-web-access-owa-is-disabled-with-exchange-management-shell/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 06 Jul 2019 09:08:03 +0000</pubDate>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Featured]]></category>
		<guid isPermaLink="false">https://www.hackbuddies.com/?p=295</guid>

					<description><![CDATA[<p>By default all users are allowed to use Outlook Web Access, also called OWA. It is possible to disable access to OWA and the users can still access their mailbox via email clients like Outlook or Thunderbird. Manually checking the status or disabling it can be very time-consuming. So we will simply use the Exchange [&#8230;]</p>
<p>The post <a href="https://www.hackbuddies.com/find-users-where-outlook-web-access-owa-is-disabled-with-exchange-management-shell/">Find users where Outlook Web Access (OWA) is disabled with Exchange Management Shell</a> appeared first on <a href="https://www.hackbuddies.com">HackBuddies</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="td-paragraph-padding-1">
<p>By default all users are allowed to use Outlook Web Access, also called OWA. It is possible to disable access to OWA and the users can still access their mailbox via email clients like Outlook or Thunderbird.</p>
<p>Manually checking the status or disabling it can be very time-consuming. So we will simply use the Exchange Management Shell to do so.</p>
<p>If you want to see all users where Outlook Web Access is disabled, use this command:</p>
<pre>Get-CASMailbox -ResultSize Unlimited | where{$_.OWAEnabled -like "False"}</pre>
<p>Of course it is also possible to enable it with nearly the same command, but with the Set-CASMailbox command like that:</p>
<pre>Get-CASMailbox -ResultSize Unlimited | where{$_.OWAEnabled -like "False"} | Set-CASMailbox -OWAEnabled $true</pre>
<p>Filtering for one specific user works with the &#8220;Identity&#8221; parameter:</p>
<p><code data-author-content="Set-CasMailbox -Identity &quot;Yan Li&quot; -OWAEnabled $false
">Set-CasMailbox -Identity "Test User" -OWAEnabled $false<br>
</code></p>
<p>Another convenient and very useful way to use this command is by filtering for an organizational unit (OU).</p>
<pre class="has-inner-focus focus-visible" tabindex="0" data-focus-visible-added=""><code data-author-content="$NAFinance = Get-Mailbox -OrganizationalUnit &quot;OU=Marketing,OU=North America,DC=contoso,DC=com&quot; -Filter {RecipientTypeDetails -eq 'UserMailbox'} -ResultSize Unlimited; $NAFinance | foreach  {Set-CasMailbox  $_.Identity -OWAEnabled $false}
">$NAFinance = Get-Mailbox -OrganizationalUnit "OU=myBranch,OU=myCountry,DC=mydomain,DC=com" -Filter {RecipientTypeDetails -eq 'UserMailbox'} -ResultSize Unlimited; $NAFinance | foreach  {Set-CasMailbox  $_.Identity -OWAEnabled $false}
</code></pre>
</div>


<p></p>
<p>The post <a href="https://www.hackbuddies.com/find-users-where-outlook-web-access-owa-is-disabled-with-exchange-management-shell/">Find users where Outlook Web Access (OWA) is disabled with Exchange Management Shell</a> appeared first on <a href="https://www.hackbuddies.com">HackBuddies</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.hackbuddies.com/find-users-where-outlook-web-access-owa-is-disabled-with-exchange-management-shell/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
