<?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>Erjen, Author at Erjen Rijnders</title>
	<atom:link href="https://erjenrijnders.nl/author/erjen/feed/" rel="self" type="application/rss+xml" />
	<link>https://erjenrijnders.nl/author/erjen/</link>
	<description>Microsoft Azure/EMS blog</description>
	<lastBuildDate>Fri, 05 Feb 2021 09:33:15 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.6.2</generator>
	<item>
		<title>Set desktop background with Intune, but allow modification</title>
		<link>https://erjenrijnders.nl/2021/02/04/set-desktop-background-with-intune-but-allow-modification/</link>
					<comments>https://erjenrijnders.nl/2021/02/04/set-desktop-background-with-intune-but-allow-modification/#comments</comments>
		
		<dc:creator><![CDATA[Erjen]]></dc:creator>
		<pubDate>Thu, 04 Feb 2021 16:14:46 +0000</pubDate>
				<category><![CDATA[Intune]]></category>
		<category><![CDATA[Intune desktop background]]></category>
		<category><![CDATA[background personalization]]></category>
		<guid isPermaLink="false">https://erjenrijnders.nl/?p=76047</guid>

					<description><![CDATA[<p>Index 1. Set desktop background with Intune, but allow modification2. Push the desktop background from Intune &#160; Set desktop background [&#8230;]</p>
<p>The post <a href="https://erjenrijnders.nl/2021/02/04/set-desktop-background-with-intune-but-allow-modification/">Set desktop background with Intune, but allow modification</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading"><strong>Index</strong></h2>



<p><a href="#set-desktop-bg">1. Set desktop background with Intune, but allow modification</a><br /><a href="#Push-the-desktop-background-from-Intune">2. Push the desktop background from Intune</a></p>

<p>&nbsp;</p>
<h2 id="set-desktop-bg">Set desktop background with Intune, but allow modification</h2>
<p>It&#8217;s possible to set the desktop background with Intune, very easily. The problem however is let the user changing it afterwards which is not possible. When pushing the desktop background with Intune, changing the background image is greyed out:</p>
<p>&nbsp;</p>
<p><img fetchpriority="high" decoding="async" class="alignnone wp-image-76052" src="https://erjenrijnders.nl/wp-content/uploads/2021/02/cannot-change-bg.png" alt="background image personalization" width="398" height="456" srcset="https://erjenrijnders.nl/wp-content/uploads/2021/02/cannot-change-bg.png 497w, https://erjenrijnders.nl/wp-content/uploads/2021/02/cannot-change-bg-262x300.png 262w" sizes="(max-width: 398px) 100vw, 398px" /></p>
<p>The solution is to delete the regkey that is responsible for &#8220;locking&#8221; the background. Just remove this key, it doesn&#8217;t actually remove the background but only removes the lock. Relevant regkey: </p>
<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\PersonalizationCSP\DesktopImagePath</div></td></tr></tbody></table></div>

</pre>
<p></p>
<p>Just remove the property &#8220;DesktopImagePath&#8221; (create a back-up first of course). If you want to do this for multiple users, you can use this PowerShell script:</p>
<p>&nbsp;</p>
<p></p>
<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">$path = &quot;HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\PersonalizationCSP&quot;<br />
$PCSP = Get-ItemProperty $path -Name &quot;DesktopImagePath&quot; -ErrorAction SilentlyContinue<br />
if (!$null -eq $PCSP) {<br />
&nbsp; &nbsp; Remove-ItemProperty -Path $path -Name &quot;DesktopImagePath&quot; -Force<br />
}<br />
}<br />
if ($false -eq (Test-Path &quot;$env:ProgramData\Microsoft\AllowBackgroundPersonalization&quot;)) {<br />
&nbsp; &nbsp; $scriptfile = New-Item -ItemType Directory -Path &quot;$env:ProgramData\Microsoft\AllowBackgroundPersonalization&quot;<br />
}</div></td></tr></tbody></table></div>

</pre>
<p></p>
<p>&nbsp;</p>
<p>If you use the Intune &#8220;Scripts&#8221; option, it&#8217;s possible that the script runs earlier than the desktop background is pushed. Since the scripts runs only once, this script doesn&#8217;t have any effect. You could create a scheduled task that runs at every logon to work around the problem:</p>
<p></p>
<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">$script = {<br />
&nbsp; &nbsp; $path = &quot;HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\PersonalizationCSP&quot;<br />
$PCSP = Get-ItemProperty $path -Name &quot;DesktopImagePath&quot; -ErrorAction SilentlyContinue<br />
if (!$null -eq $PCSP) {<br />
&nbsp; &nbsp; Remove-ItemProperty -Path $path -Name &quot;DesktopImagePath&quot; -Force<br />
}<br />
}<br />
if ($false -eq (Test-Path &quot;$env:ProgramData\Microsoft\AllowBackgroundPersonalization&quot;)) {<br />
&nbsp; &nbsp; $scriptfile = New-Item -ItemType Directory -Path &quot;$env:ProgramData\Microsoft\AllowBackgroundPersonalization&quot;<br />
}<br />
$script | Out-File -FilePath &quot;$scriptfile\AllowBackgroundPersonalization.ps1&quot;<br />
<br />
$schtaskName = &quot;AllowBackgroundPersonalization&quot;<br />
$schtaskDescription = &quot;Allow changing the background in Intune&quot;<br />
$trigger = New-ScheduledTaskTrigger -AtLogOn<br />
$principal = New-ScheduledTaskPrincipal &quot;NT AUTHORITY\SYSTEM&quot; -RunLevel Highest<br />
$action = New-ScheduledTaskAction -Execute powershell.exe -Argument &quot;-File $scriptfile\AllowBackgroundPersonalization.ps1&quot;<br />
$settings = New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -DontStopIfGoingOnBatteries<br />
$null=Register-ScheduledTask -TaskName $schtaskName -Trigger $trigger -Action $action -Principal $principal -Settings $settings -Description $schtaskDescription -Force<br />
Start-ScheduledTask -TaskName $schtaskName</div></td></tr></tbody></table></div>

