<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>MessagingBlogs</title>
	
	<link>http://www.messagingblogs.com</link>
	<description>Weblogs on Corporate Communications &amp; Mobile Trends</description>
	<lastBuildDate>Tue, 05 Mar 2013 03:49:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/messagingblogs" /><feedburner:info uri="messagingblogs" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>messagingblogs</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to Prevent Clickjacking or Cross Site Framing for Outlook Web Access</title>
		<link>http://feedproxy.google.com/~r/messagingblogs/~3/BAhz1dLkML0/</link>
		<comments>http://www.messagingblogs.com/2013/02/27/how-to-prevent-clickjacking-or-cross-site-framing-for-outlook-web-access/#comments</comments>
		<pubDate>Thu, 28 Feb 2013 03:48:06 +0000</pubDate>
		<dc:creator>Achinta Chatterjee</dc:creator>
				<category><![CDATA[Microsoft Exchange Server]]></category>

		<guid isPermaLink="false">http://www.messagingblogs.com/?p=1086</guid>
		<description><![CDATA[How to Prevent Cross Site Framing for Outlook Web Access Introduction The artcile discusses about cross site framing or clickjacking for your Outlook Web Access webpage and how to prevent it. It is possible to embed the Outlook Web Access...]]></description>
			<content:encoded><![CDATA[<p><strong>How to Prevent Cross Site Framing for Outlook Web Access</strong></p>
<p><strong>Introduction</strong></p>
<p>The artcile discusses about cross site framing or clickjacking for your Outlook Web Access webpage and how to prevent it. It is possible to embed the Outlook Web Access application pages into another application that does not belong to the same domain by inserting the application URL to an HTML iFrame tag. This may indicate that the application is vulnerable to cross-site framing or UI attacks.</p>
<p><strong>Issue</strong></p>
<p>When you use the following HTML code you will be able to embed the OWA webpage abc.com into another webpage as show below.</p>
<p style="MARGIN: 0cm 0cm 0pt 36pt">&lt;html&gt;</p>
<p style="MARGIN: 0cm 0cm 0pt 36pt">&lt;head&gt;&lt;b&gt;This is test Page&lt;/b&gt;&gt;&lt;/br&gt;&lt;/head&gt;</p>
<p style="MARGIN: 0cm 0cm 0pt 36pt">
<p style="MARGIN: 0cm 0cm 0pt 36pt">&lt;body&gt;</p>
<p style="MARGIN: 0cm 0cm 0pt 36pt">&lt;/br&gt;</p>
<p style="MARGIN: 0cm 0cm 0pt 36pt">&lt;iframe src=&#8221;https://abc.com/&#8221; width=&#8221;800&#8243; height=&#8221;600&#8243;&gt;&lt;/iframe&gt;</p>
<p style="MARGIN: 0cm 0cm 0pt 36pt">&lt;/body&gt;</p>
<p style="MARGIN: 0cm 0cm 0pt 36pt">
<p style="MARGIN: 0cm 0cm 0pt 36pt">&lt;/html&gt;</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2013/03/1.jpg" alt="1.JPG" height="716" width="982"/></p>
<p><strong>Resolution</strong></p>
<p>To prevent cross site framing of your OWA URL that is hosted on your CAS Server, you can implement some settings on the IIS Component. Below are the steps.</p>
<p>Open your CAS server IIS Manager.</p>
<p>1. On the IIS Manager browse to Sites &gt; Default Web Site&gt; HTTP Response Headers.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2013/03/2.jpg" alt="2.JPG" height="349" width="599"/></p>
<p>2. Click on Add</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2013/03/3.jpg" alt="3.JPG" height="422" width="761"/></p>
<p>4, On the Name field type X-Frame-Options , and on Value type SAMEORIGIN.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2013/03/4.jpg" alt="4.JPG" height="471" width="796"/></p>
<p>5. Below HTTP Response Header will be created.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2013/03/5.jpg" alt="5.JPG" height="351" width="629"/></p>
<p>6. You need to create such entries for each website in IIS Manager to prevent ClickJacking.</p>
<p>7. Restart IIS for the changes to take effect.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2013/03/6.jpg" alt="6.JPG" height="334" width="658"/></p>
<p><strong>Testing on Solution Implementation</strong></p>
<p>Open the website using the above HTML code should give the following result.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2013/03/7.jpg" alt="7.JPG" height="447" width="799"/></p>
<p><strong>Conclusion</strong></p>
<p>The above steps and settings will ensure that when your Outlook Web Access webpage is opened from an iframe it will prevent UI redressing attacks. Below link contains more information on Clickjacking<a href="http://en.wikipedia.org/wiki/Clickjacking">http://en.wikipedia.org/wiki/Clickjacking</a></p>



Share this Post


	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=How%20to%20Prevent%20Clickjacking%20or%20Cross%20Site%20Framing%20for%20Outlook%20Web%20Access%20-%20http%3A%2F%2Fwww.messagingblogs.com%2F2013%2F02%2F27%2Fhow-to-prevent-clickjacking-or-cross-site-framing-for-outlook-web-access%2F" title="Twitter"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.messagingblogs.com%2F2013%2F02%2F27%2Fhow-to-prevent-clickjacking-or-cross-site-framing-for-outlook-web-access%2F&amp;title=How%20to%20Prevent%20Clickjacking%20or%20Cross%20Site%20Framing%20for%20Outlook%20Web%20Access" title="Reddit"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.messagingblogs.com%2F2013%2F02%2F27%2Fhow-to-prevent-clickjacking-or-cross-site-framing-for-outlook-web-access%2F&amp;title=How%20to%20Prevent%20Clickjacking%20or%20Cross%20Site%20Framing%20for%20Outlook%20Web%20Access&amp;source=MessagingBlogs+Weblogs+on+Corporate+Communications+%26amp%3B+Mobile+Trends&amp;summary=How%20to%20Prevent%20Cross%20Site%20Framing%20for%20Outlook%20Web%20Access%20Introduction%20The%20artcile%20discusses%20about%20cross%20site%20framing%20or%20clickjacking%20for%20your%20Outlook%20Web%20Access%20webpage%20and%20how%20to%20prevent%20it.%20It%20is%20possible%20to%20embed%20the%20Outlook%20Web%20Access%20application" title="LinkedIn"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>


<br/><br/><img src="http://feeds.feedburner.com/~r/messagingblogs/~4/BAhz1dLkML0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.messagingblogs.com/2013/02/27/how-to-prevent-clickjacking-or-cross-site-framing-for-outlook-web-access/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.messagingblogs.com/2013/02/27/how-to-prevent-clickjacking-or-cross-site-framing-for-outlook-web-access/</feedburner:origLink></item>
		<item>
		<title>Exchange 2013 Mailflow Architecture</title>
		<link>http://feedproxy.google.com/~r/messagingblogs/~3/rTzXbHyLeSQ/</link>
		<comments>http://www.messagingblogs.com/2013/01/07/exchange-2013-mailflow-architecture/#comments</comments>
		<pubDate>Mon, 07 Jan 2013 08:54:37 +0000</pubDate>
		<dc:creator>Achinta Chatterjee</dc:creator>
				<category><![CDATA[Social Web]]></category>

		<guid isPermaLink="false">http://www.messagingblogs.com/?p=1075</guid>
		<description><![CDATA[The article below describes the new Exchange 2013 mailflow architecture. http://msexchangeguru.com/2012/08/09/e2013-mailflow/ Share this Post]]></description>
			<content:encoded><![CDATA[<p>The article below describes the new Exchange 2013 mailflow architecture.</p>
<p><a href="http://msexchangeguru.com/2012/08/09/e2013-mailflow/">http://msexchangeguru.com/2012/08/09/e2013-mailflow/</a></p>



Share this Post


	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Exchange%202013%20Mailflow%20Architecture%20-%20http%3A%2F%2Fwww.messagingblogs.com%2F2013%2F01%2F07%2Fexchange-2013-mailflow-architecture%2F" title="Twitter"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.messagingblogs.com%2F2013%2F01%2F07%2Fexchange-2013-mailflow-architecture%2F&amp;title=Exchange%202013%20Mailflow%20Architecture" title="Reddit"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.messagingblogs.com%2F2013%2F01%2F07%2Fexchange-2013-mailflow-architecture%2F&amp;title=Exchange%202013%20Mailflow%20Architecture&amp;source=MessagingBlogs+Weblogs+on+Corporate+Communications+%26amp%3B+Mobile+Trends&amp;summary=The%20article%20below%20describes%20the%20new%20Exchange%202013%20mailflow%20architecture.%20http%3A%2F%2Fmsexchangeguru.com%2F2012%2F08%2F09%2Fe2013-mailflow%2F" title="LinkedIn"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>


<br/><br/><img src="http://feeds.feedburner.com/~r/messagingblogs/~4/rTzXbHyLeSQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.messagingblogs.com/2013/01/07/exchange-2013-mailflow-architecture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.messagingblogs.com/2013/01/07/exchange-2013-mailflow-architecture/</feedburner:origLink></item>
		<item>
		<title>Deployment Considerations for Windows To Go</title>
		<link>http://feedproxy.google.com/~r/messagingblogs/~3/OsSK3O1UNJU/</link>
		<comments>http://www.messagingblogs.com/2012/12/23/deployment-considerations-for-windows-to-go/#comments</comments>
		<pubDate>Sun, 23 Dec 2012 08:45:29 +0000</pubDate>
		<dc:creator>msguy</dc:creator>
				<category><![CDATA[Social Web]]></category>

		<guid isPermaLink="false">http://www.messagingblogs.com/?p=1069</guid>
		<description><![CDATA[Deployment Considerations for Windows To Go From the start, Windows To Go was designed to minimize differences between the user experience of working on Windows 8 from a laptop and Windows To Go booted from a USB drive. Given that...]]></description>
			<content:encoded><![CDATA[<div class="topic">
<h1 class="title">Deployment Considerations for Windows To Go</h1>
<div id="mainSection">
<div id="mainBody">
<p>From the start, Windows To Go was designed to minimize differences between the user experience of working on Windows 8 from a laptop and Windows To Go booted from a USB drive. Given that Windows To Go was designed as an enterprise solution, extra consideration was given to the deployment workflows that enterprises already have in place. Additionally, there has been a focus on minimizing the number of differences in deployment between Windows To Go workspaces and laptop PCs. The following sections discuss the boot experience, deployment methods, and tools that you can use with Windows To Go.</p>
<ul>
<li class="unordered">Initial Boot Experiences <br/><br/></li>
<li class="unordered">Image deployment and drive provisioning considerations <br/><br/></li>
<li class="unordered">Application installation and domain join <br/><br/></li>
<li class="unordered">Management of Windows To Go using Group Policy <br/><br/></li>
<li class="unordered">Supporting booting from USB <br/><br/></li>
<li class="unordered">Roaming between different firmware types <br/><br/></li>
<li class="unordered">Configuring Windows To Go Startup Options <br/><br/></li>
<li class="unordered">Changing firmware settings <br/><br/></li>
</ul>
<div>
<div class="LW_CollapsibleArea_TitleDiv">
<div><span class="LW_CollapsibleArea_Title">Initial Boot Experiences</span>
<div class="LW_CollapsibleArea_HrDiv">
<hr class="LW_CollapsibleArea_Hr"/></div>
</p></div>
</p></div>
<div class="sectionblock">
<p>The following diagrams illustrate the two different methods you could use to provide Windows To Go drives to your users. The experiences differ depending on whether the user will be booting the device initially on-premises or off-premises:</p>
<p> <img xmlns="" src="http://i.technet.microsoft.com/dynimg/IC611721.gif" name="4e7dbea9-c2e2-47c2-91eb-e66eb4f2c743" title="Initial Boot On-Premises" height="412" width="443" alt="Initial Boot On-Premises" id="4e7dbea9-c2e2-47c2-91eb-e66eb4f2c743"/>
<p>When a Windows To Go workspace is first used at the workplace, the Windows To Go workspace can be joined to the domain through the normal procedures that occur when a new computer is introduced. It obtains a lease, applicable policies are applied and set, and user account tokens are placed appropriately. BitLocker protection can be applied and the BitLocker recovery key automatically stored in Active Directory Domain Services. The user can access network resources to install software and get access to data sources. When the workspace is subsequently booted at a different location either on or off premises, the configuration required for it to connect back to the work network using either Direct Access or a virtual private network connection can be configured. It is not necessary to configure the workspace for offline domain join. Direct Access can make connecting to organizational resources easier, but is not required.</p>
<p> <img xmlns="" src="http://i.technet.microsoft.com/dynimg/IC611722.gif" name="bb68377a-1906-40a9-bf0d-09c39015c48a" title="Initial Boot Off-Premises" height="241" width="569" alt="Initial Boot Off-Premises" id="bb68377a-1906-40a9-bf0d-09c39015c48a"/>
<p>When the Windows To Go workspace is going to be used first on an off-premises computer, such as one at the employee&#8217;s home, then the IT professional preparing the Windows To Go drives should configure the drive to be able to connect to organizational resources and to maintain the security of the workspace. In this situation, the Windows To Go workspace needs to be configured for offline domain join and BitLocker needs to be enabled before the workspace has been initialized.</p>
<div class="alert">
<table>
<tbody>
<tr>
<th align="left"><img xmlns="" src="http://i.technet.microsoft.com/dynimg/IC115537.gif" name="Tip" title="Tip" height="10" width="10" alt="Tip" id="Tip"/>Tip</th>
</tr>
<tr>
<td>Applying BitLocker Drive Encryption to the drives before provisioning is a much faster process than encrypting the drives after data has already been stored on them due to a new feature called used-disk space only encryption. For more information, see What&#8217;s New in BitLocker.</td>
</tr>
</tbody>
</table></div>
<p>DirectAccess can be used to ensure that the user can login with their domain credentials without needing a local account. For instructions on setting up a Direct Access solution, for a small pilot deployment see Deploy a Single Remote Access Server using the Getting Started Wizard for a larger scale deployment, see Deploy Remote Access in an Enterprise. If you do not want to use Direct Access as an alternative users could log on using a local user account on the Windows To Go workspace and then use a virtual private network for remote access to your organizational network.</p>
<div>
<div class="LW_CollapsibleArea_TitleDiv">
<div><span class="LW_CollapsibleArea_Title">Image deployment and drive provisioning considerations</span>
<div class="LW_CollapsibleArea_HrDiv">
<hr class="LW_CollapsibleArea_Hr"/></div>
</p></div>
</p></div>
<div class="sectionblock">
<p>The Image Deployment process can be accomplished either by a centralized IT process for your organization or by individual users creating their own Windows To Go workspaces. A user must have local administrator access and access to a Windows 8 Enterprise image to create a Windows To Go workspace or you must be using System Center Configuration Manager 2012 Service Pack 1 to distribute Windows To Go workspaces to users. The image deployment process takes a blank USB drive and a Windows 8 Enterprise image (WIM) and turns it into a Windows To Go drive.</p>
<p> <img xmlns="" src="http://i.technet.microsoft.com/dynimg/IC611723.gif" name="d509a7c8-9a2d-4294-9e4f-f992e0f03bdd" title="Windows To Go Image Deployment" height="38" width="498" alt="Windows To Go Image Deployment" id="d509a7c8-9a2d-4294-9e4f-f992e0f03bdd"/>
<p>The simplest way to provision a Windows To Go drive is to use the Windows To Go Creator. After a single Windows To Go workspace has been created, it can be duplicated as many times as necessary using widely available USB duplicator products as long as the device has not been booted. Once the Windows To Go drive is initialized, it should not be duplicated. Alternatively, Windows To Go Workspace Creator can be run multiple times to create multiple Windows To Go drives.</p>
<div class="alert">
<table>
<tbody>
<tr>
<th align="left"><img xmlns="" src="http://i.technet.microsoft.com/dynimg/IC115537.gif" name="Tip" title="Tip" height="10" width="10" alt="Tip" id="Tip"/>Tip</th>
</tr>
<tr>
<td>When you create your Windows To Go image use sysprep /generalize, just as you do when deploying Windows 8 to a standard PC. In fact, if appropriate, use the same image for both deployments. Windows 8 includes most of the drivers that you will need to support a wide variety of host computers. However, you will occasionally need to download drivers from Windows Update to take advantage of the full functionality of a device. If you are using Windows To Go on a set of known host computers, you can add any additional drivers to the image used on Windows To Go to make Windows To Go drives more quickly usable by your employees. Especially ensure that network drivers are available so that the user can connect to Windows Update to get additional drivers if necessary.</td>
</tr>
</tbody>
</table></div>
<div>
<div class="LW_CollapsibleArea_TitleDiv">
<div><span class="LW_CollapsibleArea_Title">Application installation and domain join</span>
<div class="LW_CollapsibleArea_HrDiv">
<hr class="LW_CollapsibleArea_Hr"/></div>
</p></div>
</p></div>
<div class="sectionblock">
<p>Unless you are using a customized Windows 8 image that includes unattended installation settings, the initial Windows To Go workspace will not be domain joined and will not contain applications. This is exactly like a new installation of Windows 8 on a desktop or laptop computer. When planning your deployment, you should develop methods to join Windows to Go drives to the domain and install the standard applications that users in your organization require. These methods probably will be similar to the ones used for setting up desktop and laptop computers with domain privileges and applications</p>
</p></div>
</p></div>
<div>
<div class="LW_CollapsibleArea_TitleDiv">
<div><span class="LW_CollapsibleArea_Title">Management of Windows To Go using Group Policy</span>
<div class="LW_CollapsibleArea_HrDiv">
<hr class="LW_CollapsibleArea_Hr"/></div>
</p></div>
</p></div>
<div class="sectionblock">
<p>In general, management of Windows To Go workspaces is same as that for desktop and laptop computers. There are Windows To Go specific Group Policy settings that should be considered as part of Windows To Go deployment. Windows To Go Group Policy settings are located at <code>\\Computer Configuration\Administrative Templates\Windows Components\Portable Operating System\</code> in the Local Group Policy Editor. The use of the Store on Windows To Go workspaces is also controlled by Group Policy. This policy setting is located at <code>\\Computer Configuration\Administrative Templates\Windows Components\Store\</code> in the Local Group Policy Editor. The policy settings have specific implications for Windows To Go that you should be aware of when planning your deployment:</p>
<p><strong>Settings for workspaces</strong></p>
<ul>
<li class="unordered"><strong>Allow hibernate (S4) when started from a Windows To Go workspace</strong> <br/><br/>This policy setting specifies whether the PC can use the hibernation sleep state (S4) when started from a Windows To Go workspace. By default, hibernation is disabled when using Windows To Go workspace, so enabling this setting explicitly turns this ability back on. When a computer enters hibernation, the contents of memory are written to disk. When the disk is resumed, it is important that the hardware attached to the system, as well as the disk itself, are unchanged. This is inherently incompatible with roaming between PC hosts. Hibernation should only be used when the Windows To Go workspace is not being used to roam between host PCs. <br/><br/>
<div class="alert">
<table>
<tbody>
<tr>
<th align="left"><img xmlns="" src="http://i.technet.microsoft.com/areas/global/content/clear.gif" name="Important" title="Important" height="1" width="1" id="Important" alt="Important" class="cl_IC160177"/>Important</th>
</tr>
<tr>
<td>For the host-PC to resume correctly when hibernation is enabled the Windows To Go workspace must continue to use the same USB port.</td>
</tr>
</tbody>
</table></div>
</li>
<li class="unordered"><strong>Disallow standby sleep states (S1-S3) when starting from a Windows To Go workspace</strong> <br/><br/>This policy setting specifies whether the PC can use standby sleep states (S1-S3) when started from a Windows To Go workspace. The Sleep state also presents a unique challenge to Windows To Go users. When a computer goes to sleep, it appears as if it is shut down. It could be very easy for a user to think that a Windows To Go workspace in sleep mode was actually shut down and they could remove the Windows To Go drive and take it home. Removing the Windows To Go drive in this scenario is equivalent to an unclean shutdown which may result in the loss of unsaved user data or the corruption on the drive. Moreover, if the user now boots the drive on another PC and brings it back to the first PC which still happens to be in the sleep state, it will lead to an arbitrary crash and eventually corruption of the drive and result in the workspace becoming unusable. If you enable this policy setting, the Windows To Go workspace cannot use the standby states to cause the PC to enter sleep mode. If you disable or do not configure this policy setting, the Windows To Go workspace can place the PC in sleep mode. <br/><br/></li>
<li class="unordered"><strong>Allow Store to install apps on Windows To Go workspaces</strong> <br/><br/>This policy setting allows or denies access to the Store application from the Windows To Go workspace. If you enable this setting, access to the Store application is allowed on the Windows To Go workspace. You should only enable this policy setting when the Windows To Go workspace will only be used with a single PC. When roaming Windows To Go devices to multiple PCs, installing applications from the Store is not a supported scenario. However, IT Pro side-loaded Windows Runtime-based line of business (LOB) apps can run in Windows To Go workspaces even when roamed between multiple PCs. If you disable or do not configure this policy setting, access to the Store application is denied on the Windows To Go workspace. <br/><br/></li>
</ul>
<p><strong>Settings for host PCs</strong></p>
<ol class="ordered">
<li><strong>Windows To Go Default Startup Options</strong> <br/><br/>This policy setting controls whether the host computer will boot to Windows To Go if a USB device containing a Windows To Go workspace is connected, and controls whether users can make changes using the <strong>Windows To Go Startup Options</strong> settings dialog. If you enable this policy setting, booting to Windows To Go when a USB device is connected will be enabled and users will not be able to make changes using the <strong>Windows To Go Startup Options</strong> settings dialog. If you disable this policy setting, booting to Windows To Go when a USB device is connected will not be enabled unless a user configures the option manually in the firmware. If you do not configure this policy setting, users who are members of the local Administrators group can enable or disable booting from USB using the <strong>Windows To Go Startup Options</strong> settings dialog. <br/><br/>
<div class="alert">
<table>
<tbody>
<tr>
<th align="left"><img xmlns="" src="http://i.technet.microsoft.com/areas/global/content/clear.gif" name="Important" title="Important" height="1" width="1" id="Important" alt="Important" class="cl_IC160177"/>Important</th>
</tr>
<tr>
<td>Enabling this policy setting will cause PCs running Windows 8 to attempt to boot from any USB device that is inserted into the PC before it is started.</td>
</tr>
</tbody>
</table></div>
</li>
</ol></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
<div>
<div class="LW_CollapsibleArea_TitleDiv">
<div><span class="LW_CollapsibleArea_Title">Supporting booting from USB</span>
<div class="LW_CollapsibleArea_HrDiv">
<hr class="LW_CollapsibleArea_Hr"/></div>
</p></div>
</p></div>
<div class="sectionblock">
<p>The biggest hurdle for a user wanting to use Windows To Go is configuring their computer to boot from USB. This is traditionally done by entering the firmware and configuring the appropriate boot order options. To ease the process of making the firmware modifications required for Windows To Go, Windows 8 includes a feature named <strong>Windows To Go Startup Options</strong> that allows a user to configure their computer to boot from USB from within Windows-without ever entering their firmware, as long as their firmware supports booting from USB.</p>
<div class="alert">
<table>
<tbody>
<tr>
<th align="left"><img xmlns="" src="http://i.technet.microsoft.com/areas/global/content/clear.gif" name="note" title="note" height="1" width="1" id="note" alt="note" class="cl_IC101471"/>Note</th>
</tr>
<tr>
<td>Enabling a system to always boot from USB first has implications that you should consider. For example, a USB device that includes malware could be booted inadvertently to compromise the system, or multiple USB drives could be plugged in to cause a boot conflict. For this reason, the Windows To Go startup options are disabled by default. In addition, administrator privileges are required to configure Windows To Go startup options.</td>
</tr>
</tbody>
</table></div>
<p>If you are going to be using a Windows 7 computer as a host-PC, see the wiki article Tips for configuring your BIOS settings to work with Windows To Go.</p>
<div>
<div class="LW_CollapsibleArea_TitleDiv">
<div><span class="LW_CollapsibleArea_Title">Roaming between different firmware types</span>
<div class="LW_CollapsibleArea_HrDiv">
<hr class="LW_CollapsibleArea_Hr"/></div>
</p></div>
</p></div>
<div class="sectionblock">
<p>Windows supports two types of PC firmware: Unified Extensible Firmware Interface (UEFI), which is the new standard, and legacy BIOS firmware, which was used in most PCs shipping with Windows 7 or earlier version of Windows. Each firmware type has completely different Windows boot components that are incompatible with each other. Beyond the different boot components, Windows supports different partition styles and layout requirements for each type of firmware as shown in the following diagrams.</p>
<p> <img xmlns="" src="http://i.technet.microsoft.com/dynimg/IC611724.gif" name="1f68475a-5e32-4c0b-810b-f4f51ae48236" title="BIOS Layout" height="138" width="506" alt="BIOS Layout" id="1f68475a-5e32-4c0b-810b-f4f51ae48236"/><img xmlns="" src="http://i.technet.microsoft.com/dynimg/IC611725.gif" name="3195e46e-a152-4dbf-bf5a-18094d3fd49c" title="UEFI Layout" height="138" width="506" alt="UEFI Layout" id="3195e46e-a152-4dbf-bf5a-18094d3fd49c"/>
<p>This presented a unique challenge for Windows To Go because the firmware type is not easily determined by end-users-a UEFI computer looks just like a legacy BIOS computer and Windows To Go must boot on both types of firmware.</p>
<p>To enable booting Windows To Go on both types of firmware, a new disk layout is provided for Windows 8 that contains both sets of boot components on a FAT32 system partition and a new command-line option was added to bcdboot.exe to support this configuration. The <strong>/f</strong> option is used with the <strong>bcdboot /s</strong> command to specify the firmware type of the target system partition by appending either <strong>UEFI</strong>, <strong>BIOS</strong> or <strong>ALL</strong>. When creating Windows To Go drives manually you must use the <strong>ALL</strong> parameter to provide the Windows To Go drive the ability to boot on both types of firmware. For example, on volume H: (your Windows To Go USB drive letter), you would use the command <strong>bcdboot C:\windows /s H: /f ALL</strong>. The following diagram illustrates the disk layout that results from that command:</p>
<p> <img xmlns="" src="http://i.technet.microsoft.com/dynimg/IC611726.gif" name="071a51c0-3fa5-4ddf-9ed6-db4d9c5e8085" title="Firmware Roaming Disk Layout" height="138" width="506" alt="Firmware Roaming Disk Layout" id="071a51c0-3fa5-4ddf-9ed6-db4d9c5e8085"/>
<p>This is the only supported disk configuration for Windows To Go. With this disk configuration, a single Windows To Go drive can be booted on computers with UEFI and legacy BIOS firmware.</p>
</p></div>
</p></div>
<div>
<div class="LW_CollapsibleArea_TitleDiv">
<div><span class="LW_CollapsibleArea_Title">Configuring Windows To Go Startup Options</span>
<div class="LW_CollapsibleArea_HrDiv">
<hr class="LW_CollapsibleArea_Hr"/></div>
</p></div>
</p></div>
<div class="sectionblock">
<p>Windows To Go Startup Options is a setting available on Windows 8 PCs that enables the computer to be booted from a USB without manually changing the firmware settings of the PC. To configure Windows To Go Startup Options you must have administrative rights on the computer and the <strong>Windows To Go Default Startup Options</strong> Group Policy setting must not be configured.</p>
<div>
<div class="LW_CollapsibleArea_TitleDiv">
<div><span class="LW_CollapsibleArea_Title">To configure Windows To Go Startup Options</span>
<div class="LW_CollapsibleArea_HrDiv">
<hr class="LW_CollapsibleArea_Hr"/></div>
</p></div>
</p></div>
<div class="sectionblock">
<ol class="ordered">
<li>
<p>On the <strong>Start</strong> screen, type, type <strong>Windows To Go Startup Options</strong>, click <strong>Settings</strong> and then press Enter.</p>
<p> <img xmlns="" src="http://i.technet.microsoft.com/dynimg/IC611914.gif" name="f35701bb-1c97-448f-9110-2534e04db3ef" title="Windows To Go Startup Options" height="407" width="500" alt="Windows To Go Startup Options" id="f35701bb-1c97-448f-9110-2534e04db3ef"/></li>
<li>
<p>Select <strong>Yes</strong> to enable the startup options.</p>
<div class="alert">
<table>
<tbody>
<tr>
<th align="left"><img xmlns="" src="http://i.technet.microsoft.com/dynimg/IC115537.gif" name="Tip" title="Tip" height="10" width="10" alt="Tip" id="Tip"/>Tip</th>
</tr>
<tr>
<td>If your computer is part of a domain, the Group Policy setting can be used to enable the startup options instead of the dialog.</td>
</tr>
</tbody>
</table></div>
</li>
<li>
<p>Click Save Changes. If the User Account Control dialog box is displayed, confirm that the action it displays is what you want, and then click Yes</p>
</li>
</ol></div>
</p></div>
</p></div>
</p></div>
<div>
<div class="LW_CollapsibleArea_TitleDiv">
<div><span class="LW_CollapsibleArea_Title">Changing firmware settings</span>
<div class="LW_CollapsibleArea_HrDiv">
<hr class="LW_CollapsibleArea_Hr"/></div>
</p></div>
</p></div>
<div class="sectionblock">
<p>If you choose to not use the Windows To Go Startup Options or are using a PC running Windows 7 as your host computer you will need to manually configure the firmware settings. The process used to accomplish this will depend on the firmware type and manufacturer. If your host computer is protected by BitLocker and running Windows 7 you should suspend BitLocker before making the change to the firmware settings. After the firmware settings have been successfully reconfigured, resume BitLocker protection. If you do not suspend BitLocker first, BitLocker will assume that the computer has been tampered with and will boot into BitLocker recovery mode.</p>
</p></div>
</p></div>
</p></div>
</p></div>
<div>
<div class="LW_CollapsibleArea_TitleDiv"/> </div>
</p></div>
</p></div>
</p></div>



Share this Post


	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Deployment%20Considerations%20for%20Windows%20To%20Go%20-%20http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F12%2F23%2Fdeployment-considerations-for-windows-to-go%2F" title="Twitter"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F12%2F23%2Fdeployment-considerations-for-windows-to-go%2F&amp;title=Deployment%20Considerations%20for%20Windows%20To%20Go" title="Reddit"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F12%2F23%2Fdeployment-considerations-for-windows-to-go%2F&amp;title=Deployment%20Considerations%20for%20Windows%20To%20Go&amp;source=MessagingBlogs+Weblogs+on+Corporate+Communications+%26amp%3B+Mobile+Trends&amp;summary=%20Deployment%20Considerations%20for%20Windows%20To%20Go%20%20%20From%20the%20start%2C%20Windows%20To%20Go%20was%20designed%20to%20minimize%20differences%20between%20the%20user%20experience%20of%20working%20on%20Windows%208%20from%20a%20laptop%20and%20Windows%20To%20Go%20booted%20from%20a%20USB%20drive.%20Given%20that%20Windows%20To%20Go%20wa" title="LinkedIn"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>


<br/><br/><img src="http://feeds.feedburner.com/~r/messagingblogs/~4/OsSK3O1UNJU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.messagingblogs.com/2012/12/23/deployment-considerations-for-windows-to-go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.messagingblogs.com/2012/12/23/deployment-considerations-for-windows-to-go/</feedburner:origLink></item>
		<item>
		<title>Disabling Junk Email Filtering in Exchange 2010</title>
		<link>http://feedproxy.google.com/~r/messagingblogs/~3/XLoZknobahM/</link>
		<comments>http://www.messagingblogs.com/2012/12/01/disabling-junk-email-filtering-in-exchange-2010/#comments</comments>
		<pubDate>Sat, 01 Dec 2012 13:36:34 +0000</pubDate>
		<dc:creator>Achinta Chatterjee</dc:creator>
				<category><![CDATA[Microsoft Exchange Server]]></category>

		<guid isPermaLink="false">http://www.messagingblogs.com/?p=1030</guid>
		<description><![CDATA[Introduction Classifying Junk email for many organizations is a crutial job for Email Managers. There are lot of solutions and products in the market to filter and tag incoming email as Spam before it reaches your Exchange servers. Exchange and...]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction</strong></p>
<p>Classifying Junk email for many organizations is a crutial job for Email Managers. There are lot of solutions and products in the market to filter and tag incoming email as Spam before it reaches your Exchange servers. Exchange and Outlook can work together to classify some emails as spam as well. This happens after the filtering has been done by the Internet Antispam servers.</p>
<p>However, this mechanism is not full proof and a lot of genuine emails can be categorized as spam and deposit in your Junk Email folder. For Outlook users this can be really frustrating as the email needing urgent attention can sit in the Junk Email folder unseen for days, resulting in loss of revenue for the organization.</p>
<p>As a result a lot of organization want to disable this feature of Junk Email filtering in Exchange 2010 so that all emails are deposited on the user&#8217;s Inbox and let the user decide which they want to categorize as Junk email.</p>
<p><strong>How to check Junk Email filtering in Exchange 2010</strong></p>
<p>Run the command on Exchange Management Shell to determine whether the mailbox has Junk Email filtering enabled.</p>
<p><strong>Get-MailboxJunkEmailConfiguration -identity &#8220;Mailbox Alias&#8221;</strong></p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/112.png" alt="1.PNG" height="325" width="662"/></p>
<p>As you can see the Enabled parameter is True. Which means Junk Email Filtering is enabled for the user.</p>
<p>When a Spam Email comes to the mailbox the feature will categorize the email according to the Sender Confidence Level (SCL) score.</p>
<p>The Sender Confidence Level (SCL) score will cause an email to be delivered to the Junk Email folder of a mailbox instead of the Inbox. SCL is scored from 0-9 with 9 being the most likely to be spam. By default the SCLJunkThreshold is set to 4.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/210.png" alt="2.PNG" height="121" width="688"/></p>
<p>There are also a series of SCL thresholds configured on the Content Filter Agent.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/35.png" alt="3.PNG" height="167" width="662"/></p>
<p>With the default settings shown above a spam message that scores an SCL higher than 7 will be rejected by the Transport server. A spam message that scores an SCL higher than 4 but not more than 7 will be sent to the mailbox Junk Email folder.</p>
<p><strong>How to disable Junk Email Filtering for Mailbox</strong></p>
<p>To disable Junk Email for individual Mailbox run the command below.</p>
<p><strong>Set-MailboxJunkEmailConfiguration -Identity &#8220;Mailbox Alias&#8221; -Enabled $false</strong></p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/42.png" alt="4.PNG" height="326" width="660"/></p>
<p>To verify you can use the <strong>Get-MailboxJunkEmailConfiguration</strong> command</p>
<p>Once this is disabled all Junk Categorized emails will be deposited in the user&#8217;s Inbox.</p>
<p><strong>UserControls and Block Sender in Outlook Client</strong></p>
<p>After these changes the user will want to block certain emails that come to the Inbox. The user will need to use &#8220;<strong>Block Sender</strong>&#8221; option from Outlook Cleint as shown below.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/52.png" alt="5.PNG" height="466" width="610"/></p>
<p>This is a way to let the user control the Junk Emails categorization and not to miss important emails that need urgent attention.</p>
<p><strong>Conclusion</strong></p>
<p>The article details how the administrator can let the user control Junk Email filtering from Outlook client rather than the Excahnge server decides on the Junk email catergorization.More information can be found in the link <a href="http://technet.microsoft.com/en-us/library/dd979780.aspx">http://technet.microsoft.com/en-us/library/dd979780.aspx</a></p>
<p><br/></p>



Share this Post


	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Disabling%20Junk%20Email%20Filtering%20in%20Exchange%202010%20-%20http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F12%2F01%2Fdisabling-junk-email-filtering-in-exchange-2010%2F" title="Twitter"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F12%2F01%2Fdisabling-junk-email-filtering-in-exchange-2010%2F&amp;title=Disabling%20Junk%20Email%20Filtering%20in%20Exchange%202010" title="Reddit"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F12%2F01%2Fdisabling-junk-email-filtering-in-exchange-2010%2F&amp;title=Disabling%20Junk%20Email%20Filtering%20in%20Exchange%202010&amp;source=MessagingBlogs+Weblogs+on+Corporate+Communications+%26amp%3B+Mobile+Trends&amp;summary=Introduction%20Classifying%20Junk%20email%20for%20many%20organizations%20is%20a%20crutial%20job%20for%20Email%20Managers.%20There%20are%20lot%20of%20solutions%20and%20products%20in%20the%20market%20to%20filter%20and%20tag%20incoming%20email%20as%20Spam%20before%20it%20reaches%20your%20Exchange%20servers.%20Exchange%20and%20Outlo" title="LinkedIn"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>


<br/><br/><img src="http://feeds.feedburner.com/~r/messagingblogs/~4/XLoZknobahM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.messagingblogs.com/2012/12/01/disabling-junk-email-filtering-in-exchange-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.messagingblogs.com/2012/12/01/disabling-junk-email-filtering-in-exchange-2010/</feedburner:origLink></item>
		<item>
		<title>Exchange 2013 Data Loss Prevention</title>
		<link>http://feedproxy.google.com/~r/messagingblogs/~3/GDBT4cXO6PY/</link>
		<comments>http://www.messagingblogs.com/2012/11/17/exchange-2013-data-loss-prevention/#comments</comments>
		<pubDate>Sun, 18 Nov 2012 04:09:37 +0000</pubDate>
		<dc:creator>Achinta Chatterjee</dc:creator>
				<category><![CDATA[Microsoft Exchange Server]]></category>

		<guid isPermaLink="false">http://www.messagingblogs.com/?p=1048</guid>
		<description><![CDATA[The article below and the 2 parts following it describes the Data Loss Prevention feature in exchange 2013. It goes through the new feature creation of policies etc. http://www.msexchange.org/articles_tutorials/exchange-server-2013/compliance-policies-archiving/exchange-2013-data-loss-prevention-part1.html Share this Post]]></description>
			<content:encoded><![CDATA[<p>The article below and the 2 parts following it describes the Data Loss Prevention feature in exchange 2013. It goes through the new feature creation of policies etc.</p>
<p><a href="http://www.msexchange.org/articles_tutorials/exchange-server-2013/compliance-policies-archiving/exchange-2013-data-loss-prevention-part1.html">http://www.msexchange.org/articles_tutorials/exchange-server-2013/compliance-policies-archiving/exchange-2013-data-loss-prevention-part1.html</a></p>



Share this Post


	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Exchange%202013%20Data%20Loss%20Prevention%20-%20http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F11%2F17%2Fexchange-2013-data-loss-prevention%2F" title="Twitter"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F11%2F17%2Fexchange-2013-data-loss-prevention%2F&amp;title=Exchange%202013%20Data%20Loss%20Prevention" title="Reddit"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F11%2F17%2Fexchange-2013-data-loss-prevention%2F&amp;title=Exchange%202013%20Data%20Loss%20Prevention&amp;source=MessagingBlogs+Weblogs+on+Corporate+Communications+%26amp%3B+Mobile+Trends&amp;summary=The%20article%20below%20and%20the%202%20parts%20following%20it%20describes%20the%20Data%20Loss%20Prevention%20feature%20in%20exchange%202013.%20It%20goes%20through%20the%20new%20feature%20creation%20of%20policies%20etc.%20http%3A%2F%2Fwww.msexchange.org%2Farticles_tutorials%2Fexchange-server-2013%2Fcompliance-policie" title="LinkedIn"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>


<br/><br/><img src="http://feeds.feedburner.com/~r/messagingblogs/~4/GDBT4cXO6PY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.messagingblogs.com/2012/11/17/exchange-2013-data-loss-prevention/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.messagingblogs.com/2012/11/17/exchange-2013-data-loss-prevention/</feedburner:origLink></item>
		<item>
		<title>Do not disturb: The best new feature in iOS 6</title>
		<link>http://feedproxy.google.com/~r/messagingblogs/~3/CowlDDWrBXs/</link>
		<comments>http://www.messagingblogs.com/2012/11/14/do-not-disturb-the-best-new-feature-in-ios-6/#comments</comments>
		<pubDate>Wed, 14 Nov 2012 10:07:34 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://www.messagingblogs.com/?p=1022</guid>
		<description><![CDATA[You&#8217;ve likely heard about the problems with Apple&#8217;s new mapping application in the iPhone 5 and iOS 6, the company&#8217;s mobile operating system. But despite that uncharacteristic black mark, the new iPhone platform is a winner, packed with a number...]]></description>
			<content:encoded><![CDATA[<p>You&#8217;ve likely heard about the problems with Apple&#8217;s new mapping application in the iPhone 5 and iOS 6, the company&#8217;s mobile operating system. But despite that uncharacteristic black mark, the new iPhone platform is a winner, packed with a number of incremental improvements. Without a doubt, one feature stands out: The &#8220;do not disturb&#8221; mode.</p>
<p>Indeed, that new feature is reason enough to upgrade, if you haven&#8217;t already &#8212; and if you did upgrade, be sure to check it out. When you turn on &#8220;do not disturb&#8221; (which you do in Settings), your phone suppresses most forms of communication &#8212; phone calls, text messages, even Facebook and Twitter notifications. <br/></p>
<p>The effect: When enabled, your phone won&#8217;t light up or vibrate at all, so you can get through a meeting or go to bed without being disturbed by the outside world. But all of those notifications get captured and appear in the Notification Center when you turn on your phone&#8217;s display.</p>
<p>You can configure &#8220;Do not disturb&#8221; to do its thing on a schedule, or you can simply turn it on and off as needed. You can also specify certain favorite contacts &#8212; called VIPs &#8212; who can get through to you even if your phone is in &#8220;do not disturb&#8221; mode. (Email from VIPs also get special treatment thanks to their own inbox.) <br/></p>
<p>All that is great, but there&#8217;s a new, related option. When a call comes in, you can choose to answer or ignore it, as usual, or you can immediately reply with a text message. You can also ask your iPhone to remind you about the call later &#8212; either at a specific timer, or when you leave your current location (as measured by your phone&#8217;s GPS).</p>
<p>Of all the great new features in the recently released iOS 6, my favorite has to be <em><strong>Do Not Disturb</strong></em>. It provides dual functionality. First, it lets you silence &#8211; on demand &#8211; all calls, alerts, and notifications. Secondly, it lets you establish a time period when you do not want to be disturbed so that you and others (like my wife and goldfish)…well, won&#8217;t be disturbed.</p>
<p>A very small number of apps incorporate this feature internally, but now it&#8217;s available as part of iOS. Let&#8217;s examine how to enable and use the new Do Not Disturb feature in iOS 6 installed on your iPhone, iPad and iPod touch.</p>
<p>First, a caveat for you: <em>The Do Not Disturb feature does not silence an alarm set in Apple&#8217;s Clock app!</em> This is actually a desirable feature, but be aware of it.</p>
<p>To enable Do Not Disturb, tap <strong>Settings</strong>. You will find the new Do Not Disturb control near the top. This is pretty straightforward. When the switch is set to ON, <em>and the device is locked,</em> all sound alerts, vibrations, phone rings, LED alerts, and screen wake with alerts are all disabled. Simply put, your device will do nothing to disturb your peace.</p>
<p class="cimage"><img src="http://www.macobserver.com/imgs/tmo_articles/20121102-02-DoNotDisturb.jpg" style="WIDTH: 320px; HEIGHT: 332px" height="332px" alt="The Settings pane showing the Do Not Disturb control." width="320px"/></p>
<p class="cimage">The new Do Not Disturb control is located in Settings.</p>
<p>There are two exceptions. The first, as mentioned before, an alarm set via Apple&#8217;s Clock <strong>will</strong> go off. Also, there are settings that will allow certain incoming calls to ring. I&#8217;ll cover this aspect shortly.</p>
<p>Now, let&#8217;s look at your other options. Just below the Do Not Disturb control, tap <strong>Notifications</strong>. This puts you into the Notifications Center. Next, tap on <strong>Do Not Disturb</strong> to take you to that feature&#8217;s settings pane.</p>
<p class="cimage"><img src="http://www.macobserver.com/imgs/tmo_articles/20121102-03-DoNotDisturb.jpg" style="WIDTH: 600px; HEIGHT: 524px" height="524px" alt="The Notifications Panel leads to additional Do Not Disturb settings." width="600px"/></p>
<p class="cimage">The Notifications Panel leads to additional Do Not Disturb settings.</p>
<p>There are three settings you can configure here.</p>
<p>First, tapping on the <em><strong>Scheduled</strong></em> on/off switch will allow you to set a range of time when you do not wish to be disturbed-all calls and alerts are silenced. Incoming calls are sent to voicemail. Notifications will accumulate, without activating the screen, for you to peruse later. In the illustration, you can see that my quiet hours are between 12:30 AM and 6:30 AM.</p>
<p>Next, there is a control called <em><strong>Allow Calls From</strong></em> where you can choose between &#8220;Everyone,&#8221; &#8220;No One,&#8221; or &#8220;Favorites.&#8221; You also have the option of allowing calls only from any of your contacts, or only from members of specific groups configured in your <em>Contacts</em> app.</p>
<p>This means that you can create a special group of contacts for the purpose of allowing their calls through during the Do Not Disturb period. The <em><strong>Favorites</strong></em> listed in the top section refers to the Favorites list of contacts that you configure in the <em>Phone</em> app.</p>
<p>You may be wondering how things differ on the iPad and iPod touch since phone ring issues don&#8217;t apply. On these devices the Do Not Disturb controls govern the use of <em>FaceTime</em> as well as all other alerts.</p>
<p>Finally, back in the Do Not Disturb settings, you&#8217;ll see a <em><strong>Repeated Calls</strong></em> switch. When this switch is ON, a second call from the same person within three minutes will ring. This accommodates emergency situations where someone is calling you repeatedly until you pick up the call.</p>
<p>I suggest you don&#8217;t advertise this to your contacts. There&#8217;s always that one goofy uncle who, armed with that knowledge, will surely pester you with calls at all hours. (Heh, heh… I&#8217;m the goofy uncle in my family!)</p>
<p>Keep in mind that the ad-hoc Do Not Disturb switch at the top page of Settings is completely independent of the second set of Do Not Control settings. It is NOT a master switch. In other words, the settings for Scheduled, Allow Calls From, and Repeated Calls will prevail, no matter what.</p>
<p class="cimage"><img src="http://www.macobserver.com/imgs/tmo_articles/20121102-04-DoNotDisturb.jpg" style="WIDTH: 600px; HEIGHT: 205px" height="205px" alt="The Status Bar shows a quarter-moon indicating that Do Not Disturb is enabled." width="600px"/></p>
<p class="cimage">If you see the quarter-moon in the screen&#8217;s status bar, Do Not Disturb is enabled.</p>
<p>I almost forgot to tell you that you can quickly view the status of your Do Not Disturb setting. When it&#8217;s enabled, an icon depicting a quarter-moon will appear to the left of the current time in the status bar at the top of the screen.</p>
<p>In conclusion, I&#8217;m sure you&#8217;ll agree with me that Do Not Disturb is an awesome new feature. Be careful, though. All bets are off when you are actively working on your device or its otherwise unlocked while Do Not Disturb is enabled. All alerts will activate until you lock the device. You could use the Ring/Silent switch, but that still lets vibrations through. Setting the device in Airplane Mode doesn&#8217;t prevent local app alerts from sounding. And-as if I haven&#8217;t stressed this enough-clock alarms will ring when your device is in Do Not Disturb mode and/or Silent mode enabled via the Ring/Silent switch.</p>



Share this Post


	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Do%20not%20disturb%3A%20The%20best%20new%20feature%20in%20iOS%206%20-%20http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F11%2F14%2Fdo-not-disturb-the-best-new-feature-in-ios-6%2F" title="Twitter"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F11%2F14%2Fdo-not-disturb-the-best-new-feature-in-ios-6%2F&amp;title=Do%20not%20disturb%3A%20The%20best%20new%20feature%20in%20iOS%206" title="Reddit"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F11%2F14%2Fdo-not-disturb-the-best-new-feature-in-ios-6%2F&amp;title=Do%20not%20disturb%3A%20The%20best%20new%20feature%20in%20iOS%206&amp;source=MessagingBlogs+Weblogs+on+Corporate+Communications+%26amp%3B+Mobile+Trends&amp;summary=You%27ve%20likely%20heard%20about%20the%20problems%20with%20Apple%27s%20new%20mapping%20application%20in%20the%20iPhone%205%20and%20iOS%206%2C%20the%20company%27s%20mobile%20operating%20system.%20But%20despite%20that%20uncharacteristic%20black%20mark%2C%20the%20new%20iPhone%20platform%20is%20a%20winner%2C%20packed%20with%20a%20number%20of%20i" title="LinkedIn"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>


<br/><br/><img src="http://feeds.feedburner.com/~r/messagingblogs/~4/CowlDDWrBXs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.messagingblogs.com/2012/11/14/do-not-disturb-the-best-new-feature-in-ios-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.messagingblogs.com/2012/11/14/do-not-disturb-the-best-new-feature-in-ios-6/</feedburner:origLink></item>
		<item>
		<title>Implementing GAL Segregation using Address Book Policy in Exchange 2010 SP2 – Part3</title>
		<link>http://feedproxy.google.com/~r/messagingblogs/~3/fVw9FfrkON0/</link>
		<comments>http://www.messagingblogs.com/2012/10/07/implementing-gal-segregation-using-address-book-policy-in-exchange-2010-sp2-part3/#comments</comments>
		<pubDate>Sun, 07 Oct 2012 09:43:25 +0000</pubDate>
		<dc:creator>Achinta Chatterjee</dc:creator>
				<category><![CDATA[Microsoft Exchange Server]]></category>

		<guid isPermaLink="false">http://www.messagingblogs.com/?p=1008</guid>
		<description><![CDATA[Introduction In the last 2 parts of the article we discussed how to prepare the 2 organization SinCorp and BinCorp for the GAL segregation in the same Exchange Organization. In this article we will take a look from the Client...]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction</strong></p>
<p>In the last 2 parts of the article we discussed how to prepare the 2 organization <strong>SinCorp</strong> and <strong>BinCorp</strong> for the GAL segregation in the same Exchange Organization. In this article we will take a look from the Client side how the users will be able to see the changes on the Global Address Book.</p>
<p>In Organization A <strong>SinCorp</strong> we have the following users and groups</p>
<p>Test User01,Test User 02 and Group SIN</p>
<p>In Organization B <strong>BinCorp</strong> we have the following users and groups</p>
<p>Test User04,Test User 05 and Group BIN</p>
<p>Before we implemented the changes in the last 2 part of the articles Test User01 and Test User04 from different organizations will view the Outlook Address Book as shown below.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/34.png" alt="34.PNG" height="437" width="603"/></p>
<p><strong>View After Changes in GAL Segregation for SINCORP Users</strong></p>
<p>After the changes have been implemented Test User01 from <strong>SinCorp</strong> will see the Outlook Address book as below. As you can see only Users and Groups from SinCorp are now visbile.</p>
<p><strong>Outlook Address Book</strong></p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/29.png" alt="29.PNG" height="546" width="768"/></p>
<p>Below will be the <strong>OWA address book</strong> view for <strong>SinCorp</strong> Users</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/311.png" alt="31.PNG" height="554" width="788"/></p>
<p><strong>View After Changes in GAL Segregation for BINCORP users</strong></p>
<p>After the changes have been implemented Test User04 from <strong>BinCorp</strong> will see the Outlook Address book as below. As you can see only Users and Groups from BinCorp are now visbile.</p>
<p><strong>Outlook Address Book</strong></p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/32.png" alt="32.PNG" height="539" width="771"/></p>
<p>Below will be the <strong>OWA address book</strong> view for <strong>BinCorp</strong> Users</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/33.png" alt="33.PNG" height="567" width="793"/></p>
<p><strong>Conclusion</strong></p>
<p>As you can see both organizations have been segregated from viewing each others Users and Groups although they are hosted on the same Server. This show how this Address Book Policy feature in Exchange 2010 SP2 is useful to large organizations who may have gone through a merger or aquistions, or to Exchange hosting companies who use the same hardware to service multiple organizations.This feature can be used in multiple scenarios. You can do more read up on more scenarios of this feature and its implementation on Microsoft Website in the link <a href="http://technet.microsoft.com/en-us/library/jj657455.aspx">http://technet.microsoft.com/en-us/library/jj657455.aspx</a></p>



Share this Post


	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Implementing%20GAL%20Segregation%20using%20Address%20Book%20Policy%20in%20Exchange%202010%20SP2%20-%20Part3%20-%20http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F10%2F07%2Fimplementing-gal-segregation-using-address-book-policy-in-exchange-2010-sp2-part3%2F" title="Twitter"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F10%2F07%2Fimplementing-gal-segregation-using-address-book-policy-in-exchange-2010-sp2-part3%2F&amp;title=Implementing%20GAL%20Segregation%20using%20Address%20Book%20Policy%20in%20Exchange%202010%20SP2%20-%20Part3" title="Reddit"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F10%2F07%2Fimplementing-gal-segregation-using-address-book-policy-in-exchange-2010-sp2-part3%2F&amp;title=Implementing%20GAL%20Segregation%20using%20Address%20Book%20Policy%20in%20Exchange%202010%20SP2%20-%20Part3&amp;source=MessagingBlogs+Weblogs+on+Corporate+Communications+%26amp%3B+Mobile+Trends&amp;summary=Introduction%20In%20the%20last%202%20parts%20of%20the%20article%20we%20discussed%20how%20to%20prepare%20the%202%20organization%20SinCorp%20and%20BinCorp%20for%20the%20GAL%20segregation%20in%20the%20same%20Exchange%20Organization.%20In%20this%20article%20we%20will%20take%20a%20look%20from%20the%20Client%20side%20how%20the%20users%20will%20" title="LinkedIn"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>


<br/><br/><img src="http://feeds.feedburner.com/~r/messagingblogs/~4/fVw9FfrkON0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.messagingblogs.com/2012/10/07/implementing-gal-segregation-using-address-book-policy-in-exchange-2010-sp2-part3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.messagingblogs.com/2012/10/07/implementing-gal-segregation-using-address-book-policy-in-exchange-2010-sp2-part3/</feedburner:origLink></item>
		<item>
		<title>Implementing GAL Segregation using Address Book Policy in Exchange 2010 SP2 – Part2</title>
		<link>http://feedproxy.google.com/~r/messagingblogs/~3/u9SM8qARjys/</link>
		<comments>http://www.messagingblogs.com/2012/10/05/implementing-gal-segregation-using-address-book-policy-in-exchange-2010-sp2-part2/#comments</comments>
		<pubDate>Fri, 05 Oct 2012 08:59:45 +0000</pubDate>
		<dc:creator>Achinta Chatterjee</dc:creator>
				<category><![CDATA[Microsoft Exchange Server]]></category>

		<guid isPermaLink="false">http://www.messagingblogs.com/?p=997</guid>
		<description><![CDATA[Introduction In part 1 of the article we went through the steps of preparing Organization A users in SinCorp for GAL segregation.In part 2 of the article we went through the steps of preparing Organization B users in BinCorp for...]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction</strong></p>
<p>In part 1 of the article we went through the steps of preparing Organization A users in <strong>SinCorp</strong> for GAL segregation.In part 2 of the article we went through the steps of preparing Organization B users in <strong>BinCorp</strong> for GAL segregation.</p>
<p>We will use CustomAttribute 2 for <strong>BinCorp</strong> as BIN. Below are the detailed steps.</p>
<p><strong>1.</strong> <strong>Creating a Global Address list for BinCorp</strong></p>
<p>You can only use EMS to create GALs. (Tip: Launch EMS using Run as Administrator)</p>
<p><strong>New-GlobalAddresslist &#8220;BINCORP&#8221; -ConditionalCustomAttribute2 &#8220;BIN&#8221; -IncludedRecipients &#8220;AllRecipients&#8221;</strong></p>
<p>Where users with CustomAttribute 2 with value &#8220;BIN&#8221; will be included in this GAL.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/151.png" alt="15.PNG" height="120" width="670"/></p>
<p><strong>2. Creating an Address list for BinCorp</strong></p>
<p>In EMC go to Organization Configuration &gt; Mailbox &gt; Address Lists</p>
<p>Create new Address List name called BINCORP AL</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/161.png" alt="16.PNG" height="542" width="638"/></p>
<p>Choose All Recipient type and Container as Users.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/171.png" alt="17.PNG" height="550" width="628"/></p>
<p>Choose the Custom Attribute 2 as BIN.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/181.png" alt="18.PNG" height="543" width="624"/></p>
<p>Apply the changes immediately and Pres New to create the Address List.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/191.png" alt="19.PNG" height="547" width="631"/></p>
<p>Below shows the Address List that we just created.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/201.png" alt="20.PNG" height="534" width="646"/></p>
<p><strong>3.</strong> <strong>Creating an Offline Address Book for BinCorp</strong></p>
<p>Use EMS to create the OAB. Dont use the EMC to do this as you wont be able to add the newly created GAL for BINCORP.</p>
<p><strong>New-OfflineAddress Book -Name &#8220;BINCORP OAB&#8221; -AddressLists &#8220;BINCORP&#8221;</strong></p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/211.png" alt="21.PNG" height="145" width="660"/></p>
<p>If you have Public Folders you can click on the option using GUI in the EMC</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/221.png" alt="22.PNG" height="469" width="436"/></p>
<p><strong>4. Creating a Room List for BinCorp</strong></p>
<p><strong>New-AddressList -Name BINCORP-Rooms -RecipientFilter {(Alias -ne $null) -and (CustomAttribute2 -eq &#8220;BIN&#8221;)-and (RecipientDisplayType -eq &#8220;ConferenceRoomMailbox&#8221;) -or (RecipientDisplayType -eq &#8220;SyncedConferenceRoomMailbox&#8221;)}</strong></p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/231.png" alt="23.PNG" height="138" width="665"/></p>
<p><strong>5. Create Address Book Policy for BinCorp</strong></p>
<p>Go to EMC and open Organization Configuration&gt; Mailbox &gt; Address Book Policies</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/241.png" alt="24.PNG" height="532" width="650"/></p>
<p>Create a New Address Book Policy and select the Global address list, OAB , Room List and Address Lists created above.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/251.png" alt="25.PNG" height="535" width="632"/></p>
<p>Click New. You should now see the BINCORP ABP created.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/26.png" alt="26.PNG" height="536" width="657"/></p>
<p><strong>Applying Custom Attribute for SinCorp</strong></p>
<p>Now we will assign the Custom Attributes for the Users and Distribution Groups that need to be part of the BINCORP GAL.</p>
<p>We can achieve this in several ways.Directly editing each User and Group&#8217;s custom attribute.or using EMS.</p>
<p>Directly editing each User and Group&#8217;s custom attribute shown below.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/27.png" alt="27.PNG" height="550" width="800"/></p>
<p>Using EMS you can do it by executing the commands</p>
<p>i. For individual mailbox</p>
<p><strong>Get-mailbox &#8220;Test User04&#8243; | Set-mailbox -customattribute2 &#8220;BIN&#8221;</strong></p>
<p>ii.To apply for all the mailboxes</p>
<p><strong>Get-mailbox | Set-mailbox -customattribute2 &#8220;BIN&#8221;</strong></p>
<p>iii. To apply for the Users in a Specific Mailbox Database</p>
<p><strong>Get-mailbox -database &#8220;Database Name&#8221; | Set-mailbox -customattribute2 &#8220;BIN&#8221;</strong></p>
<p>To Apply for a Distribution group</p>
<p><strong>Get-DistributionGroup &#8220;Group BIN&#8221; | Set-Distributiongroup -customattribute2 &#8220;BIN&#8221;</strong></p>
<p><strong>Applying AddressBook Policy for SinCorp</strong></p>
<p>We are now ready to apply the Address Book Policy for a specific users.</p>
<p>Go to EMC &#8211; Recipient Configuration &#8211; Mailbox &#8211; Properties of User Mailbox &#8211; Mailbox Settings &#8211; Address Book Policy</p>
<p>As shown below.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/281.png" alt="28.PNG" height="455" width="438"/></p>
<p>You can apply the policy to all users in a mailbox database using the EMS command below</p>
<p><strong>Get-mailbox -Database &#8220;Database Name&#8221; | set-mailbox -addressbookpolicy &#8220;BINCORP ABP&#8221; <br/></strong></p>
<p>This makes BINCORP ready for our GAL Segregation. In there 2 parts article we have made the 2 organizations <strong>SinCorp</strong> and <strong>BinCorp</strong> ready for GAL segregation. In Part 3 of the article we will view the changes to the GAL as a result of the changes.</p>



Share this Post


	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Implementing%20GAL%20Segregation%20using%20Address%20Book%20Policy%20in%20Exchange%202010%20SP2%20-%20Part2%20-%20http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F10%2F05%2Fimplementing-gal-segregation-using-address-book-policy-in-exchange-2010-sp2-part2%2F" title="Twitter"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F10%2F05%2Fimplementing-gal-segregation-using-address-book-policy-in-exchange-2010-sp2-part2%2F&amp;title=Implementing%20GAL%20Segregation%20using%20Address%20Book%20Policy%20in%20Exchange%202010%20SP2%20-%20Part2" title="Reddit"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F10%2F05%2Fimplementing-gal-segregation-using-address-book-policy-in-exchange-2010-sp2-part2%2F&amp;title=Implementing%20GAL%20Segregation%20using%20Address%20Book%20Policy%20in%20Exchange%202010%20SP2%20-%20Part2&amp;source=MessagingBlogs+Weblogs+on+Corporate+Communications+%26amp%3B+Mobile+Trends&amp;summary=Introduction%20In%20part%201%20of%20the%20article%20we%20went%20through%20the%20steps%20of%20preparing%20Organization%20A%20users%20in%20SinCorp%20for%20GAL%20segregation.In%20part%202%20of%20the%20article%20we%20went%20through%20the%20steps%20of%20preparing%20Organization%20B%20users%20in%20BinCorp%20for%20GAL%20segregation.%20We%20w" title="LinkedIn"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>


<br/><br/><img src="http://feeds.feedburner.com/~r/messagingblogs/~4/u9SM8qARjys" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.messagingblogs.com/2012/10/05/implementing-gal-segregation-using-address-book-policy-in-exchange-2010-sp2-part2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.messagingblogs.com/2012/10/05/implementing-gal-segregation-using-address-book-policy-in-exchange-2010-sp2-part2/</feedburner:origLink></item>
		<item>
		<title>Implementing GAL Segregation using Address Book Policy in Exchange 2010 SP2 – Part1</title>
		<link>http://feedproxy.google.com/~r/messagingblogs/~3/cQEa4R3NeXQ/</link>
		<comments>http://www.messagingblogs.com/2012/09/29/implementing-gal-segregation-using-address-book-policy-in-exchange-2010-sp2-part1/#comments</comments>
		<pubDate>Sun, 30 Sep 2012 03:05:14 +0000</pubDate>
		<dc:creator>Achinta Chatterjee</dc:creator>
				<category><![CDATA[Microsoft Exchange Server]]></category>

		<guid isPermaLink="false">http://www.messagingblogs.com/?p=1035</guid>
		<description><![CDATA[Introduction Exchange 2010 SP2 has a new feature called Global address list (GAL) segmentation (also known as GAL segregation) whereby administrators can segment users into specific groups to provide customized views of their organization&#8217;s GAL. In Exchange Server 2007 and...]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction</strong></p>
<p>Exchange 2010 SP2 has a new feature called Global address list (GAL) segmentation (also known as GAL segregation) whereby administrators can segment users into specific groups to provide customized views of their organization&#8217;s GAL. In Exchange Server 2007 and earlier, segmenting the GAL was complicated, requiring you to use either a Query Base DN (which acted as a root for directory searches) or access control lists (ACLs) to allow or deny access to each address list.</p>
<p>To accomplish GAL Segregation process, Exchange Server 2010 Service Pack 2 (SP2) introduces address book policies (ABPs). When creating an ABP, you assign a GAL, an offline address book (OAB), a room list, and one or more address lists to the policy. You can then assign the ABP to mailbox users, providing them with access to a customized GAL in Outlook and Outlook Web App. This provides a simpler mechanism to accomplish GAL segmentation for on-premises organizations that require multiple GALs.</p>
<p><strong>Scenario :</strong> This artcile covers GAL segregation based on the scenario for 2 organizations hosted on the same server and which do not want to see each other GALs.</p>
<p>We will use <strong>Custom Attributes</strong> to segregate object propereties in the GALs.</p>
<p>Name of organiaztion A: SINCORP</p>
<p>Custom Attribute for organiaztion A: SIN</p>
<p>Name of organiaztion B: BINCORP</p>
<p>Custom Attribute for organiaztion B: BIN</p>
<p>For GAL segregation we need to create the following for each Organization.</p>
<p>1. Global Address List</p>
<p>2. Addres Lists</p>
<p>3. Offline Address Book</p>
<p>4. Room Lists</p>
<p>5. Address Book Policy</p>
<p><strong>1.</strong> <strong>Creating a Global Address list for SinCorp</strong></p>
<p>You can only use EMS to create GALs. (Tip: Launch EMS using Run as Administrator)</p>
<p><strong>New-GlobalAddresslist &#8220;SINCORP&#8221; -ConditionalCustomAttribute1 &#8220;SIN&#8221; -IncludedRecipients &#8220;AllRecipients&#8221;</strong></p>
<p>Where users with CustomAttribute 1 with value &#8220;SIN&#8221; will be included in this GAL.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/110.png" alt="1.PNG" height="328" width="661"/></p>
<p><strong>2. Creating an Address list for SinCorp</strong></p>
<p>In EMC go to Organization Configuration &gt; Mailbox &gt; Address Lists</p>
<p>Create new Address List name called SINCORP AL</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/21.png" alt="2.PNG" height="484" width="639"/></p>
<p>Choose All Recipient type and Container as Users.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/31.png" alt="3.PNG" height="419" width="634"/></p>
<p>Choose the Custom Attribute 1 as SIN.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/41.png" alt="4.PNG" height="424" width="633"/></p>
<p>Apply the changes immediately and Pres New to create the Address List.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/51.png" alt="5.PNG" height="555" width="640"/></p>
<p>Below shows the Address List that we just created.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/61.png" alt="6.PNG" height="459" width="647"/></p>
<p><strong>3.</strong> <strong>Creating an Offline Address Book for SinCorp</strong></p>
<p>Use EMS to create the OAB. Dont use the EMC to do this as you wont be able to add the newly created GAL for SINCORP.</p>
<p><strong>New-OfflineAddress Book -Name &#8220;SINCORP OAB&#8221; -AddressLists &#8220;SINCORP&#8221;</strong></p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/7.png" alt="7.PNG" height="146" width="660"/></p>
<p>If you have Public Folders you can click on the option using GUI in the EMC</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/81.png" alt="8.PNG" height="496" width="431"/></p>
<p><strong>4. Creating a Room List for SinCorp</strong></p>
<p><strong>New-AddressList -Name SINCORP-Rooms -RecipientFilter {(Alias -ne $null) -and (CustomAttribute1 -eq &#8220;SIN&#8221;)-and (RecipientDisplayType -eq &#8220;ConferenceRoomMailbox&#8221;) -or (RecipientDisplayType -eq &#8220;SyncedConferenceRoomMailbox&#8221;)}</strong></p>
<p><strong><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/9.png" alt="9.PNG" height="331" width="665"/></strong></p>
<p><strong>5. Create Address Book Policy for SinCorp</strong></p>
<p>Go to EMC and open Organization Configuration&gt; Mailbox &gt; Address Book Policies</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/10.png" alt="10.PNG" height="537" width="655"/></p>
<p>Create a New Address Book Policy and select the Global address list, OAB , Room List and Address Lists created above.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/111.png" alt="11.PNG" height="531" width="642"/></p>
<p>Click New. You should now see the SINCORP ABP created.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/121.png" alt="12.PNG" height="532" width="642"/></p>
<p><strong>Applying Custom Attribute for SinCorp</strong></p>
<p>Now we will assign the Custom Attributes for the Users and Distribution Groups that need to be part of the SINCORP GAL.</p>
<p>We can achieve this in several ways.Directly editing each User and Group&#8217;s custom attribute.or using EMS.</p>
<p>Directly editing each User and Group&#8217;s custom attribute shown below.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/131.png" alt="13.PNG" height="521" width="798"/></p>
<p>Using EMS you can do it by executing the commands</p>
<p>i. For individual mailbox</p>
<p><strong>Get-mailbox &#8220;Test User01&#8243; | Set-mailbox -customattribute1 &#8220;SIN&#8221;</strong></p>
<p>ii.To apply for all the mailboxes</p>
<p><strong>Get-mailbox | Set-mailbox -customattribute1 &#8220;SIN&#8221;</strong></p>
<p>iii. To apply for the Users in a Specific Mailbox Database</p>
<p><strong>Get-mailbox -database &#8220;Database Name&#8221; | Set-mailbox -customattribute1 &#8220;SIN&#8221;</strong></p>
<p>To Apply for a Distribution group</p>
<p><strong>Get-DistributionGroup &#8220;Group SIN&#8221; | Set-Distributiongroup -customattribute1 &#8220;SIN&#8221;</strong></p>
<p><strong>Applying AddressBook Policy for SinCorp</strong></p>
<p>We are now ready to apply the Address Book Policy for a specific users.</p>
<p>Go to EMC &#8211; Recipient Configuration &#8211; Mailbox &#8211; Properties of User Mailbox &#8211; Mailbox Settings &#8211; Address Book Policy</p>
<p>As shown below.</p>
<p><img src="http://www.messagingblogs.com/wp-content/uploads/2012/12/141.png" alt="14.PNG" height="533" width="445"/></p>
<p><br/>You can apply the policy to all users in a mailbox database using the EMS command below</p>
<p><strong>Get-mailbox -Database &#8220;Database Name&#8221; | set-mailbox -addressbookpolicy &#8220;SINCORP ABP&#8221; <br/></strong></p>
<p>This makes SINCORP ready for our GAL Segregation. In the next part of the article we will discuss how to make BINCORP ready for GAL Segregation.</p>



Share this Post


	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Implementing%20GAL%20Segregation%20using%20Address%20Book%20Policy%20in%20Exchange%202010%20SP2%20-%20Part1%20-%20http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F09%2F29%2Fimplementing-gal-segregation-using-address-book-policy-in-exchange-2010-sp2-part1%2F" title="Twitter"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F09%2F29%2Fimplementing-gal-segregation-using-address-book-policy-in-exchange-2010-sp2-part1%2F&amp;title=Implementing%20GAL%20Segregation%20using%20Address%20Book%20Policy%20in%20Exchange%202010%20SP2%20-%20Part1" title="Reddit"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F09%2F29%2Fimplementing-gal-segregation-using-address-book-policy-in-exchange-2010-sp2-part1%2F&amp;title=Implementing%20GAL%20Segregation%20using%20Address%20Book%20Policy%20in%20Exchange%202010%20SP2%20-%20Part1&amp;source=MessagingBlogs+Weblogs+on+Corporate+Communications+%26amp%3B+Mobile+Trends&amp;summary=Introduction%20Exchange%202010%20SP2%20has%20a%20new%20feature%20called%20Global%20address%20list%20%28GAL%29%20segmentation%20%28also%20known%20as%20GAL%20segregation%29%20whereby%20administrators%20can%20segment%20users%20into%20specific%20groups%20to%20provide%20customized%20views%20of%20their%20organization%27s%20GAL.%20In%20E" title="LinkedIn"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>


<br/><br/><img src="http://feeds.feedburner.com/~r/messagingblogs/~4/cQEa4R3NeXQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.messagingblogs.com/2012/09/29/implementing-gal-segregation-using-address-book-policy-in-exchange-2010-sp2-part1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.messagingblogs.com/2012/09/29/implementing-gal-segregation-using-address-book-policy-in-exchange-2010-sp2-part1/</feedburner:origLink></item>
		<item>
		<title>How To Delete Contents In Recoverable Items Folder</title>
		<link>http://feedproxy.google.com/~r/messagingblogs/~3/8HNbhU8kSbI/</link>
		<comments>http://www.messagingblogs.com/2012/09/13/how-to-delete-contents-in-recoverable-items-folder/#comments</comments>
		<pubDate>Thu, 13 Sep 2012 06:29:08 +0000</pubDate>
		<dc:creator>Achinta Chatterjee</dc:creator>
				<category><![CDATA[Microsoft Exchange Server]]></category>

		<guid isPermaLink="false">http://www.messagingblogs.com/?p=1058</guid>
		<description><![CDATA[The article details how to delete Recoverable Items Folder in Exchange mailbox. The writer mentions that you can come across situations in which you want to delete the contents of the recoverable items folder and it will come in handy...]]></description>
			<content:encoded><![CDATA[<p>The article details how to delete Recoverable Items Folder in Exchange mailbox. The writer mentions that you can come across situations in which you want to delete the contents of the recoverable items folder and it will come in handy to know the cmdlet to use to make the process easier.</p>
<p><a href="http://www.howexchangeworks.com/2012/10/how-to-delete-contents-in-recoverable-items-folder.html">http://www.howexchangeworks.com/2012/10/how-to-delete-contents-in-recoverable-items-folder.html</a></p>



Share this Post


	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=How%20To%20Delete%20Contents%20In%20Recoverable%20Items%20Folder%20-%20http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F09%2F13%2Fhow-to-delete-contents-in-recoverable-items-folder%2F" title="Twitter"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F09%2F13%2Fhow-to-delete-contents-in-recoverable-items-folder%2F&amp;title=How%20To%20Delete%20Contents%20In%20Recoverable%20Items%20Folder" title="Reddit"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.messagingblogs.com%2F2012%2F09%2F13%2Fhow-to-delete-contents-in-recoverable-items-folder%2F&amp;title=How%20To%20Delete%20Contents%20In%20Recoverable%20Items%20Folder&amp;source=MessagingBlogs+Weblogs+on+Corporate+Communications+%26amp%3B+Mobile+Trends&amp;summary=The%20article%20details%20how%20to%20delete%20Recoverable%20Items%20Folder%20in%20Exchange%20mailbox.%20The%20writer%20mentions%20that%20you%20can%20come%20across%20situations%20in%20which%20you%20want%20to%20delete%20the%20contents%20of%20the%20recoverable%20items%20folder%20and%20it%20will%20come%20in%20handy%20to%20know%20the%20cmd" title="LinkedIn"><img src="http://www.messagingblogs.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>


<br/><br/><img src="http://feeds.feedburner.com/~r/messagingblogs/~4/8HNbhU8kSbI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.messagingblogs.com/2012/09/13/how-to-delete-contents-in-recoverable-items-folder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.messagingblogs.com/2012/09/13/how-to-delete-contents-in-recoverable-items-folder/</feedburner:origLink></item>
	</channel>
</rss>