</pre>
<p></p>
<p>Next step is to push the script by Intune. Since the script is running in system context and getting the regkey from the local system, you can run it in system context:</p>
<p><img decoding="async" class="alignnone wp-image-76061" src="https://erjenrijnders.nl/wp-content/uploads/2021/02/run-script-intune.png" alt="intune add powershell script" width="789" height="320" srcset="https://erjenrijnders.nl/wp-content/uploads/2021/02/run-script-intune.png 1043w, https://erjenrijnders.nl/wp-content/uploads/2021/02/run-script-intune-300x122.png 300w, https://erjenrijnders.nl/wp-content/uploads/2021/02/run-script-intune-1024x415.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2021/02/run-script-intune-768x311.png 768w" sizes="(max-width: 789px) 100vw, 789px" /></p>
<p>&nbsp;</p>
<h2 id="Push-the-desktop-background-from-Intune">Push the desktop background from Intune</h2>
<p>This is how you push the desktop background by Intune. Go to: <a href="https://endpoint.microsoft.com/#blade/Microsoft_Intune_DeviceSettings/DevicesMenu/configurationProfiles">https://endpoint.microsoft.com/</a> Create a new profile:</p>
<p><img decoding="async" class="alignnone wp-image-76050 size-full" src="https://erjenrijnders.nl/wp-content/uploads/2021/02/new-profile-w10-device-restrictions.png" alt="intune create profile" width="565" height="341" srcset="https://erjenrijnders.nl/wp-content/uploads/2021/02/new-profile-w10-device-restrictions.png 565w, https://erjenrijnders.nl/wp-content/uploads/2021/02/new-profile-w10-device-restrictions-300x181.png 300w" sizes="(max-width: 565px) 100vw, 565px" /></p>
<p>Fill in an internet-accessible URL:</p>
<p><img decoding="async" class="alignnone wp-image-76051" src="https://erjenrijnders.nl/wp-content/uploads/2021/02/set-bg-intune-personalization.png" alt="image personalization" width="535" height="512" srcset="https://erjenrijnders.nl/wp-content/uploads/2021/02/set-bg-intune-personalization.png 771w, https://erjenrijnders.nl/wp-content/uploads/2021/02/set-bg-intune-personalization-300x287.png 300w, https://erjenrijnders.nl/wp-content/uploads/2021/02/set-bg-intune-personalization-768x735.png 768w" sizes="(max-width: 535px) 100vw, 535px" />  </p><p>The post <a href="https://erjenrijnders.nl/2021/02/04/set-desktop-background-with-intune-but-allow-modification/">Set desktop background with Intune, but allow modification</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://erjenrijnders.nl/2021/02/04/set-desktop-background-with-intune-but-allow-modification/feed/</wfw:commentRss>
			<slash:comments>10</slash:comments>
		
		
			</item>
		<item>
		<title>How to manage Windows Virtual Desktop</title>
		<link>https://erjenrijnders.nl/2019/05/03/how-to-manage-windows-virtual-desktop/</link>
					<comments>https://erjenrijnders.nl/2019/05/03/how-to-manage-windows-virtual-desktop/#comments</comments>
		
		<dc:creator><![CDATA[Erjen]]></dc:creator>
		<pubDate>Fri, 03 May 2019 12:36:48 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Windows Virtual Desktop]]></category>
		<guid isPermaLink="false">http://erjenrijnders.nl/?p=75994</guid>

					<description><![CDATA[<p>If you want to setup WVD, check this post. Currently, you can only manage WVD through PowerShell. Here you can [&#8230;]</p>
<p>The post <a href="https://erjenrijnders.nl/2019/05/03/how-to-manage-windows-virtual-desktop/">How to manage Windows Virtual Desktop</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>If you want to setup WVD, <a rel="noreferrer noopener" aria-label="check my previous post. (opens in a new tab)" href="https://erjenrijnders.nl/2019/04/04/how-to-deploy-windows-virtual-desktop-in-azure/" target="_blank"><strong>check this post.</strong></a></p>



<p>Currently, you can only manage WVD through PowerShell. Here you can see the most common commands to manage your enviroment.</p>



<p>You can only assign a user to a desktop pool or app pool, not both. Neither can a desktop pool contain apps (like it isn&#8217;t possible in RDS as well). By default, you create a desktop pool, let&#8217;s add an app pool now by running the commands below. Always start with this command, signing in, in the WVD-enviroment.</p>



<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">&nbsp;Add-RdsAccount -DeploymentUrl &quot;https://rdbroker.wvd.microsoft.com&quot;</div></td></tr></tbody></table></div>

</pre>



<h2 class="wp-block-heading"> Add a new WVD App Group</h2>



<p>Run these commands to add a new app group.</p>



<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br />2<br />3<br />4<br />5<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">$myTenantName = &quot;mytenantname&quot; #If you don't know, try Get-RdsTenant<br />
$hostpoolname = &quot;myhostpoolname&quot; #If you don't know, try Get-RdsHostPool<br />
$rdsremoteappgroupname = &quot;remoteappgroupname&quot;<br />
Get-RdsAppGroup $myTenantName $hostpoolname<br />
New-RdsAppGroup -TenantName $myTenantName -HostPoolName $hostpoolname -Name $rdsremoteappgroupname -ResourceType RemoteApp</div></td></tr></tbody></table></div>

</pre>



<h2 class="wp-block-heading">Find applications you can publish</h2>



<p>If you want to find apps currently able to publish to your new app group, run this command. It will search on your session hosts for apps.</p>



<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">Get-RdsStartMenuApp -TenantName $myTenantName -HostPoolName $hostpoolname -AppGroupName $rdsremoteappgroupname</div></td></tr></tbody></table></div>

</pre>



<h2 class="wp-block-heading">Publish applications</h2>



<p>For example, this is how you publish Internet Explorer and Registry Editor.</p>



<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br />2<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">New-RdsRemoteApp -TenantName $myTenantName -HostPoolName $hostpoolname -AppGroupName $rdsremoteappgroupname -Name &quot;Internet Explorer&quot; -FilePath &quot;C:\Program Files\internet explorer\iexplore.exe&quot; -IconPath &quot;C:\Program Files\internet explorer\iexplore.exe&quot;<br />
New-RdsRemoteApp -TenantName $myTenantName -HostPoolName $hostpoolname -AppGroupName $rdsremoteappgroupname -Name &quot;Registry Editor&quot; -AppAlias &quot;registryeditor&quot;</div></td></tr></tbody></table></div>

</pre>



<h2 class="wp-block-heading">Add users to your new app group</h2>



<p>Adding users is also very simple, just run this command.</p>



<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">Add-RdsAppGroupUser -TenantName $myTenantName -HostPoolName $hostpoolname -AppGroupName $rdsremoteappgroupname -UserPrincipalName &amp;lt;upn&gt;</div></td></tr></tbody></table></div>

</pre>



<p>If you want to publish more app groups, follow the steps above again. Remember, a user can only be a member of the App Group, or the Desktop Group. If you want to assign the user to the app group while being a member of the desktop group, remove it first with this command:</p>



<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">Remove-RdsAppGroupUser -TenantName $myTenantName -HostPoolName $hostpoolname -AppGroupName $rdsremoteappgroupname -UserPrincipalName &amp;lt;upn&gt;</div></td></tr></tbody></table></div>

</pre>
<p>The post <a href="https://erjenrijnders.nl/2019/05/03/how-to-manage-windows-virtual-desktop/">How to manage Windows Virtual Desktop</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://erjenrijnders.nl/2019/05/03/how-to-manage-windows-virtual-desktop/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>How-to deploy Windows Virtual Desktop in Azure</title>
		<link>https://erjenrijnders.nl/2019/04/04/how-to-deploy-windows-virtual-desktop-in-azure/</link>
					<comments>https://erjenrijnders.nl/2019/04/04/how-to-deploy-windows-virtual-desktop-in-azure/#comments</comments>
		
		<dc:creator><![CDATA[Erjen]]></dc:creator>
		<pubDate>Thu, 04 Apr 2019 08:59:42 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Windows Virtual Desktop]]></category>
		<category><![CDATA[Windows 10 Virtual Desktop]]></category>
		<category><![CDATA[Windows Virtual desktop]]></category>
		<guid isPermaLink="false">http://erjenrijnders.nl/?p=75927</guid>

					<description><![CDATA[<p>If you want to know how to manage WVD, check this post. Index 1. Add RDS Tenant2. Add Service Principal3. [&#8230;]</p>
<p>The post <a href="https://erjenrijnders.nl/2019/04/04/how-to-deploy-windows-virtual-desktop-in-azure/">How-to deploy Windows Virtual Desktop in Azure</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>If you want to know how to manage WVD, <a rel="noreferrer noopener" aria-label="check this post. (opens in a new tab)" href="https://erjenrijnders.nl/2019/05/03/how-to-manage-windows-virtual-desktop/" target="_blank"><strong>check this post.</strong></a></p>



<h2 class="wp-block-heading"><strong>Index</strong></h2>



<p><a href="#Add-RDS-tenant">1. Add RDS Tenant</a><br><a href="#Add-Service-Principal">2. Add Service Principal</a><br><a href="#Assign-permissions">3. Assign permissions</a><br><a href="#Deploy-WVD-through-marketplace">4. Deploy WVD through marketplace</a><br><a href="#Open-HTML5-webclient">5. Open HTML5 webclient</a><br><a href="#Add-users-to-your-desktop">6. Add users to your desktop</a></p>



<p></p>



<p>I see a lot of people struggle deploying Windows Virtual desktop. Most people face this error message:</p>



<pre class="wp-block-preformatted">VM has reported a failure when processing extension 'dscextension'. Error message: \\\"DSC Configuration 'FirstSessionHost' completed with error(s). Following are the first few: PowerShell DSC resource MSFT_ScriptResource failed to execute Set-TargetResource functionality with error message: User is not authorized to query the management service</pre>



<p>This is because you need to create a service principal with the correct permissions. A normal user will work as well, but it&#8217;s failing too many times for people. <br>Following these steps should get you through the deployment.<br><br></p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p><strong><em>Keep in mind that the user deploying your WVD VMs to your domain, also needs the Owner role on your Azure Subscription! Because it needs to be able to run some Powershell DSC commands.</em></strong></p><p><em>NOTE:  User &#8216;Cloudcrusader&#8217; suggests in the comments that it should work with  the &#8216;Virtual Machine Contributor&#8217; role only as well.</em></p></blockquote>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p><strong>Start fresh. Delete all WVD tenants created before. Check if a tenant still exists with Get-RdsTenant. </strong></p></blockquote>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p><strong><em>This post is not going to help you, configuring WVD with AAD DS. It should be possible though, someone was able to configure it succesfully using <font color="#4f67c1"><a href="http://www.rebeladmin.com/2019/04/step-step-guide-azure-windows-virtual-desktop-preview/" target="_blank" rel="noreferrer noopener" aria-label="this post (opens in a new tab)"><font color="#4f67c1">this post</font></a></font>.</em></strong></p></blockquote>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p><strong>Remember, don&#8217;t use an MFA enabled account. It doesn&#8217;t work.</strong></p></blockquote>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p><strong>Also try: <a href="https://docs.microsoft.com/en-us/powershell/module/windowsvirtualdesktop/get-rdsdiagnosticactivities" rel="noopener noreferrer" target="_blank">Get-RdsDiagnosticActivities</a>. Others succeeded finding the root cause with that command</strong></p></blockquote>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p><strong>I have deployed WVD multiple times already, so that&#8217;s how I know this works. If it doesn&#8217;t work for you, let me know, maybe I can help you.</strong></p></blockquote>



<p><br>Run through step one of the Microsoft documentation:<br><a rel="noreferrer noopener" aria-label="https://docs.microsoft.com/en-us/azure/virtual-desktop/tenant-setup-azure-active-directory (opens in a new tab)" href="https://docs.microsoft.com/en-us/azure/virtual-desktop/tenant-setup-azure-active-directory" target="_blank">https://docs.microsoft.com/en-us/azure/virtual-desktop/tenant-setup-azure-active-directory</a><br></p>



<h2 class="wp-block-heading" id="Add-RDS-tenant">Add RDS tenant</h2>



<p>Run these commands to add the RDS tenant.</p>



<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br />2<br />3<br />4<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;"># Don't change the deploymenturl<br />
Add-RdsAccount -DeploymentUrl &quot;https://rdbroker.wvd.microsoft.com&quot;<br />
# Use any name for your tenant, get your ID from Azure portal &gt; Azure Active Directory &gt; Properties &gt; Directory ID. To get your SubscriptionID, go to Azure Portal &gt; All services &gt; subscriptions &gt; click the subscription where the VM's will reside and copy the subscription ID:<br />
New-RdsTenant -Name YourTenantName -AadTenantId YourAzureADTenantID -AzureSubscriptionId YourSubscriptionID</div></td></tr></tbody></table></div>

</pre>



<h2 class="wp-block-heading" id="Add-Service-Principal">Add Service Principal</h2>



<p>Next, follow these steps. Never change the <strong>Default Tenant Group</strong>, as per the Microsoft docs.</p>



<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">$myTenantGroupName = &quot;Default Tenant Group&quot;<br />
$myTenantName = &quot;tenantname&quot; #As you used in the previous step<br />
$hostpoolname = &quot;Hostpoolname&quot;<br />
<br />
# create the service principal:<br />
$aadContext = Connect-AzureAD<br />
$svcPrincipal = New-AzureADApplication -AvailableToOtherTenants $true -DisplayName &quot;Windows Virtual Desktop Svc Principal&quot;<br />
$svcPrincipalCreds = New-AzureADApplicationPasswordCredential -ObjectId $svcPrincipal.ObjectId<br />
<br />
# Don't change the URL below.<br />
Add-RdsAccount -DeploymentUrl &quot;https://rdbroker.wvd.microsoft.com&quot; <br />
Set-RdsContext -TenantGroupName $myTenantGroupName<br />
New-RdsHostPool -TenantName $myTenantName -name $hostpoolname</div></td></tr></tbody></table></div>

</pre>



<h2 class="wp-block-heading" id="Assign-permissions">Assign permissions</h2>



<p>Now below is the most important step, that&#8217;s where you assign the service principal permissions to the RDS environment. If you do this correctly, you can deploy the WVD template from the Azure Marketplace, without errors.</p>



<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">New-RdsRoleAssignment -RoleDefinitionName &quot;RDS Owner&quot; -ApplicationId $svcPrincipal.AppId -TenantGroupName $myTenantGroupName -TenantName $myTenantName -HostPoolName $hostpoolname</div></td></tr></tbody></table></div>

</pre>



<p>Go to the Azure Portal and open the app just created and create your own key:<br><strong>Azure Portal &gt; app registrations &gt; Windows Virtual Desktop Svc Principal &gt; Settings &gt; Keys.</strong><br>Create your own key and save the value During the next step, deploying Windows Virtual Desktop from the marketplace, in step 3 of that template you need this password.</p>



<h2 class="wp-block-heading" id="Deploy-WVD-through-marketplace">Deploy WVD through marketplace</h2>



<p>Next step is to follow this Microsoft doc:<br><a href="https://docs.microsoft.com/en-us/azure/virtual-desktop/create-host-pools-azure-marketplace">https://docs.microsoft.com/en-us/azure/virtual-desktop/create-host-pools-azure-marketplace</a> <br>You should be able to get passed the error as mentioned above, also with help from these screenshots below.</p>



<figure class="wp-block-image is-resized"><img decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/create-windows-virtual-desktop.png" alt="" class="wp-image-75930" width="560" height="358" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/create-windows-virtual-desktop.png 747w, https://erjenrijnders.nl/wp-content/uploads/2019/04/create-windows-virtual-desktop-300x192.png 300w, https://erjenrijnders.nl/wp-content/uploads/2019/04/create-windows-virtual-desktop-600x383.png 600w" sizes="(max-width: 560px) 100vw, 560px" /></figure>



<figure class="wp-block-image is-resized"><img decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/step-1-1.png" alt="" class="wp-image-75943" width="469" height="650" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/step-1-1.png 625w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-1-1-216x300.png 216w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-1-1-600x832.png 600w" sizes="(max-width: 469px) 100vw, 469px" /></figure>



<figure class="wp-block-image is-resized"><img decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/step-2.png" alt="" class="wp-image-75932" width="449" height="638" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/step-2.png 598w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-2-211x300.png 211w" sizes="(max-width: 449px) 100vw, 449px" /></figure>



<p>If you keep <strong>No </strong>selected below <strong>Specifiy domain or OU</strong>, it&#8217;s going to try joining the domain behind the @, used below <strong>AD domain join UPN</strong>. So in the example below it will use <strong>yourdomain.com</strong>. If your domain is <strong>ad.yourdomain.com</strong>, set <strong>Yes</strong> below the <strong>Specifiy domain or OU</strong>.<br><br></p>



<figure class="wp-block-image is-resized"><img decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/step-3.png" alt="" class="wp-image-75933" width="467" height="647" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/step-3.png 623w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-3-217x300.png 217w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-3-600x830.png 600w" sizes="(max-width: 467px) 100vw, 467px" /></figure>



<figure class="wp-block-image is-resized"><img decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/step-4.png" alt="" class="wp-image-75934" width="455" height="652" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/step-4.png 606w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-4-209x300.png 209w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-4-600x860.png 600w" sizes="(max-width: 455px) 100vw, 455px" /></figure>



<p>Finally, your deployment is succesful as you can see in the screenshot below. It took about 9 minutes for the DSCextension completed, per VM:</p>



<figure class="wp-block-image is-resized"><img decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/step-5-1024x461.png" alt="" class="wp-image-75935" width="768" height="346" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/step-5-1024x461.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-5-300x135.png 300w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-5-768x345.png 768w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-5-600x270.png 600w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-5.png 1294w" sizes="(max-width: 768px) 100vw, 768px" /></figure>



<h2 class="wp-block-heading" id="Open-HTML5-webclient">Open HTML5 webclient</h2>



<p>Now go to the HTML5 client to open your desktop: <a href="https://rdweb.wvd.microsoft.com/webclient/index.html">https://rdweb.wvd.microsoft.com/webclient/index.html</a></p>



<figure class="wp-block-image is-resized"><img decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/your-session-host.png" alt="" class="wp-image-75936" width="227" height="170" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/your-session-host.png 302w, https://erjenrijnders.nl/wp-content/uploads/2019/04/your-session-host-300x226.png 300w" sizes="(max-width: 227px) 100vw, 227px" /></figure>



<figure class="wp-block-image is-resized"><img decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/acces-local-resources.png" alt="" class="wp-image-75937" width="444" height="209" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/acces-local-resources.png 592w, https://erjenrijnders.nl/wp-content/uploads/2019/04/acces-local-resources-300x141.png 300w" sizes="(max-width: 444px) 100vw, 444px" /></figure>



<figure class="wp-block-image is-resized"><img decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/start-your-desktop.png" alt="" class="wp-image-75938" width="437" height="221" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/start-your-desktop.png 583w, https://erjenrijnders.nl/wp-content/uploads/2019/04/start-your-desktop-300x152.png 300w" sizes="(max-width: 437px) 100vw, 437px" /></figure>



<figure class="wp-block-image is-resized"><img decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/start-wvd.png" alt="" class="wp-image-75939" width="434" height="209" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/start-wvd.png 579w, https://erjenrijnders.nl/wp-content/uploads/2019/04/start-wvd-300x145.png 300w" sizes="(max-width: 434px) 100vw, 434px" /></figure>



<figure class="wp-block-image is-resized"><img decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/started-wvd.png" alt="" class="wp-image-75940" width="560" height="661" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/started-wvd.png 747w, https://erjenrijnders.nl/wp-content/uploads/2019/04/started-wvd-254x300.png 254w, https://erjenrijnders.nl/wp-content/uploads/2019/04/started-wvd-600x708.png 600w" sizes="(max-width: 560px) 100vw, 560px" /></figure>



<h2 class="wp-block-heading" id="Add-users-to-your-desktop">Add users to your desktop</h2>



<p>As a final step, add users to your desktop:</p>



<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">Add-RdsAppGroupUser -TenantName $myTenantName -HostPoolName $hostpoolname -AppGroupName $appgroupname -UserPrincipalName upn</div></td></tr></tbody></table></div>

</pre>
<p>The post <a href="https://erjenrijnders.nl/2019/04/04/how-to-deploy-windows-virtual-desktop-in-azure/">How-to deploy Windows Virtual Desktop in Azure</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://erjenrijnders.nl/2019/04/04/how-to-deploy-windows-virtual-desktop-in-azure/feed/</wfw:commentRss>
			<slash:comments>47</slash:comments>
		
		
			</item>
		<item>
		<title>Azure Sentinel &#8211; The reinvented SIEM</title>
		<link>https://erjenrijnders.nl/2019/03/20/azure-sentinel-the-reinvented-siem/</link>
					<comments>https://erjenrijnders.nl/2019/03/20/azure-sentinel-the-reinvented-siem/#comments</comments>
		
		<dc:creator><![CDATA[Erjen]]></dc:creator>
		<pubDate>Wed, 20 Mar 2019 15:54:06 +0000</pubDate>
				<category><![CDATA[Azure security]]></category>
		<category><![CDATA[Azure]]></category>
		<category><![CDATA[Security and Compliance center]]></category>
		<guid isPermaLink="false">http://erjenrijnders.nl/?p=75888</guid>

					<description><![CDATA[<p>Why Azure Sentinel Azure Sentinel &#8211; Data connectors Azure Sentinel &#8211; Analytics Azure Sentinel &#8211; Cases Azure Sentinel &#8211; Overview [&#8230;]</p>
<p>The post <a href="https://erjenrijnders.nl/2019/03/20/azure-sentinel-the-reinvented-siem/">Azure Sentinel &#8211; The reinvented SIEM</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<ol class="wp-block-list"><li><a href="#WhyAzureSentinel"><strong>Why Azure Sentinel</strong></a></li><li><strong><a href="#AzureSentinelDataConnectors">Azure Sentinel &#8211; Data connectors</a></strong></li><li><strong><a href="#AzureSentinelAnalytics">Azure Sentinel &#8211; Analytics</a></strong></li><li><strong><a href="#AzureSentinelCases">Azure Sentinel &#8211; Cases</a></strong></li><li><strong><a href="#AzureSentinelOverview">Azure Sentinel &#8211; Overview page</a></strong></li></ol>



<h2 class="wp-block-heading" id="WhyAzureSentinel">Why Azure Sentinel</h2>



<p>Azure Sentinel is the latest, security related, innovation from Microsoft. Microsoft calls it a “reinvented SIEM” solution. Well, it’s not really innovation, it’s more of a combination of all security products of Microsoft. We have Cloud App Security, Azure Advanced Threat Protection, Security Events, Windows Firewall, Windows Azure Firewall etc. etc.<br><br>Azure Sentinel has not only built-in AI (which we expect from nowadays products from Microsoft), but it transcends the AI, already available in the product itself (like the AI in Identity Protection), but it creates an extra AI layer, on top of the already existing AI infrastructure which makes it really cool. So the AI of Sentinel doesn’t have to know the underlaying AI technology, it just needs to combine the output of every separate AI and create valuable input. Microsoft already uses this technique for years and because of their experience, it’s now broadly available.<br><br>Azure Sentinel has not only built-in AI (which we expect from nowadays products from Microsoft), but it transcends the AI, already available in the product itself (like the AI in Identity Protection), but it creates an extra AI layer, on top of the already existing AI infrastructure which makes it really cool. So the AI of Sentinel doesn’t have to know the underlaying AI technology, it just needs to combine the output of every separate AI and create valuable input. Microsoft already uses this technique for years and because of their experience, it’s now broadly available.<br><br>Let’s have a look at Azure Sentinel. Go to the Azure Portal and search for “Azure Sentinel”. As you can see it’s still in preview.</p>



<p>You need to
create a Log Analytics Workspace for Sentinel to work. As long as Sentinel is
in preview, you won’t pay anything, except costs like storage which you will
make creating a workspace.</p>



<figure class="wp-block-image"><img decoding="async" width="876" height="417" src="https://erjenrijnders.nl/wp-content/uploads/2019/03/create-azure-log-analytics-workspace-1.png" alt="" class="wp-image-75892" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/03/create-azure-log-analytics-workspace-1.png 876w, https://erjenrijnders.nl/wp-content/uploads/2019/03/create-azure-log-analytics-workspace-1-300x143.png 300w, https://erjenrijnders.nl/wp-content/uploads/2019/03/create-azure-log-analytics-workspace-1-768x366.png 768w, https://erjenrijnders.nl/wp-content/uploads/2019/03/create-azure-log-analytics-workspace-1-600x286.png 600w" sizes="(max-width: 876px) 100vw, 876px" /></figure>



<h2 class="wp-block-heading" id="AzureSentinelDataConnectors">Azure Sentinel &#8211; Data connectors</h2>



<p>The first page you see is the &#8220;Getting started&#8221; page. Click on &#8220;Collect data&#8221; to start collecting data.</p>



<figure class="wp-block-image"><img decoding="async" width="1024" height="384" src="https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-getting-started-1-1024x384.png" alt="" class="wp-image-75893" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-getting-started-1-1024x384.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-getting-started-1-300x113.png 300w, https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-getting-started-1-768x288.png 768w, https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-getting-started-1-600x225.png 600w, https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-getting-started-1.png 1231w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>You will see an overview of all the data you connect. It&#8217;s already a nice list of services you can connect. If you are already full onboarded in Azure/Office 365, you will have many relevant products to connect!</p>



<figure class="wp-block-image"><img decoding="async" width="1024" height="539" src="https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-data-connectors-1024x539.png" alt="" class="wp-image-75896" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-data-connectors-1024x539.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-data-connectors-300x158.png 300w, https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-data-connectors-768x404.png 768w, https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-data-connectors-600x316.png 600w, https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-data-connectors.png 1577w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Of course, we are going to connect &#8220;Azure Information Protection&#8221; first. You need to go to the &#8220;Azure Information Protection&#8221; tab Click &#8220;Azure Information Protection&#8221; and click &#8220;connect to your Azure Sentinel workspace&#8221;. </p>



<figure class="wp-block-image"><img decoding="async" width="951" height="683" src="https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-connect-AIP.png" alt="" class="wp-image-75898" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-connect-AIP.png 951w, https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-connect-AIP-300x215.png 300w, https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-connect-AIP-768x552.png 768w, https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-connect-AIP-600x431.png 600w" sizes="(max-width: 951px) 100vw, 951px" /></figure>



<p>Click on the Azure Sentinel workspace, you need to reconfigure the AIP log so that it stores the AIP information in the Azure Sentinel workspace (if you don&#8217;t see any, you should go to Azure Information Protection&#8221; and enable logging there) and also check the deeper analytics checkbox to see sensitive information types as well.</p>



<figure class="wp-block-image"><img decoding="async" width="829" height="135" src="https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-connect-AIP-sensitive.png" alt="" class="wp-image-75899" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-connect-AIP-sensitive.png 829w, https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-connect-AIP-sensitive-300x49.png 300w, https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-connect-AIP-sensitive-768x125.png 768w, https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-connect-AIP-sensitive-600x98.png 600w" sizes="(max-width: 829px) 100vw, 829px" /></figure>



<p>Now connect everything you want to connect, like Azure AD. Cool thing is that if you connect Office 365, you can connect multiple tenants! So I expect that more data connectors are going to be multi-tenant which mean we really have the reinvented SIEM.</p>



<figure class="wp-block-image"><img decoding="async" width="503" height="461" src="https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-connect-Azure-AD.png" alt="" class="wp-image-75901" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-connect-Azure-AD.png 503w, https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-connect-Azure-AD-300x275.png 300w" sizes="(max-width: 503px) 100vw, 503px" /></figure>



<h2 class="wp-block-heading" id="AzureSentinelAnalytics">Azure Sentinel &#8211; Analytics</h2>



<p>If you click in the Azure Sentinal tab on &#8220;Analytics&#8221;, you can create rules when you want to be alerted. For example you can create an alert when a virtual machine is created or updated. For more information, check the code example from <a href="https://docs.microsoft.com/en-us/azure/sentinel/tutorial-detect-threats">Microsoft Docs</a> as well.</p>



<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br />2<br />3<br />4<br />5<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">AzureActivity<br />
&nbsp;| where OperationName == &quot;Create or Update Virtual Machine&quot; or OperationName == &quot;Create Deployment&quot;<br />
&nbsp;| where ActivityStatus == &quot;Succeeded&quot;<br />
| extend AccountCustomEntity = ResourceGroup<br />
| extend IPCustomEntity = TenantId</div></td></tr></tbody></table></div>

</pre>



<p>You can create a lot of rules, but in my opinion it&#8217;s not that simple to configure the alerts you need. Especially if you need many specific rules. But this is still a preview version, I expect more options and simplifications in the general available version.</p>



<figure class="wp-block-image"><img decoding="async" width="580" height="816" src="https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-ip.png" alt="" class="wp-image-75915" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-ip.png 580w, https://erjenrijnders.nl/wp-content/uploads/2019/03/Azure-Sentinel-ip-213x300.png 213w" sizes="(max-width: 580px) 100vw, 580px" /></figure>



<h2 class="wp-block-heading" id="AzureSentinelCases">Azure Sentinel Cases</h2>



<p>A case in Sentinel is automatically created, once an event is triggered. Soon I will update this with more data.</p>



<h2 class="wp-block-heading" id="AzureSentinelOverview">Azure Sentinel Overview page</h2>



<p>In the “Overview” section, you have a nice dashboard of everything that is going on. See an example here below. It&#8217;s not much data yet, but this is from just a few hours. I will update this dashboard once I have more detailed information.</p>



<figure class="wp-block-image"><img decoding="async" width="852" height="412" src="http://erjenrijnders.nl/wp-content/uploads/2019/03/Sentinel-overview.png" alt="" class="wp-image-75924" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/03/Sentinel-overview.png 852w, https://erjenrijnders.nl/wp-content/uploads/2019/03/Sentinel-overview-300x145.png 300w, https://erjenrijnders.nl/wp-content/uploads/2019/03/Sentinel-overview-768x371.png 768w, https://erjenrijnders.nl/wp-content/uploads/2019/03/Sentinel-overview-600x290.png 600w" sizes="(max-width: 852px) 100vw, 852px" /><figcaption>Sentinel-overview</figcaption></figure>
<p>The post <a href="https://erjenrijnders.nl/2019/03/20/azure-sentinel-the-reinvented-siem/">Azure Sentinel &#8211; The reinvented SIEM</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://erjenrijnders.nl/2019/03/20/azure-sentinel-the-reinvented-siem/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Microsoft Ignite day 5</title>
		<link>https://erjenrijnders.nl/2018/09/28/microsoft-ignite-day-5/</link>
					<comments>https://erjenrijnders.nl/2018/09/28/microsoft-ignite-day-5/#respond</comments>
		
		<dc:creator><![CDATA[Erjen]]></dc:creator>
		<pubDate>Fri, 28 Sep 2018 18:13:13 +0000</pubDate>
				<category><![CDATA[Ignite 2018]]></category>
		<category><![CDATA[Azure-information-protection]]></category>
		<category><![CDATA[Security and Compliance center]]></category>
		<category><![CDATA[BYOK]]></category>
		<category><![CDATA[HYOK]]></category>
		<category><![CDATA[Windows 10 Virtual Desktop]]></category>
		<guid isPermaLink="false">http://erjenrijnders.nl/?p=75852</guid>

					<description><![CDATA[<p>As you know by now (by reading my previous blog posts), I focus mostly on Information Protection and compliance from [&#8230;]</p>
<p>The post <a href="https://erjenrijnders.nl/2018/09/28/microsoft-ignite-day-5/">Microsoft Ignite day 5</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>As you know by now (by reading my previous blog posts), I focus mostly on Information Protection and compliance from a technical point of view and this blog post will cover a lot regarding that. Today, I wasn’t able to visit as many sessions as the last four days because I need a plane to catch in a few hours, but I still got a few interesting things to share.</p>
<h1>Index:</h1>
<ol>
<li><a href="#security-and-compliance-center">Security and Compliance center</a></li>
<li><a href="#service-encryption">Service Encryption</a></li>
<li><a href="#advanced-e-discovery">Advanced E-Discovery</a></li>
<li><a href="#windows-virtual-desktop">Windows Virtual Desktop, RDMI &amp; Windows 10 Multi-User</a></li>
</ol>
<h1><a id="security-and-compliance-center"></a>Security and Compliance center</h1>
<p>Microsoft covers a big part protecting us from malicious tools and attackers, but there is still a part that we must do. And I can tell you that it is the most important part, like activating MFA, encrypting sensitive data etc. This slides covers what Microsoft does and what you have to do.</p>
<p><img decoding="async" class="alignnone wp-image-75853" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/1-Microsoft-us-responsibilities-data-protection.png" alt="" width="683" height="385" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/1-Microsoft-us-responsibilities-data-protection.png 1657w, https://erjenrijnders.nl/wp-content/uploads/2018/09/1-Microsoft-us-responsibilities-data-protection-300x169.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/1-Microsoft-us-responsibilities-data-protection-768x432.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/1-Microsoft-us-responsibilities-data-protection-1024x577.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/1-Microsoft-us-responsibilities-data-protection-600x338.png 600w" sizes="(max-width: 683px) 100vw, 683px" /></p>
<p>So about the part that we are responsible of, Microsoft provides us multiple tools. How do AIP and OME help with compliance? Check this slide.</p>
<p><img decoding="async" class="alignnone wp-image-75854" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/Screenshot_4.png" alt="" width="550" height="317" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/Screenshot_4.png 1628w, https://erjenrijnders.nl/wp-content/uploads/2018/09/Screenshot_4-300x172.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/Screenshot_4-768x442.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/Screenshot_4-1024x589.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/Screenshot_4-600x345.png 600w" sizes="(max-width: 550px) 100vw, 550px" /></p>
<p>There are certain scenario’s that you don’t want that Microsoft manages your key. Some regulatory reasons might require you to manage your key so the security is end-to-end. BYOK might be sufficient since you can store your own key in Azure Key Vault. If that isn’t even good enough you have the HYOK where you store it on-premises. Keep in mind that this option is much less flexible. You only have access to your secured documents as long as you can reach the on-premises key for decryption. Here is an overview of licensing.</p>
<p><img decoding="async" class="alignnone wp-image-75858" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/SKUs-BYOK-HYOK.png" alt="" width="625" height="351" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/SKUs-BYOK-HYOK.png 1577w, https://erjenrijnders.nl/wp-content/uploads/2018/09/SKUs-BYOK-HYOK-300x169.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/SKUs-BYOK-HYOK-768x431.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/SKUs-BYOK-HYOK-1024x575.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/SKUs-BYOK-HYOK-600x337.png 600w" sizes="(max-width: 625px) 100vw, 625px" /></p>
<p>Here is a great overview of BYOK. It makes clear that it is as flexible as the Microsoft-managed keys, but it does give you more overhead since you need to manage the key now.</p>
<p><img decoding="async" class="alignnone wp-image-75857" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/BYOK-technology.png" alt="BYOK-technology" width="611" height="335" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/BYOK-technology.png 1646w, https://erjenrijnders.nl/wp-content/uploads/2018/09/BYOK-technology-300x165.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/BYOK-technology-768x421.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/BYOK-technology-1024x562.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/BYOK-technology-600x329.png 600w" sizes="(max-width: 611px) 100vw, 611px" /></p>
<p>Some good insights when using BYOK.</p>
<p><img decoding="async" class="alignnone wp-image-75859" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/BYOK-important-points.png" alt="" width="595" height="319" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/BYOK-important-points.png 1563w, https://erjenrijnders.nl/wp-content/uploads/2018/09/BYOK-important-points-300x161.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/BYOK-important-points-768x412.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/BYOK-important-points-1024x549.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/BYOK-important-points-600x322.png 600w" sizes="(max-width: 595px) 100vw, 595px" /></p>
<h1><a id="service-encryption"></a>Service Encryption</h1>
<p>Some good news, if we use the Microsoft-managed keys or BYOK, we will have service encryption in Exchange Online, starting to rollout in January 2019 (already available in SharePoint). Once we create a Data Encryption Policy (DEP), It will encrypt our data at storage level. This is required if you want to meet compliance.</p>
<p><img decoding="async" class="alignnone wp-image-75860" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/EXchange-Online-Access-Flow.png" alt="" width="542" height="320" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/EXchange-Online-Access-Flow.png 1456w, https://erjenrijnders.nl/wp-content/uploads/2018/09/EXchange-Online-Access-Flow-300x177.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/EXchange-Online-Access-Flow-768x453.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/EXchange-Online-Access-Flow-1024x604.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/EXchange-Online-Access-Flow-600x354.png 600w" sizes="(max-width: 542px) 100vw, 542px" /></p>
<p>&nbsp;</p>
<h1><a id="advanced-e-discovery"></a>Advanced E-Discovery</h1>
<p>With the advanced E-Discovery set in Office 365 by using the analytics, we can further minimize the data. It will deduplicate data for example and only present us with relevant data. We are also presented now with a much better E-Discovery dashboard. We see what kind of data the hold holds, but we are also able to communicate with the persons in a specific hold, make searches in it etc. Great improvement!</p>
<p><img decoding="async" class="alignnone wp-image-75861" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/legal-hold-dashboard.png" alt="legal-hold-dashboard" width="655" height="369" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/legal-hold-dashboard.png 1696w, https://erjenrijnders.nl/wp-content/uploads/2018/09/legal-hold-dashboard-300x169.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/legal-hold-dashboard-768x432.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/legal-hold-dashboard-1024x577.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/legal-hold-dashboard-600x338.png 600w" sizes="(max-width: 655px) 100vw, 655px" /></p>
<p>Now creating a Legal Hold is doable, but not that easy. But it will be! Here is a great overview of how it is now and how it will be very soon.</p>
<p><img decoding="async" class="alignnone wp-image-75862" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/legal-hold-process.png" alt="" width="624" height="346" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/legal-hold-process.png 1552w, https://erjenrijnders.nl/wp-content/uploads/2018/09/legal-hold-process-300x166.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/legal-hold-process-768x425.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/legal-hold-process-1024x567.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/legal-hold-process-600x332.png 600w" sizes="(max-width: 624px) 100vw, 624px" /></p>
<p>So these are some great new features! For sure you will see a more in-depth bog when it’s available.</p>
<p>&nbsp;</p>
<h1><a id="windows-virtual-desktop"></a>Windows Virtual Desktop, RDMI &amp; Windows 10 Multi-User</h1>
<p>Now also a little bit of info about Windows Virtual Desktop, as I can imagine you want to see some updates about this as well. One of the bigger announcements is Windows 10 Multi-User within Windows Virtual Desktop, so you will connect to shared hardware. If you spin up a Windows Virtual Desktop, you can decide how many users you want to connect to that VM which makes it a lot cheaper. There will be a Windows Desktop Calculator soon which gives some recommendations of this, based on the chosen size.</p>
<p>Automatic scaling will be available as well. You can auto scale based on two methods: Breath Mode and Depth Mode. The Breath Mode needs reserved instances so turning off a Virtual Desktop doesn’t help you. However, this can still be cheaper, that’s something you need to calculate. The Depth Mode is based on activity. If no users are logged in anymore in a Virtual Desktop, it will automatically turn off the VM and it will save you money. On the other hand if it’s too busy, it will spin up some new VM’s.</p>
<p>Windows Virtual Desktop will be available through the Azure Marketplace.</p>
<p>&nbsp;</p>
<p>The post <a href="https://erjenrijnders.nl/2018/09/28/microsoft-ignite-day-5/">Microsoft Ignite day 5</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://erjenrijnders.nl/2018/09/28/microsoft-ignite-day-5/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Microsoft Ignite day 4</title>
		<link>https://erjenrijnders.nl/2018/09/27/microsoft-ignite-day-4/</link>
					<comments>https://erjenrijnders.nl/2018/09/27/microsoft-ignite-day-4/#respond</comments>
		
		<dc:creator><![CDATA[Erjen]]></dc:creator>
		<pubDate>Thu, 27 Sep 2018 21:07:19 +0000</pubDate>
				<category><![CDATA[Ignite 2018]]></category>
		<category><![CDATA[intune]]></category>
		<category><![CDATA[intune data warehouse]]></category>
		<category><![CDATA[azure blueprints]]></category>
		<category><![CDATA[ignite-2018]]></category>
		<category><![CDATA[ignite 2018 day 4]]></category>
		<category><![CDATA[password-less]]></category>
		<category><![CDATA[external sharing]]></category>
		<category><![CDATA[sharepoint]]></category>
		<category><![CDATA[onedrive]]></category>
		<category><![CDATA[androind management api]]></category>
		<guid isPermaLink="false">http://erjenrijnders.nl/?p=75810</guid>

					<description><![CDATA[<p>At first, I was a little sceptical about day 4 as I didn&#8217;t receive that much announcements in day 3 [&#8230;]</p>
<p>The post <a href="https://erjenrijnders.nl/2018/09/27/microsoft-ignite-day-4/">Microsoft Ignite day 4</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>At first, I was a little sceptical about day 4 as I didn&#8217;t receive that much announcements in day 3 so I thought of combining day 4 and 5. But what a day, so many announcements! Especially, check chapter 5 &#8220;Integrated Information Protection in external sharing SharePoint and OneDrive&#8221;, it&#8217;s fabulous. Here is Ignite day 4.</p>
<h1>Index:</h1>
<ol>
<li><a href="#azure-blueprints">Azure Blueprints</a></li>
<li><a href="#intune-data-warehouse">Intune Data Warehouse</a></li>
<li><a href="#intune-and-android-enterprise-management">Intune and Android Enterprise Management</a></li>
<li><a href="#android-management-api">Android Management API</a></li>
<li><a href="#integrated-information-protection-external-sharing-sharepoint-onedrive">Integrated Information Protection in external sharing SharePoint and OneDrive</a></li>
<li><a href="#experiences-password-less">Experiences with going password-less</a></li>
</ol>
<h1><a id="azure-blueprints"></a>Azure Blueprints</h1>
<p>With Azure Blueprints, announced very recently, you will get a blueprint that if you spin up a new subscription, you deploy the same policies, templates, security etc. In larger organizations, this is very helpful, you have your exact company policies spinned up in minutes! To activate this, go to the Azure Portal &gt; Policy &gt; Blueprints – Blueprint Definitions.</p>
<p><img decoding="async" class="alignnone wp-image-75812" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/Azure-Blueprints.png" alt="" width="607" height="257" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/Azure-Blueprints.png 1020w, https://erjenrijnders.nl/wp-content/uploads/2018/09/Azure-Blueprints-300x127.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/Azure-Blueprints-768x325.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/Azure-Blueprints-600x254.png 600w" sizes="(max-width: 607px) 100vw, 607px" /></p>
<h1><a id="intune-data-warehouse"></a>Intune Data Warehouse</h1>
<p>At some point, if you are using Intune, you will face the problems generating reports in Intune. Fortunately, we have Intune Data Warehouse. I visited a session today at the Ignite Expo where I saw some great reports so let’s see how we actually start using Intune Data Warehouse. Go into the Azure Portal &gt; Intune and on the right, Click “Set up Intune Data Warehouse” and click “Download Power BI file”.</p>
<p><img decoding="async" class="alignnone wp-image-75813" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/download-powerbi-file.png" alt="" width="604" height="290" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/download-powerbi-file.png 2070w, https://erjenrijnders.nl/wp-content/uploads/2018/09/download-powerbi-file-300x144.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/download-powerbi-file-768x369.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/download-powerbi-file-1024x492.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/download-powerbi-file-600x288.png 600w" sizes="(max-width: 604px) 100vw, 604px" /></p>
<p>If the data is processed, you can directly start creating custom reports in Power BI. It’s just that easy. I know this is not new, but really, we should start using this a lot more so that we can get in-depth reports about our devices in the organization.</p>
<p><img decoding="async" class="alignnone wp-image-75814" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/intune-power-bi.png" alt="" width="655" height="434" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/intune-power-bi.png 1692w, https://erjenrijnders.nl/wp-content/uploads/2018/09/intune-power-bi-300x199.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/intune-power-bi-768x509.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/intune-power-bi-1024x678.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/intune-power-bi-600x398.png 600w" sizes="(max-width: 655px) 100vw, 655px" /></p>
<p>&nbsp;</p>
<h1><a id="intune-and-android-enterprise-management"></a>Intune and Android Enterprise Management</h1>
<p>In this session, some really great features are announced! Android Enterprise is evolving for sure. In Android Nougat (Android 7.0), we had the availability for Work Profiles in Android Enterprise, which we used a lot and worked great. Android Oreo (Android 8.0) took this even to a next level. Here you have a great overview of the new features each version.</p>
<p><img decoding="async" class="alignnone wp-image-75818" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/android-enterprise-evolving.jpg" alt="" width="714" height="405" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/android-enterprise-evolving.jpg 3749w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-enterprise-evolving-300x170.jpg 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-enterprise-evolving-768x436.jpg 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-enterprise-evolving-1024x581.jpg 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-enterprise-evolving-600x340.jpg 600w" sizes="(max-width: 714px) 100vw, 714px" /></p>
<p>Google discourages non-Work Profile as well because it requires Device Admin for the Intune App. that means that if we use the android App Managed mode, the user needs to give Device Admin rights to the Intune app and it needs to go through a lot of &#8220;Accept&#8221; screens as well. That scares of the user and we want the opposite. So you should use the &#8220;Work Profile&#8221; in Android Enterprise in my opinion if you use BYOD. You can separate apps from personal in this mode, you even create containerized apps which means that you could prohibit copying work information to personal owned apps.</p>
<p><img decoding="async" class="alignnone wp-image-75823" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/google-discourage-device-admin.jpg" alt="" width="619" height="351" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/google-discourage-device-admin.jpg 4321w, https://erjenrijnders.nl/wp-content/uploads/2018/09/google-discourage-device-admin-300x170.jpg 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/google-discourage-device-admin-768x435.jpg 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/google-discourage-device-admin-1024x581.jpg 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/google-discourage-device-admin-600x340.jpg 600w" sizes="(max-width: 619px) 100vw, 619px" /></p>
<p>Now if you have corporate owned devices, you have three options and later this year, you have four. The third is Dedicated mode (it’s basically a kiosk mode). With Kiosk Mode, the user has no flexibility at all. It can only open the apps provided by the company. This is, however, very functional in certain security related scenario&#8217;s. The last one, Fully Managed, will be available for preview this year. This gives you great user experience and manageability, integrated with the Androind Management API (see next chapter).</p>
<p><img decoding="async" class="alignnone wp-image-75817" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/androind-enterprise.jpg" alt="" width="656" height="406" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/androind-enterprise.jpg 4108w, https://erjenrijnders.nl/wp-content/uploads/2018/09/androind-enterprise-300x186.jpg 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/androind-enterprise-768x475.jpg 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/androind-enterprise-1024x633.jpg 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/androind-enterprise-600x371.jpg 600w" sizes="(max-width: 656px) 100vw, 656px" /></p>
<p>&nbsp;</p>
<h1><a id="android-management-api"></a>Android Management API</h1>
<p>another great feature is that the Android Enterprise devices now communicate with the Android Management API. this means that Android and Intune can now provide updates and new functionalities at a speed that was never possible before.</p>
<p><img decoding="async" class="alignnone wp-image-75820" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/android-management-api.jpg" alt="" width="592" height="336" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/android-management-api.jpg 4098w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-management-api-300x170.jpg 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-management-api-768x435.jpg 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-management-api-1024x580.jpg 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-management-api-600x340.jpg 600w" sizes="(max-width: 592px) 100vw, 592px" /></p>
<p>I am getting a little bored if I read my blog again for readability if I keep saying: another great feature! But how do I say this else, here is another great feature, Managed Google Play! This provides mobile app management in Android Enterprise, including silent installs for required apps. We can also now control over what apps ends users can install in work context. In addition to this, we have the possibility to fully configure, for example the Outlook app, before it gets installed on the client device. The Managed Google Play will be available through the Intune Portal. No separate login necessary.</p>
<p><img decoding="async" class="alignnone wp-image-75821" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/managed-google-play.jpg" alt="" width="681" height="368" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/managed-google-play.jpg 4375w, https://erjenrijnders.nl/wp-content/uploads/2018/09/managed-google-play-300x162.jpg 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/managed-google-play-768x415.jpg 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/managed-google-play-1024x553.jpg 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/managed-google-play-600x324.jpg 600w" sizes="(max-width: 681px) 100vw, 681px" /></p>
<p>&nbsp;</p>
<p>Google developed zero-touch with Intune. This is available with any Android Enterprise corp-owned deployment. This already works today with the dedicated device scenario and Android 8. This has some great feature updates however. If you go to <a href="https://partner.android.com">https://partner.android.com</a>, you can automatically assign a device to corporate policy and assigning a device to your company is going very smoothly. Check the screenshots below.</p>
<p><img decoding="async" class="alignnone wp-image-75824" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch.jpg" alt="" width="558" height="334" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch.jpg 4161w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-300x180.jpg 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-768x460.jpg 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-1024x613.jpg 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-600x359.jpg 600w" sizes="(max-width: 558px) 100vw, 558px" /> <img decoding="async" class="alignnone wp-image-75825" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-0.jpg" alt="" width="558" height="305" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-0.jpg 3928w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-0-300x164.jpg 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-0-768x420.jpg 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-0-1024x560.jpg 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-0-600x328.jpg 600w" sizes="(max-width: 558px) 100vw, 558px" /> <img decoding="async" class="alignnone wp-image-75826" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-1.jpg" alt="" width="561" height="306" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-1.jpg 4653w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-1-300x164.jpg 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-1-768x419.jpg 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-1-1024x558.jpg 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-1-600x327.jpg 600w" sizes="(max-width: 561px) 100vw, 561px" /> <img decoding="async" class="alignnone wp-image-75827" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-2.jpg" alt="" width="560" height="556" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-2.jpg 2289w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-2-150x150.jpg 150w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-2-300x298.jpg 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-2-768x763.jpg 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-2-1024x1017.jpg 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-2-600x596.jpg 600w, https://erjenrijnders.nl/wp-content/uploads/2018/09/android-zero-touch-2-100x100.jpg 100w" sizes="(max-width: 560px) 100vw, 560px" /></p>
<p>&nbsp;</p>
<h1><a id="integrated-information-protection-external-sharing-sharepoint-onedrive"></a>Integrated Information Protection in external sharing SharePoint and OneDrive</h1>
<p>Wow, I never saw so many new features on such a relatively small part of a product. The session was 75 minutes but it didn&#8217;t bore me a minute! They received a big applause as well, so let&#8217;s start.</p>
<h2>Smart People Picker and sharing</h2>
<p>The first new feature we have this year is the Smart People Picker. If you share a link, you will be presented with suggestions of people that SharePoint thinks you want to share the document with. Machine learning is behind this so it will take some time to present you with the right results, but it will get there (if it&#8217;s not there already). This sharing experience will be exactly the same on mobile and the same experience is built in Microsoft Teams. Sharing capabilities supports branding now which is integrated with the Azure AD branding functionality. So if you already configured that, it will work right away, as soon as this feature is rolled-out globally.</p>
<h2>Link Reminders</h2>
<p>Another feature that we were actually missing (but didn&#8217;t realize I did miss it till now) is that if someone opens a link, we can get a confirmation email that the link is clicked. If you share a link, it&#8217;s possible that the receiver didn&#8217;t open the link yet. There is a 95% change that if the link isn&#8217;t opened in 7 days, it will never be opened. So now we can configure automatic reminders that tells you if the link is not opened yet. Another new feature is that you can set a custom message on the &#8220;request access&#8221; page if you are trying to access a specific site or document.</p>
<h2>One-time passwords on link sharing</h2>
<p>Link sharing has further improved security. You can configure a one-time password for opening a document. It&#8217;s great for reviewing and for making sure that the recipient can only watch it once. Also, we can set per site specific sharing setting. Currently, if you disable the &#8220;Anyone&#8221; sharing setting, it&#8217;s effective for your whole tenant. So now it&#8217;s possible to configure this per site.</p>
<h2>Block file downloads</h2>
<p>The next feature is in my opinion the best feature. We can block downloads on a file and make it read only. With this new &#8220;Information Protection&#8221; possibility, we can fully control our documents and still collaborate in that same document. If you enable this setting, the file cannot be downloaded, printed, copied etc. Before, this was only possible if we classify documents and apply encryption. There was no other way of keeping control of your files. Now it&#8217;s possible without Azure Information Protection.</p>
<p><img decoding="async" class="alignnone wp-image-75833" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/block-downloads.jpg" alt="" width="621" height="409" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/block-downloads.jpg 4169w, https://erjenrijnders.nl/wp-content/uploads/2018/09/block-downloads-300x198.jpg 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/block-downloads-768x506.jpg 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/block-downloads-1024x675.jpg 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/block-downloads-600x395.jpg 600w" sizes="(max-width: 621px) 100vw, 621px" /></p>
<h2>Collaboration improvements</h2>
<p>Collaboration is an important part of our job every day and I am happy to tell you that collaboration in SharePoint and OneDrive is extended big time. For example if you are working in a PowerPoint presentation and you like having someone else checking your slide, you just mention someone at the side of the slide like you are used to be now. Use the @name format and the person will be notified by email immediately. This works for Office apps on Windows soon and will come later this year for MacOS as well.</p>
<p>In Microsoft Teams, we also have a new functionality. If we are uploading new files, we have the possibility to notify team members that you uploaded files.</p>
<h2>Admin control settings enhancements</h2>
<p>For the admin, we have more settings now we can control.</p>
<p><img decoding="async" class="alignnone wp-image-75832" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/20180927_131039.jpg" alt="" width="659" height="495" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/20180927_131039.jpg 4160w, https://erjenrijnders.nl/wp-content/uploads/2018/09/20180927_131039-300x225.jpg 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/20180927_131039-768x576.jpg 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/20180927_131039-1024x768.jpg 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/20180927_131039-600x450.jpg 600w" sizes="(max-width: 659px) 100vw, 659px" /></p>
<h2>Expiring links for external access</h2>
<p>And last but not least, we can set expiring links for external access! I think this is a really good feature because I get the question a lot: how can I keep control of shared files externally. Of course there are ways like Cloud App Security, make a person responsible for checking shared links etc. But why not just let the link expire? For example after 6 months? Sounds totally reasonable to me. If there is access needed after that time, you can just re-share the link.</p>
<h1><a id="experiences-password-less"></a>Experiences with going password-less</h1>
<p>Well, this one gave some new insights about the password-less world. Microsoft wants to get rid of passwords with good reasons, but it&#8217;s not that easy. Microsoft presents you with 4 simple steps:</p>
<ol>
<li>Implement Windows Hello For Business</li>
<li>Reduce user-visible password surface area</li>
<li>Transition into password-less deployment</li>
<li>Eliminate password from identity directory</li>
</ol>
<p>And this is all assuming that you can even make it to step 4. The biggest problem is with your on-premises apps. It can be very hard to transform these apps to password-less sign in so keep that into account. The non-marketing way of achieving this is a lot harder.</p>
<p>The post <a href="https://erjenrijnders.nl/2018/09/27/microsoft-ignite-day-4/">Microsoft Ignite day 4</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://erjenrijnders.nl/2018/09/27/microsoft-ignite-day-4/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Microsoft Ignite day 3</title>
		<link>https://erjenrijnders.nl/2018/09/27/microsoft-ignite-day-3/</link>
					<comments>https://erjenrijnders.nl/2018/09/27/microsoft-ignite-day-3/#respond</comments>
		
		<dc:creator><![CDATA[Erjen]]></dc:creator>
		<pubDate>Thu, 27 Sep 2018 02:18:03 +0000</pubDate>
				<category><![CDATA[Ignite 2018]]></category>
		<category><![CDATA[conditional access]]></category>
		<category><![CDATA[microsoft secure score]]></category>
		<category><![CDATA[identity protection]]></category>
		<category><![CDATA[cloud app security]]></category>
		<category><![CDATA[Azure AD]]></category>
		<category><![CDATA[intune]]></category>
		<guid isPermaLink="false">http://erjenrijnders.nl/?p=75777</guid>

					<description><![CDATA[<p>Azure AD Conditional Access We have some great new features in Azure AD Conditional Access, they are really taking it [&#8230;]</p>
<p>The post <a href="https://erjenrijnders.nl/2018/09/27/microsoft-ignite-day-3/">Microsoft Ignite day 3</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h1><a id="azure-ad-conditional-access"></a>Azure AD Conditional Access</h1>
<p>We have some great new features in Azure AD Conditional Access, they are really taking it to a next level. Conditional Access has now tight integration with Cloud App Security. It’s now possible to fully control and secure our data and information when you collaborate with a partner (B2B) or within your own tenant.</p>
<h1>Index:</h1>
<ol>
<li><a href="#azure-ad-conditional-access" rel="noopener">Azure AD Conditional Access</a></li>
<li><a href="#cloud-app-security-defender-atp" rel="noopener">Cloud App Security integration with Windows Defender ATP</a></li>
<li><a href="#microsoft-secure-score" rel="noopener">Microsoft Secure Score</a></li>
<li><a href="#identity-protection">Identity Protection</a></li>
<li><a href="#intune-updates">Intune Updates</a></li>
</ol>
<p>As you might probably now, Cloud App Security has tight integration with SharePoint already but now we can control on file level if a download for example is allowed or not. Check this screenshot below from the Ignite presentation:</p>
<p><img decoding="async" class="alignnone wp-image-75780" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/cloud-app-security-download-blocked.png" alt="cloud-app-security-download-blocked" width="627" height="335" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/cloud-app-security-download-blocked.png 1996w, https://erjenrijnders.nl/wp-content/uploads/2018/09/cloud-app-security-download-blocked-300x160.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/cloud-app-security-download-blocked-768x410.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/cloud-app-security-download-blocked-1024x546.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/cloud-app-security-download-blocked-600x320.png 600w" sizes="(max-width: 627px) 100vw, 627px" /></p>
<p>Another great update is that we can now enable Conditional Access App Control for Office applications. Before this was only possible with SAML-based apps. Based on the risk level of a user’s session, information can be accessed or blocked. Also risky OAuth applications can now be blocked with Cloud App Security. These updates make Cloud App Security even more powerful. If you aren’t using it right now, you should! It makes your organization a lot more secure.</p>
<p>Well, enough updates around Conditional Access right? It goes even further. We can not only control Exchange, but specific mailboxes within an account. The command runs as follows to enable this feature:</p>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">Set-OwaMailboxPolicy –Identity user –ConditionalAccessPolicy $true</div></td></tr></tbody></table></div>
<p>This command does not work yet and to be honest, I am not sure what it will actually do as I cannot test it yet. But I expect we will have some sub-commands in the near future to further control this.</p>
<h1><a id="cloud-app-security-defender-atp"></a>Cloud App Security integration with Windows Defender ATP</h1>
<p>Cloud App Security is now integrated with Windows Defender ATP! At first, we needed to install a Cloud App Security client which was too much because we had already so many clients installed. So they came up with the Cloud App Security broker which was an improvement on the client side, but then we needed to proxy all our traffic through it. We now we have the best solution, integration with Windows Defender ATP! I personally love this because configuring a separate gateway is no longer necessary. All traffic can be routed through Defender ATP (and the Defender client is installed by default with Windows 10). This is a great way of securing your information and it makes controlling your devices very easy. Here you can see information is being fed from Windows Defender ATP.</p>
<p><img decoding="async" class="alignnone wp-image-75781" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/cloud-app-security-defender-atp.png" alt="cloud-app-security-defender-atp" width="656" height="307" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/cloud-app-security-defender-atp.png 2563w, https://erjenrijnders.nl/wp-content/uploads/2018/09/cloud-app-security-defender-atp-300x140.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/cloud-app-security-defender-atp-768x359.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/cloud-app-security-defender-atp-1024x479.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/cloud-app-security-defender-atp-600x281.png 600w" sizes="(max-width: 656px) 100vw, 656px" /></p>
<p>In Windows Defender ATP, you only have to enable this.</p>
<p><img decoding="async" class="alignnone wp-image-75782" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/cloud-app-security-defender-atp-settings.png" alt="cloud-app-security-defender-atp-settings" width="581" height="362" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/cloud-app-security-defender-atp-settings.png 1407w, https://erjenrijnders.nl/wp-content/uploads/2018/09/cloud-app-security-defender-atp-settings-300x187.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/cloud-app-security-defender-atp-settings-768x478.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/cloud-app-security-defender-atp-settings-1024x637.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/cloud-app-security-defender-atp-settings-600x373.png 600w" sizes="(max-width: 581px) 100vw, 581px" /></p>
<p>After enabling this setting, it will Cloud App Security feed traffic and device information from Windows Defender ATP.</p>
<h1><a id="microsoft-secure-score"></a>Microsoft Secure Score</h1>
<p>We have heard in almost every session that we should enable Microsoft Secure Score. I do agree that we should enable it on all our tenants (so I am telling you again now :)) and it is also enabled now through Azure Active Directory (you can go to <a href="https://securescore.microsoft.com/">https://securescore.microsoft.com/</a> as well). It looks like this:</p>
<p><img decoding="async" class="alignnone wp-image-75783" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/laborie-secure-score.png" alt="laborie-secure-score" width="619" height="408" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/laborie-secure-score.png 2219w, https://erjenrijnders.nl/wp-content/uploads/2018/09/laborie-secure-score-300x198.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/laborie-secure-score-768x506.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/laborie-secure-score-1024x675.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/laborie-secure-score-600x395.png 600w" sizes="(max-width: 619px) 100vw, 619px" /></p>
<p>It looks good and it will only show the score that you have access too. Like if you don’t have EM+S E5, you won’t see identity protection related security scores.</p>
<h1><a id="identity-protection"></a>Identity Protection</h1>
<p>Identity Protection does now have integration with Azure ATP. Azure ATP is a security service based on DNS checks. Risky sign-ins from these two products can now be viewed from a single panel. And of course, we can apply conditional access on this. If Azure ATP feeds Identity Protection with a risky sign-on, it can be blocked, based on your Conditional Access settings. Combining these two sources, you have a very powerful solution. You see all high risk devices and users and all items that needs attention are presented through one combined interface.</p>
<p><img decoding="async" class="alignnone wp-image-75802" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/Identity-protection-azure-atp.png" alt="Identity-protection-azure-atp" width="582" height="423" /></p>
<h1><a id="intune-updates"></a>Intune updates</h1>
<p>As you might know by now is that my main focus is within the &#8220;Information Protection&#8221; field which includes parts of Cloud App Security and Intune as well. So I wanted to post some updates around Intune, Windows Information Protection (which is part of Intune) and device management. That&#8217;s why I visited the session &#8220;What’s new in Windows 10 mobile device management (MDM)&#8221; . But right from the start I thought: Are we really going to do this for 75 minutes? I barely heard anything new and I love to share new stuff to the world. For example the presenter said that we should focus on co-management, 1 of 3 points she gave as a call-to-action. Isn&#8217;t this already possible for years now?</p>
<p>Also, we were presented slides like this:</p>
<p><img decoding="async" class="alignnone wp-image-75778" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/intune-slide1.png" alt="intune-slide1" width="573" height="314" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/intune-slide1.png 1644w, https://erjenrijnders.nl/wp-content/uploads/2018/09/intune-slide1-300x164.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/intune-slide1-768x421.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/intune-slide1-1024x561.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/intune-slide1-600x329.png 600w" sizes="(max-width: 573px) 100vw, 573px" /></p>
<p>Really? I want to see what’s NEW. Anyway, a little good news however, Kiosk mode control is now generally available and we will get better security baselines for Microsoft Intune. Maybe you have another opinion about this session, I would love to hear from you through comments below.</p>
<p>So this is basically it. We saw a lot of sessions but a lot of sessions presented content already covered in day 1 and 2. I don’t expect much more announcements in day 4 and 5. Maybe I will wrap them together in one blogpost, depending on the content of tomorrow.</p>
<p>But still, Ignite brought me definitely the sessions above expectations!</p>
<p>&nbsp;</p>
<p>The post <a href="https://erjenrijnders.nl/2018/09/27/microsoft-ignite-day-3/">Microsoft Ignite day 3</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://erjenrijnders.nl/2018/09/27/microsoft-ignite-day-3/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Microsoft Information Protection: Unified labeling!</title>
		<link>https://erjenrijnders.nl/2018/09/25/microsoft-information-protection-unified-labeling/</link>
					<comments>https://erjenrijnders.nl/2018/09/25/microsoft-information-protection-unified-labeling/#respond</comments>
		
		<dc:creator><![CDATA[Erjen]]></dc:creator>
		<pubDate>Tue, 25 Sep 2018 22:02:08 +0000</pubDate>
				<category><![CDATA[Ignite 2018]]></category>
		<category><![CDATA[Azure Information Protection]]></category>
		<category><![CDATA[microsoft-information-protection]]></category>
		<category><![CDATA[unified labeling]]></category>
		<category><![CDATA[dlp]]></category>
		<category><![CDATA[office information protection]]></category>
		<category><![CDATA[windows information protection]]></category>
		<category><![CDATA[Azure-information-protection]]></category>
		<category><![CDATA[aip]]></category>
		<guid isPermaLink="false">http://erjenrijnders.nl/?p=75742</guid>

					<description><![CDATA[<p>Unified labeling with Microsoft Information Protection Because this is such a great feature (within Microsoft Information Protection), I will dedicate a [&#8230;]</p>
<p>The post <a href="https://erjenrijnders.nl/2018/09/25/microsoft-information-protection-unified-labeling/">Microsoft Information Protection: Unified labeling!</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h1><a id="unified-labeling"></a>Unified labeling with Microsoft Information Protection</h1>
<p>Because this is such a great feature (within Microsoft Information Protection), I will dedicate a seperate blogpost about this, instead of processing this in the <a href="https://erjenrijnders.nl/2018/09/25/microsoft-ignite-day-2/">Ignite Day 2</a> blogpost (which you should still read by the way for an overview of selected updates).</p>
<p>All the labeling and encryption technologies throughout the Microsoft stack (currently Windows Information Protection, Office Information Protection and Azure Information Protection), will be manageable from one interface: <a href="https://admin.microsoft.com" target="_blank" rel="noopener">https://admin.microsoft.com</a> and will be called Microsoft Information Protection. At the end of this year, we should have it all. But not only that, we will also have native labeling and encryption with all Microsoft Office apps! So also on Mac, Android and iOS. That’s very cool right? Notice that if you want this native encryption without installing the AIP client, you should use Microsoft Information Protection. Those labels are cross-application compatible. Microsoft will bring out some sort of migration possibility from AIP to WIP by the way.</p>
<h2>Index:</h2>
<ol>
<li><a href="#unified-labeling">Unified labeling</a></li>
<li><a href="#sensitivity-labels">Sensitivity Labels</a></li>
<li><a href="#retention-labels">Retention Labels</a></li>
<li><a href="#conclusion">Conclusion</a></li>
</ol>
<h1><a id="sensitivity-labels"></a>Sensitivity Labels</h1>
<p>Microsoft is now using one unified way for labeling: Sensitivity label. This label is customizable as you are used to with Azure Information Protection. So let’s try it out how this new unified way of labeling works.</p>
<p>Go to <a href="https://protection.microsoft.com" target="_blank" rel="noopener">https://protection.microsoft.com</a> &gt; Classification &gt; Labels &gt; Sensitivity &gt; Create a label.</p>
<p><img decoding="async" class="alignnone wp-image-75744" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels.png" alt="microsoft-information-protection-sensitivity-labels" width="504" height="370" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels.png 1349w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-300x220.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-768x564.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-1024x751.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-600x440.png 600w" sizes="(max-width: 504px) 100vw, 504px" /></p>
<p>Name your label.</p>
<p><img decoding="async" class="alignnone wp-image-75745" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-1.png" alt="microsoft-information-protection-sensitivity-labels-page-1" width="581" height="296" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-1.png 2348w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-1-300x153.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-1-768x391.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-1-1024x521.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-1-600x305.png 600w" sizes="(max-width: 581px) 100vw, 581px" /></p>
<p>Here you have basically the same options as with Azure Information Protection in the Azure Portal.</p>
<p><img decoding="async" class="alignnone wp-image-75746" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-2.png" alt="microsoft-information-protection-sensitivity-labels-page-2" width="625" height="318" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-2.png 2369w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-2-300x153.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-2-768x391.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-2-1024x521.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-2-600x305.png 600w" sizes="(max-width: 625px) 100vw, 625px" /></p>
<p>Here starts a great unified feature, enable Windows Information Protection!</p>
<p><img decoding="async" class="alignnone wp-image-75747" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-3.png" alt="microsoft-information-protection-sensitivity-labels-page-3" width="589" height="265" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-3.png 2735w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-3-300x135.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-3-768x345.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-3-1024x461.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-3-600x270.png 600w" sizes="(max-width: 589px) 100vw, 589px" /></p>
<p>Again, a great unified feature, enable Office Information Protection.</p>
<p><img decoding="async" class="alignnone wp-image-75749" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-5.png" alt="microsoft-information-protection-sensitivity-labels-page-4" width="648" height="362" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-5.png 2353w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-5-300x167.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-5-768x429.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-5-1024x571.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-5-600x335.png 600w" sizes="(max-width: 648px) 100vw, 648px" /></p>
<p>Last but not least, enable auto labeling as you are used to configure with AIP in the Azure Portal.</p>
<p><img decoding="async" class="alignnone wp-image-75750" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-6.png" alt="microsoft-information-protection-sensitivity-labels-page-5" width="673" height="366" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-6.png 2373w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-6-300x163.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-6-768x418.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-6-1024x557.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-6-600x326.png 600w" sizes="(max-width: 673px) 100vw, 673px" /></p>
<p>After this, you should publish your label.</p>
<p><img decoding="async" class="alignnone wp-image-75751" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-7.png" alt="microsoft-information-protection-sensitivity-labels-page-6" width="349" height="418" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-7.png 1192w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-7-250x300.png 250w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-7-768x921.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-7-854x1024.png 854w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-sensitivity-labels-page-7-600x719.png 600w" sizes="(max-width: 349px) 100vw, 349px" /></p>
<p>To me, this is really a step up. Now we still have some highly requested items, like add dynamic permissions in WIP but that will come for sure (since it&#8217;s already available in Office Message Encryption).</p>
<p>One caveat for now, this label is not synced yet to Exchange Online so you cannot use it with Exchange rules. Hopefully they will solve this very soon since they only made these new functionalities available yesterday.</p>
<p>&nbsp;</p>
<h1><a id="retention-labels"></a>Retention labels</h1>
<p>But that is not all, we also have retention labels now which have some very cool features. Let&#8217;s check it out. Click on retention labels and click Create a label. You will be presented with some groundbreaking features: Trigger a disposition review!</p>
<p><img decoding="async" class="alignnone wp-image-75753" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-retention-labels-page-1.png" alt="microsoft-information-protection-retention-labels" width="546" height="382" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-retention-labels-page-1.png 1785w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-retention-labels-page-1-300x210.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-retention-labels-page-1-768x538.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-retention-labels-page-1-1024x717.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-retention-labels-page-1-600x420.png 600w" sizes="(max-width: 546px) 100vw, 546px" /></p>
<p>If you select this option, you give the choice to an admin, he or she can decide if that specific document must be deleted or kept. Like if job interviews are still open, you might want to hold the CV&#8217;s a little longer. Really great feature. But wait, there is even a more great feature! We can delete content based on an event. That is exactly what we need.</p>
<p><img decoding="async" class="alignnone wp-image-75754" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-retention-labels-page-2.png" alt="microsoft-information-protection-retention-labels-page-1" width="582" height="371" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-retention-labels-page-2.png 1971w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-retention-labels-page-2-300x191.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-retention-labels-page-2-768x489.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-retention-labels-page-2-1024x652.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/microsoft-information-protection-retention-labels-page-2-600x382.png 600w" sizes="(max-width: 582px) 100vw, 582px" /></p>
<p>You can customize your events by going to &#8220;Data Governance &gt; Events&#8221;. For extensive documentation, I recommend you to should the <a href="https://docs.microsoft.com/en-us/office365/securitycompliance/event-driven-retention?redirectSourcePath=%252fen-us%252farticle%252fOverview-of-event-driven-retention-dd851332-747b-45b9-82de-e3cd7d01c8a7" target="_blank" rel="noopener">Microsoft Docs</a> which is a really good document.</p>
<h1><a id="conclusion"></a>Conclusion</h1>
<p>Microsoft&#8217;s products are getting better and better. The tight integration is getting phenomenal. In this document we have seen the possibilities of Sensitivity Labels and Retention Labels. Both serve different purposes which you should check out for sure, especially regarding sensitive content.</p>
<p>The post <a href="https://erjenrijnders.nl/2018/09/25/microsoft-information-protection-unified-labeling/">Microsoft Information Protection: Unified labeling!</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://erjenrijnders.nl/2018/09/25/microsoft-information-protection-unified-labeling/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Microsoft Ignite day 2</title>
		<link>https://erjenrijnders.nl/2018/09/25/microsoft-ignite-day-2/</link>
					<comments>https://erjenrijnders.nl/2018/09/25/microsoft-ignite-day-2/#comments</comments>
		
		<dc:creator><![CDATA[Erjen]]></dc:creator>
		<pubDate>Tue, 25 Sep 2018 15:41:08 +0000</pubDate>
				<category><![CDATA[Ignite 2018]]></category>
		<category><![CDATA[microsoft-information-protection]]></category>
		<category><![CDATA[ignite-2018]]></category>
		<category><![CDATA[ignite updates 2018]]></category>
		<guid isPermaLink="false">http://erjenrijnders.nl/?p=75726</guid>

					<description><![CDATA[<p>Index: Azure Active Directory: New features and roadmap New features security and compliance center Windows Server 2019 Windows Information Protection [&#8230;]</p>
<p>The post <a href="https://erjenrijnders.nl/2018/09/25/microsoft-ignite-day-2/">Microsoft Ignite day 2</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Index:</p>
<ol>
<li><a href="#azure-active-directory">Azure Active Directory: New features and roadmap</a></li>
<li><a href="#security-compliance-center">New features security and compliance center</a></li>
<li><a href="#windows-server-2019">Windows Server 2019</a></li>
<li><a href="#windows-information-protection">Windows Information Protection</a></li>
</ol>
<h1><a id="azure-active-directory"></a>Azure Active Directory: New features and roadmap</h1>
<p>During the session of Alex Simons “Azure Active Directory: New features and roadmap”, he showed the great functionality of iOS smartwatch authenticator, but the request didn’t came through. Really funny, but he actually forgot his phone on stage so it was obvious it didn’t came through.</p>
<p>However, we saw great new features in Azure AD. They are encouraging us to move from AD FS to Azure AD. Microsoft itself has already migrated 18.000 apps from AD FS to Azure AD (but still 3.000 to go Alex said).</p>
<p>Azure AD is really going to focus on passwordless sign on. Also, B2B and B2C will see great improvements. It’s going to be very simple to collaborate for example with a company that doesn’t even use Azure AD at all.</p>
<p>And we get hardware OAUTH tokens support in Azure AD! For those who really need this for security reasons, it’s going to be possible. Before, it was only possible with the on-premises MFA server but not anymore!</p>
<p>&nbsp;</p>
<h1><a id="security-compliance-center"></a>New features security and compliance center</h1>
<p>As announced yesterday already, we no longer have Azure Information Protection, but <a href="https://erjenrijnders.nl/2018/09/24/microsoft-ignite-day-1-keynote/#microsoft-information-protection">Microsoft Information Protection</a>. In this session we saw more in-depth new features of the security and compliance center which will be rolled out the coming months.  A great new look of the security and compliance portal.</p>
<p>I am really sorry about the picture below, I was too far away for getting a sharp picture, I will update them as soon as I have better material. But I think you can get an impression.</p>
<p><img decoding="async" class="alignnone wp-image-75727" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/compliance-dashboard-ignite.jpg" alt="" width="616" height="265" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/compliance-dashboard-ignite.jpg 1772w, https://erjenrijnders.nl/wp-content/uploads/2018/09/compliance-dashboard-ignite-300x129.jpg 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/compliance-dashboard-ignite-768x331.jpg 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/compliance-dashboard-ignite-1024x441.jpg 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/compliance-dashboard-ignite-600x258.jpg 600w" sizes="(max-width: 616px) 100vw, 616px" /></p>
<p>&nbsp;</p>
<p>This compliance center will have tight integration with <a href="https://security.microsoft.com" target="_blank" rel="noopener">https://security.microsoft.com</a>. It’s focusing more and more on “Assess, protect, respond, visibility and control”. With just a few simple clicks, you are able to remediate security after an attack. Sounds like a sales pitch, but I have seen it live and it just works.</p>
<p>Another great feature is that we will soon have “label analytics”! finally. We can see for example which labels are applied manually, which are pending, how many labels you have applied etc.</p>
<p><img decoding="async" class="alignnone size-full wp-image-75738" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/labeled-analytics.png" alt="" width="1997" height="1250" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/labeled-analytics.png 1997w, https://erjenrijnders.nl/wp-content/uploads/2018/09/labeled-analytics-300x188.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/labeled-analytics-768x481.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/labeled-analytics-1024x641.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/labeled-analytics-600x376.png 600w" sizes="(max-width: 1997px) 100vw, 1997px" /></p>
<p>More info about “Assess, protect, respond, visibility and control” how Microsoft does it, here is an exact copy of text of the presentation:</p>
<p><strong>Assess<br />
</strong>Perform ongoing risk assessments with a compliance score across Microsoft cloud services.<br />
<strong>Protect<br />
</strong>Automatically classify and protect sensitive data across devices, apps and cloud services.<br />
<strong>Respond<br />
</strong>Efficiently respond to regulatory requests leveraging AI to find the right, most relevant data.<br />
<strong>Visibility<br />
</strong>Understand the security state and risks across resources.<br />
<strong>Control<br />
</strong>Define consistent security policies and enable controls.<br />
<strong>Guidance<br />
</strong>Elevate security through built-in intelligence and recommendations.</p>
<p>&nbsp;</p>
<h1><a id="windows-server-2019"></a>Windows Server 2019</h1>
<p>Some great new features are announced! The best I heard so far is that we can now connect Windows Server 2019 to Azure Update Management. This way, we will have one unified, native updating way throughout our devices.</p>
<p>Also, Azure password protection is now hybrid available on Windows Server 2019. And of course, the Windows Admin Center (released before) is tightly integrated in Windows Server 2019. Within WAC, we can now manage Azure Network Adapter, Azure Site Recovery and Azure back-up.</p>
<p>&nbsp;</p>
<h1><a id="windows-information-protection"></a>Windows Information Protection</h1>
<p>I have seen very great feature updates around Windows Information Protection! Instead of summing it up here, I dedicated a seperate blogpost about this. <a href="http://erjenrijnders.nl/2018/09/25/microsoft-information-protection-unified-labeling/" target="_blank" rel="noopener">Read it here!</a></p>
<p>The post <a href="https://erjenrijnders.nl/2018/09/25/microsoft-ignite-day-2/">Microsoft Ignite day 2</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://erjenrijnders.nl/2018/09/25/microsoft-ignite-day-2/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Microsoft Ignite day 1: keynote and sessions</title>
		<link>https://erjenrijnders.nl/2018/09/24/microsoft-ignite-day-1-keynote/</link>
					<comments>https://erjenrijnders.nl/2018/09/24/microsoft-ignite-day-1-keynote/#comments</comments>
		
		<dc:creator><![CDATA[Erjen]]></dc:creator>
		<pubDate>Mon, 24 Sep 2018 15:24:08 +0000</pubDate>
				<category><![CDATA[Ignite 2018]]></category>
		<category><![CDATA[microsoft-information-protection]]></category>
		<category><![CDATA[ignite-2018]]></category>
		<category><![CDATA[ignite updates 2018]]></category>
		<guid isPermaLink="false">http://erjenrijnders.nl/?p=75698</guid>

					<description><![CDATA[<p>Summary: Keynote Transform your workplace with Microsoft 365 Microsoft 365 admin center Windows 10 Virtual Desktop What happened with RDMI? [&#8230;]</p>
<p>The post <a href="https://erjenrijnders.nl/2018/09/24/microsoft-ignite-day-1-keynote/">Microsoft Ignite day 1: keynote and sessions</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h1>Summary:</h1>
<ol>
<li><a href="#keynote">Keynote</a></li>
<li><a href="#transform-with-microsoft-365">Transform your workplace with Microsoft 365</a></li>
<li><a href="#microsoft-365-admin-center">Microsoft 365 admin center</a></li>
<li><a href="#windows-10-virtual-desktop">Windows 10 Virtual Desktop</a></li>
<li><a href="#what-happend-with-rdmi">What happened with RDMI?</a></li>
<li><a href="#advanced-threat-protection">Advanced Threat Protection for MySQL</a></li>
<li><a href="#whats-new-ome-aip">Whats new in OME and AIP</a></li>
<li><a href="#integreate-teams-with-sharepoint">Integrate Teams with a SharePoint library</a></li>
<li><a href="#microsoft-threat-protection">Microsoft Threat Protection announced</a></li>
<li><a href="#microsoft-information-protection">Microsoft Information Protection</a></li>
<li><a href="#microsoft-secure-score">Microsoft Secure Score</a></li>
</ol>
<h1><a id="keynote"></a>Keynote</h1>
<p>With about 30.000 people in one very big room, Satya kicked off with a welcome and received a big applause. Satya started sharing current customer success stories, mainly focused on AI. His question after the success stories: How are we evolving this and how do we keep innovating? The answer is, the Microsoft open data initiative! Together with Adobe and SAP, these three companies exchange data. Data becomes more and more important and in this way, Microsoft can create a great experience for us as customers. There will be one data model for all Azure applications so that our data will no longer be in silos. Well, I must say, that’s exciting news! Hopefully we will see this in action soon.</p>
<p>That said, Microsoft is also focusing more and more on selling an experience instead of a product (what we do as consultants for years already to our customers to be honest), but Microsoft will have more focus on this as well. Satya said that we need to transform our businesses industries, adopting the latest and greatest technologies, or<br />
we will not survive. Also trust and collaboration is key aspect of success, Satya said.</p>
<p>It was an inspiring keynote, although not as inspiring as before and less announcements were given but still, great start of Microsoft Ignite!</p>
<h1><a id="transform-with-microsoft-365"></a>Transform your workplace with Microsoft 365</h1>
<p>The second session (more like a subkeynote) I attended was “Transform your workplace with Microsoft 365”. Ron Markezich came on stage thanking us for our partnership.</p>
<p>They key announcement in this session is a new Microsoft product: Microsoft Ideas. It brings a lot of AI into your daily work. Like in PowerPoint, it suggests the design of a slide. Like if you type Seattle, it gives you images of Seattle. But also, it checks for consistency throughout PowerPoint. In Excel, this same product gives you suggestions on a whole other level. Like you fill in some countries, it suggests you to add columns with the inhabitants etc.</p>
<p>In Word, it’s even cooler in my opinion. When you are working together in the same document, you can add tasks for another and even create tasks for yourself. For example, you type “@To Do”, you add a task for yourself. Giving a description, like “Keynote”, Microsoft Ideas gives you relevant documents which you can add in the document.</p>
<p>This is all possible, connecting with the Microsoft Graph API. Many applications are connected to this API which makes this possible. This product is going to be rolled out at PowerPoint first, later across more Office applications.</p>
<p>&nbsp;</p>
<h1><a id="microsoft-365-admin-center"></a>Microsoft 365 admin center</h1>
<p>During this session, we saw Brad Anderson show the Microsoft 365 Admin Center! <a href="https://admin.microsoft.com">https://admin.microsoft.com</a> gives you all the management within Microsoft 365, no longer go to protection.office.com, security.microsoft.com, compliance.microsoft.com etc. It looks promising.</p>
<p><img decoding="async" class="alignnone wp-image-75706" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/Microsoft-365-admin-center.jpg" alt="" width="609" height="457" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/Microsoft-365-admin-center.jpg 2080w, https://erjenrijnders.nl/wp-content/uploads/2018/09/Microsoft-365-admin-center-300x225.jpg 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/Microsoft-365-admin-center-768x576.jpg 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/Microsoft-365-admin-center-1024x768.jpg 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/Microsoft-365-admin-center-600x450.jpg 600w" sizes="(max-width: 609px) 100vw, 609px" /></p>
<h1><a id="windows-10-virtual-desktop"></a>Windows 10 Virtual Desktop</h1>
<p>So many have waited for this (and we still have to wait a bit longer because the public preview will come end of this year), but it’s officially announced, the Windows 10 Virtual Desktop! No more planning, deploying, updating etc. It’s all managed by Microsoft. And the Virtual Desktops has built-in security and compliance.</p>
<p>As I mentioned, the public preview is available later this year, but it’s possible to <a href="https://azure.microsoft.com/en-us/services/virtual-desktop/#sign-up">join the public preview now by registering</a>.</p>
<h2><a id="what-happend-with-rdmi"></a>What happened with RDMI?</h2>
<p>Well, not sure to be honest. No one mentioned it @Ignite, it looks like RDMI is now called Windows Virtual Desktops.</p>
<p>UPDATE: It is confirmed at Ignite 2018 that RDMI is now Windows Virtual Desktop.</p>
<p>&nbsp;</p>
<h1><a id="advanced-threat-protection"></a>Advanced Threat Protection for MySQL</h1>
<p>Advanced Threat Protection for MySQL is out! Configure it using the Azure Portal, check here for detailed information:</p>
<p><a href="https://azure.microsoft.com/en-us/blog/advanced-threat-protection-for-azure-database-for-mysql-in-preview/">https://azure.microsoft.com/en-us/blog/advanced-threat-protection-for-azure-database-for-mysql-in-preview/</a></p>
<p>&nbsp;</p>
<h1><a id="whats-new-ome-aip"></a>Whats new in OME and AIP</h1>
<p>100 million users are using OME since they announced it a year ago. We (@Sigmax) have used it a lot for our customers and a lack of functionality is the integration with Data Loss Prevention. But not anymore! It’s fully integrated. Also, we have OME reporting now. We can check the encrypted emails sent and also revoke an encrypted email finally! Another great feature is that we can now further customize the encrypted e-mail.</p>
<p>&nbsp;</p>
<h1><a id="integreate-teams-with-sharepoint"></a>Integrate Teams with a SharePoint library</h1>
<p>If you have implemented the SharePoint philosophy and you start using Teams, well, that philosophy is turned up-side-down inevitably because you have no control where Teams stores your data. Not anymore! You can now integrate a SharePoint library with Microsoft Teams.</p>
<p>&nbsp;</p>
<h1><a id="microsoft-threat-protection"></a>Microsoft Threat Protection announced</h1>
<p>Before, we had Windows ATP, Azure ATP and Office ATP. Now we have it all together in one product: Microsoft Threat Protection (looks like we need to go to <a href="https://security.microsoft.com">https://security.microsoft.com</a>, in contrast what was announced in the Microsoft 365 admin center but we will see).</p>
<p>&nbsp;</p>
<h1><a id="microsoft-information-protection"></a>Microsoft Information Protection</h1>
<p>We no longer have Azure Information Protection, but Microsoft Information Protection. The great thing is that we now have a unified way of labeling. We can use the same labels for Office Message Encryption and Data Loss Prevention which is great.</p>
<p>Labeling is now also available in Office for mac!</p>
<p>&nbsp;</p>
<h1><a id="microsoft-secure-score"></a>Microsoft Secure Score</h1>
<p>Now integrated with Office 365 and EMS! If you were using it before, you will now see a lot more scores. Go to <a href="https://securescore.microsoft.com/">https://securescore.microsoft.com/</a> to check your security score!</p>
<p><img decoding="async" class="alignnone size-full wp-image-75724" src="http://erjenrijnders.nl/wp-content/uploads/2018/09/Microsoft-secure-score.png" alt="" width="2715" height="1476" srcset="https://erjenrijnders.nl/wp-content/uploads/2018/09/Microsoft-secure-score.png 2715w, https://erjenrijnders.nl/wp-content/uploads/2018/09/Microsoft-secure-score-300x163.png 300w, https://erjenrijnders.nl/wp-content/uploads/2018/09/Microsoft-secure-score-768x418.png 768w, https://erjenrijnders.nl/wp-content/uploads/2018/09/Microsoft-secure-score-1024x557.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2018/09/Microsoft-secure-score-600x326.png 600w" sizes="(max-width: 2715px) 100vw, 2715px" /></p>
<p>The post <a href="https://erjenrijnders.nl/2018/09/24/microsoft-ignite-day-1-keynote/">Microsoft Ignite day 1: keynote and sessions</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://erjenrijnders.nl/2018/09/24/microsoft-ignite-day-1-keynote/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>
