<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>Tjopsta</title>
	<atom:link href="https://www.tjopsta.net/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tjopsta.net</link>
	<description>Close encounters of the cloud kind</description>
	<lastBuildDate>Wed, 07 Mar 2018 06:08:27 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.2</generator>
<site xmlns="com-wordpress:feed-additions:1">14644313</site>                                          	<item>
		<title>AzureAD (Office 365) Password Expiry Notifications</title>
		<link>https://www.tjopsta.net/2018/03/06/azuread-office-365-password-expiry-notifications/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=azuread-office-365-password-expiry-notifications</link>
					<comments>https://www.tjopsta.net/2018/03/06/azuread-office-365-password-expiry-notifications/#comments</comments>
		
		<dc:creator><![CDATA[Tjopsta]]></dc:creator>
		<pubDate>Wed, 07 Mar 2018 05:54:25 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Azure AD]]></category>
		<category><![CDATA[Azure Automation]]></category>
		<category><![CDATA[Azure Functions]]></category>
		<category><![CDATA[Log Analytics]]></category>
		<category><![CDATA[Logic Apps]]></category>
		<category><![CDATA[Office 365]]></category>
		<guid isPermaLink="false">https://www.tjopsta.net/?p=995</guid>

					<description><![CDATA[<p>Learn how to send out password expiry notifications for Azure AD cloud identity users using template driven emails through SendGrid</p>
<p>The post <a rel="nofollow" href="https://www.tjopsta.net/2018/03/06/azuread-office-365-password-expiry-notifications/">AzureAD (Office 365) Password Expiry Notifications</a> appeared first on <a rel="nofollow" href="https://www.tjopsta.net">Tjopsta</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h1>The Problem of Password Expiry Notifications</h1>
<p>I was recently asked how can we send out password expiry notifications to cloud identity users using a template managed email.  Ultimately we want to create amazing looking company branded emails, reminding users that their password would expire soon. This notification would include instructions on how to change the password and which prompts they could expect on applications.</p>
<p>The higher level question was also, Where do we keep business processes in a &#8220;serverless first&#8221; company strategy.</p>
<h1>Requirements</h1>
<ul>
<li>Standardize the password expiry notifications business process into a common platform where possible (for all other business processes).</li>
<li>Do not run multiple business functions in any individual components.</li>
<li>Use an email template specifying only the recipient and the substitutions per email. ( -FullName- in the template is replaced with &#8220;John Doe&#8221;)</li>
</ul>
<h1>The Strategy</h1>
<p>I am a firm believer of solving business problems with serverless technology wherever possible.  There is a number of ways to solve the given problem. The easiest probably only running a powershell script querying AzureAD, iterate through the users and send a mail. I wanted to select a platform to standardize all business processes and integration that needed to happen. Keeping that in mind, I decided on <a href="https://azure.microsoft.com/en-us/services/logic-apps/">Azure Logic Apps</a> as the base technology for my integration and automation.</p>
<h1>The Solution</h1>
<p><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365ExpiryDiagram.png?ssl=1"><img data-attachment-id="997" data-permalink="https://www.tjopsta.net/2018/03/06/azuread-office-365-password-expiry-notifications/o365expirydiagram/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365ExpiryDiagram.png?fit=868%2C242&amp;ssl=1" data-orig-size="868,242" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="O365ExpiryDiagram" data-image-description="" data-image-caption="" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365ExpiryDiagram.png?fit=300%2C84&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365ExpiryDiagram.png?fit=868%2C242&amp;ssl=1" loading="lazy" class="aligncenter wp-image-997" src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365ExpiryDiagram.png?resize=555%2C155&#038;ssl=1" alt="Office 365 expiry solution diagram for Password Expiry Notifications" width="555" height="155" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365ExpiryDiagram.png?w=868&amp;ssl=1 868w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365ExpiryDiagram.png?resize=300%2C84&amp;ssl=1 300w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365ExpiryDiagram.png?resize=768%2C214&amp;ssl=1 768w" sizes="(max-width: 555px) 100vw, 555px" data-recalc-dims="1" /></a></p>
<h2>Solution Overview</h2>
<ol>
<li><a href="https://azure.microsoft.com/en-us/services/automation/">Azure Automation</a> Runbook &#8211; Queries Azure AD and returns a list of users that have expiring passwords.</li>
<li><a href="https://azure.microsoft.com/en-us/services/logic-apps/">Logic App</a> &#8211; This is the backbone of my business process.  The logic app owns the business process.</li>
<li><a href="https://azure.microsoft.com/en-us/services/functions/">Azure Function</a> &#8211; Logic Apps have a connector for Sendgrid, however my requirement was to run</li>
</ol>
<p>Using 4 components for something as simple as password expiry notifications might seem like overkill, however explanation below.</p>
<h3>Azure Automation Runbook</h3>
<p>I chose an azure automation runbook as the input of my business process, for the following reasons:</p>
<ul>
<li>The Log Apps Azure AD connector doesn&#8217;t allow you to query azure ad, only retrieve a specific user object.  IE, I can&#8217;t do a Get-MSolUser -All on the built in Log Apps Connector.</li>
<li>The where clause of my query was specific enough to warrant using an automation runbook.  Where clause based on:
<ul>
<li>The user is licensed (has a mailbox),</li>
<li>the user object is of type member (not guest), and;</li>
<li>the password expires</li>
</ul>
</li>
<li>Output needed to already be in Json for easy parsing in the logic app.</li>
</ul>
<p>To setup your runbook, first create an azure automation account.  Once the account is created, create a new credential you will use to authenticate against AzureAD.</p>
<p><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-AutomationCredential.png?ssl=1"><img data-attachment-id="1007" data-permalink="https://www.tjopsta.net/2018/03/06/azuread-office-365-password-expiry-notifications/o365expiry-automationcredential/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-AutomationCredential.png?fit=2022%2C1094&amp;ssl=1" data-orig-size="2022,1094" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="O365Expiry-AutomationCredential" data-image-description="" data-image-caption="" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-AutomationCredential.png?fit=300%2C162&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-AutomationCredential.png?fit=1024%2C554&amp;ssl=1" loading="lazy" class="aligncenter wp-image-1007" src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-AutomationCredential.png?resize=631%2C341&#038;ssl=1" alt="Azure Automation Runbook Credential for Password Expiry Notifications" width="631" height="341" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-AutomationCredential.png?w=2022&amp;ssl=1 2022w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-AutomationCredential.png?resize=300%2C162&amp;ssl=1 300w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-AutomationCredential.png?resize=768%2C416&amp;ssl=1 768w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-AutomationCredential.png?resize=1024%2C554&amp;ssl=1 1024w" sizes="(max-width: 631px) 100vw, 631px" data-recalc-dims="1" /></a></p>
<h4>Runbook Code</h4>
<pre class="theme:powershell lang:ps decode:true" title="Azure Automation Runbook Code"># Retrieve credential from Automation asset store and authenticate to Azure AD
$AzureADCredential = Get-AutomationPSCredential -Name "AzureADCredential"
Connect-MsolService -Credential $AzureADCredential

# Get default domain to work against
$DefaultDomain = Get-MsolDomain | Where-Object {$_.IsDefault -eq $true} 

# Retrieve password policy
$PasswordPolicy = (Get-MsolPasswordPolicy -DomainName $DefaultDomain.Name).ValidityPeriod 

# If there isn't a policy set, then the default is 90 days
if ($PasswordPolicy -eq $null)
{
    $PasswordPolicy = New-TimeSpan -Days 90
}

    # Get all users in Azure AD
    $ADUsers = Get-MsolUser -All | Where {($_.UserType -eq "Member") -and ($_.IsLicensed -eq $true) -and ($_.PasswordNeverExpires -ne $true)} 
    #$ADUsers
    $Users = @()


foreach ($ADUser in $ADUsers)
{
    # Identify when the password was last changed
    $LastChanged = $ADUser.LastPasswordChangeTimestamp

    # Get the days since the last time the password was changed.
    $DaysSinceLastChanged = New-TimeSpan -Start (Get-Date) -End $LastChanged

    $AlternateEmailAddresses = $ADUser.AlternateEmailAddresses
    $DaysLeft = ($PasswordPolicy + $DaysSinceLastChanged.Days)

        $Users += New-Object psobject -Property @{
                   ObjectID = $ADUser.ObjectId
                   UserDisplayName = $ADUser.DisplayName
                   UserPrincipalName = $ADUser.UserPrincipalName
                   AlternateEmailAddresses = $ADUser.AlternateEmailAddresses
                   PasswordLastChanged = $LastChanged
                   DaysLeft  = $DaysLeft
               }
   
}

#Convert to Json, so that it is in a workable format in the logic app.
Write-Output $Users | ConvertTo-Json</pre>
<p>This should provide an output that looks similar to this:</p>
<pre class="lang:default decode:true">[
    {
        "PasswordLastChanged":  "\/Date(1503081841000)\/",
        "UserPrincipalName":  "jbloggs@mydomain.com",
        "ObjectID":  "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaa",
        "UserDisplayName":  "Joe Bloggs",
        "AlternateEmailAddresses":  [
                                        "bloggy@mcbloggs.com"
                                    ],
        "DaysLeft":  5
   },
    {
        "PasswordLastChanged":  "\/Date(1519181630000)\/",
        "UserPrincipalName":  "jdoe@mydomain.com",
        "ObjectID":  "0d24c8ec-bbbb-bbbb-bbbb-bbbbbbbbbbbbb",
        "UserDisplayName":  "Jane Doe",
        "AlternateEmailAddresses":  [
                                    ],
        "DaysLeft":  25
    },
    {
        "PasswordLastChanged":  "\/Date(1517502057000)\/",
        "UserPrincipalName":  "ckent@mydomain.com",
        "ObjectID":  "2587277e-cccc-cccc-cccc-cccccccccccc",
        "UserDisplayName":  "Clark Kent",
        "AlternateEmailAddresses":  [
                                    ],
        "DaysLeft":  9
    },
    {
        "PasswordLastChanged":  "\/Date(1441998373000)\/",
        "UserPrincipalName":  "brubble@mydomain.com",
        "ObjectID":  "b545dd73-13e5-46e1-8218-eb89a33f574b",
        "UserDisplayName":  "Barnie Rubble",
        "AlternateEmailAddresses":  [
                                        "rubadubdub@stonemail.com"
                                    ],
        "DaysLeft":  4
    }
]</pre>
<p>So now I have queried AzureAD for my users with passwords that change, and their values on when it expires.</p>
<h3>Azure Logic App</h3>
<p>I chose an Azure Logic to run the workflow to keep to my standard. This provides me the ability to monitor the process hrough Azure Log Analytics (back to standardization).  If I wanted to extend this workflow at a later time, that would be easy without touching any other components.</p>
<h3>Azure Function</h3>
<p>Logic Apps has a connector for Sendgrid, but it&#8217;s very basic in the sense that it just sends out email to the user as if you were calling an smtp server.  The &#8220;advanced&#8221; functionality of the SendGrid api, like calling a template, isn&#8217;t available at the time of writing this post.  I did however create a new azure suggestion, asking for support for these advanced features in the connector.  Upvote here: <a href="https://feedback.azure.com/forums/287593-logic-apps/suggestions/33461014-sendgrid-logic-apps-connector-add-support-for-cus">https://feedback.azure.com/forums/287593-logic-apps/suggestions/33461014-sendgrid-logic-apps-connector-add-support-for-cus</a></p>
<p>Because we cannot just call templates in the sendgrid connector, I needed to call the Sendgrid API manually to be able to call the template and specify the substitutions.  So I chose to write my own code in an Azure Function. I wanted to keep all my variables managed in code, and ultimately reuse this function for all transactional template notifications that needs to be sent out.  In essence, this function will be the reusable function for any logic app or business process that needs to send out mail via a template, so the function is extended a little past the requirements of this process to cater for future use.</p>
<p>To start off, create a new Azure Function, following this article <a href="https://docs.microsoft.com/en-us/azure/azure-functions/functions-how-to-use-sendgrid">https://docs.microsoft.com/en-us/azure/azure-functions/functions-how-to-use-sendgrid</a> with the exception of using the C# webhook trigger template, and not manual trigger (or configure a webhook trigger after the fact&#8230;.)</p>
<p>Once you have the sendgrid output configured, key added to app settings, etc, as per above, I changed my code a bit to grab the json out of the web request, build the appropriate code, and send it off to sendgrid, as per the below:</p>
<pre class="theme:vs2012 lang:c# decode:true ">#r "SendGrid"
#r "Newtonsoft.Json"
using System;
using SendGrid;
using SendGrid.Helpers.Mail;
using Newtonsoft.Json;

public static void Run(HttpRequestMessage req, TraceWriter log, out Mail message)
{
    // parse query parameter
    var json = req.Content.ReadAsStringAsync().Result;
    RequestData reqData = JsonConvert.DeserializeObject&lt;RequestData&gt;(json);

    //Build the mail object
    message = new Mail();
    message.From = new Email(reqData.FromAddress, reqData.FromName);
    log.Info("From address set to: " + reqData.FromName + " (" + reqData.FromAddress + ")");
    message.Subject = reqData.Subject;
    log.Info("Subject:  " + reqData.Subject);
    

    var personalization = new Personalization();
     message.TemplateId = reqData.TemplateID;
    log.Info("TemplateID set to:  " + reqData.TemplateID);

    foreach (Recipient Recipient in reqData.Recipients)
    {
        personalization.AddTo(new Email(Recipient.Address, Recipient.Name));
        log.Info("Added Recipient " + Recipient.Name + " (" + Recipient.Address + ")");
    }

        foreach (Substitution Substitution in reqData.Substitutions)
    {
        personalization.AddSubstitution(Substitution.Name, Substitution.Value);
        log.Info("Added Substitution " + Substitution.Name + " (" + Substitution.Value + ")");
    }

    Content content = new Content
    {
        Type = "text/html",
        Value = "test"
    };


    message.AddContent(content);
    message.AddPersonalization(personalization);
    log.Info("Mail Sent to SendGrid!");


}

public class RequestData
{
    public string TemplateID { get; set; }
    public string Subject { get; set; }
    public string FromName { get; set; }
    public string FromAddress { get; set; }
    public List&lt;Recipient&gt; Recipients { get; set; }
    public List&lt;Substitution&gt; Substitutions { get; set; }
}

public class Recipient
{
    public string Name { get; set; }
    public string Address { get; set; }
}

public class Substitution
{
    public string Name { get; set; }
    public string Value { get; set; }
}</pre>
<p>&nbsp;</p>
<h3>SendGrid</h3>
<p>I chose Sendgrid as the messaging platform as it is a feature rich platform for sending out mail and the fact that they had transactional templates built in.  I created my sendgrid account, created a new transactional mail template, which allowed me to compose the mail template, and add some substitution fields in the body that would ultimately be replaced with the data I pass in:</p>
<p><a href="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-SendGridTemplate1.png?ssl=1"><img data-attachment-id="1009" data-permalink="https://www.tjopsta.net/2018/03/06/azuread-office-365-password-expiry-notifications/o365expiry-sendgridtemplate1/" data-orig-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-SendGridTemplate1.png?fit=2629%2C1094&amp;ssl=1" data-orig-size="2629,1094" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="O365Expiry-SendGridTemplate1" data-image-description="" data-image-caption="" data-medium-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-SendGridTemplate1.png?fit=300%2C125&amp;ssl=1" data-large-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-SendGridTemplate1.png?fit=1024%2C426&amp;ssl=1" loading="lazy" class="aligncenter wp-image-1009 size-full" src="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-SendGridTemplate1.png?resize=2629%2C1094&#038;ssl=1" alt="Sendgrid Template View for Password Expiry Notifications" width="2629" height="1094" srcset="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-SendGridTemplate1.png?w=2629&amp;ssl=1 2629w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-SendGridTemplate1.png?resize=300%2C125&amp;ssl=1 300w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-SendGridTemplate1.png?resize=768%2C320&amp;ssl=1 768w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-SendGridTemplate1.png?resize=1024%2C426&amp;ssl=1 1024w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-SendGridTemplate1.png?w=2000&amp;ssl=1 2000w" sizes="(max-width: 1000px) 100vw, 1000px" data-recalc-dims="1" /></a></p>
<p>and my template:</p>
<p><a href="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-SendGridTemplate2.png?ssl=1"><img data-attachment-id="1010" data-permalink="https://www.tjopsta.net/2018/03/06/azuread-office-365-password-expiry-notifications/o365expiry-sendgridtemplate2/" data-orig-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-SendGridTemplate2.png?fit=2736%2C1547&amp;ssl=1" data-orig-size="2736,1547" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="O365Expiry-SendGridTemplate2" data-image-description="" data-image-caption="" data-medium-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-SendGridTemplate2.png?fit=300%2C170&amp;ssl=1" data-large-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-SendGridTemplate2.png?fit=1024%2C579&amp;ssl=1" loading="lazy" class="aligncenter wp-image-1010 size-full" src="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-SendGridTemplate2.png?resize=2736%2C1547&#038;ssl=1" alt="Sendgrid Template Detail View for Password Expiry Notifications" width="2736" height="1547" srcset="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-SendGridTemplate2.png?w=2736&amp;ssl=1 2736w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-SendGridTemplate2.png?resize=300%2C170&amp;ssl=1 300w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-SendGridTemplate2.png?resize=768%2C434&amp;ssl=1 768w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-SendGridTemplate2.png?resize=1024%2C579&amp;ssl=1 1024w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-SendGridTemplate2.png?w=2000&amp;ssl=1 2000w" sizes="(max-width: 1000px) 100vw, 1000px" data-recalc-dims="1" /></a> As you can see, it still needs to be styled and branded, but you get the point.  Once my function runs, it will replace the -FullName- and -DaysLeft- parameters through the substitutions I pass into the API, personalizing the email to the user.</p>
<p>&nbsp;</p>
<h2>Putting it all together</h2>
<p>Here&#8217;s the full Logic App design to do the work from start to finish:</p>
<p><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-LogicAppDesign.png?ssl=1"><img data-attachment-id="1005" data-permalink="https://www.tjopsta.net/2018/03/06/azuread-office-365-password-expiry-notifications/o365expiry-logicappdesign/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-LogicAppDesign.png?fit=1565%2C5533&amp;ssl=1" data-orig-size="1565,5533" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="O365Expiry-LogicAppDesign" data-image-description="" data-image-caption="" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-LogicAppDesign.png?fit=85%2C300&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-LogicAppDesign.png?fit=290%2C1024&amp;ssl=1" loading="lazy" class="aligncenter wp-image-1005 size-full" src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-LogicAppDesign.png?resize=1565%2C5533&#038;ssl=1" alt="Logic App Diagram for Password Expiry Notifications" width="1565" height="5533" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-LogicAppDesign.png?w=1565&amp;ssl=1 1565w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-LogicAppDesign.png?resize=85%2C300&amp;ssl=1 85w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-LogicAppDesign.png?resize=768%2C2715&amp;ssl=1 768w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2018/03/O365Expiry-LogicAppDesign.png?resize=290%2C1024&amp;ssl=1 290w" sizes="(max-width: 1000px) 100vw, 1000px" data-recalc-dims="1" /></a></p>
<p>and that is how you send Office 365 password expiry notifications to end users with cloud identities. Until the AzureAD team builds this functionality into the AzureAD platform <img src="https://s.w.org/images/core/emoji/13.1.0/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>The post <a rel="nofollow" href="https://www.tjopsta.net/2018/03/06/azuread-office-365-password-expiry-notifications/">AzureAD (Office 365) Password Expiry Notifications</a> appeared first on <a rel="nofollow" href="https://www.tjopsta.net">Tjopsta</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.tjopsta.net/2018/03/06/azuread-office-365-password-expiry-notifications/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">995</post-id>	</item>
		<item>
		<title>Netatmo weather station data ingestion to Azure Log Analytics</title>
		<link>https://www.tjopsta.net/2016/10/23/netatmo-weather-station-data-ingestion-to-azure-log-analytics/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=netatmo-weather-station-data-ingestion-to-azure-log-analytics</link>
					<comments>https://www.tjopsta.net/2016/10/23/netatmo-weather-station-data-ingestion-to-azure-log-analytics/#comments</comments>
		
		<dc:creator><![CDATA[Tjopsta]]></dc:creator>
		<pubDate>Sun, 23 Oct 2016 21:34:48 +0000</pubDate>
				<category><![CDATA[Art of the possible]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Azure]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Log Analytics]]></category>
		<guid isPermaLink="false">https://www.tjopsta.net/?p=857</guid>

					<description><![CDATA[<p>As part of the Microsoft Azure Art of the possible series, I tried ingesting data from a Netatmo weather station to Azure Log Analytics to show the possibilities of custom data ingestion.  Here's how I did it.</p>
<p>The post <a rel="nofollow" href="https://www.tjopsta.net/2016/10/23/netatmo-weather-station-data-ingestion-to-azure-log-analytics/">Netatmo weather station data ingestion to Azure Log Analytics</a> appeared first on <a rel="nofollow" href="https://www.tjopsta.net">Tjopsta</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>At the time of writing this blog post, the Azure <a href="https://azure.microsoft.com/en-us/documentation/articles/log-analytics-data-collector-api/" target="_blank">Log Analytics HTTP Data Collector API</a> was released only for a few weeks. I wanted to showcase the possibilities of data and log ingestion into the <a href="https://aka.ms/LogAnalytics" target="_blank">Log Analytics</a> platform, so I created a demo to prove that we could ingest data other than operating system and IT log data, and do something with it.</p>
<h3>Problem</h3>
<p>Ingest data from a <a href="https://www.netatmo.com/product/weather/weatherstation">Netatmo Weather Station</a> to Azure Log Analytics and present data visually appealing.</p>
<h3>Solution</h3>
<p>The Netatmo Weather Station consists of two sensors, one indoor and one outdoor, to measure environmental metrics like temperature, humidity, CO2, etc.  The general setup of a netatmo is downloading the mobile app to your phone, creating a new Netatmo account and then connecting the weather station to your account.  Once this is done, the weather station uploads sensor readings every X few minutes (Not sure how often, I&#8217;m guessing every 5 minutes) to Netatmo.  The app on your phone queries the netatmo service, which displays rich dashboards of the data.</p>
<p>This then also meant that you cannot read data from the sensors directly, however Netatmo exposes an API through their development program <a href="https://dev.netatmo.com/">Netatmo Connect</a>, to read data from your sensors and systems on your account.</p>
<p>Thus, the high level steps for this solution was:</p>
<ol>
<li>Create a new app on Netatmo Connect</li>
<li>Write a Powershell script to read the sensor readings from the Netatmo API and upload into the Log Analytics HTTP collector Api</li>
<li>Create some dashboards.</li>
</ol>
<h3>Netatmo Connect</h3>
<p>Navigate to at <a href="https://dev.netatmo.com/dev/createanapp">https://dev.netatmo.com/dev/createanapp</a> and create a new app.  This will provide you with a ClientID and a Client Secret. Keep for later.</p>
<h3>Powershell Script</h3>
<p>I used the powershell script used in the examples section in the official <a href="https://azure.microsoft.com/en-us/documentation/articles/log-analytics-data-collector-api/">Log Analytics HTTP Data Collector API</a> documentation, and added the netatmo api reads.  This is the code that did all the work.  Note that you need to change all the fields at the top that&#8217;s marked &#8216;xxxxxxxxxxxxxxxxx&#8217;with your own config data.  Other than that, you can pretty much copy and paste into something likePowershell ISE and run and it should work.</p>
<p>The short explanation of what the script does is this:</p>
<ul>
<li>Auth to Netatmo</li>
<li>Read sensor data from API</li>
<li>Deconstruct the json response from Netatmo into a powershell object</li>
<li>Correlate the different measurements and add a new log entry for each sensor and its values.</li>
</ul>
<p>Code:</p>
<pre class="theme:powershell lang:ps decode:true">#------------------------------------------------------------------------------  
# THIS CODE AND ANY ASSOCIATED INFORMATION ARE PROVIDED “AS IS” WITHOUT  
# WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT  
# LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS  
# FOR A PARTICULAR PURPOSE. THE ENTIRE RISK OF USE, INABILITY TO USE, OR   
# RESULTS FROM THE USE OF THIS CODE REMAINS WITH THE USER.  
#------------------------------------------------------------------------------  
$global:access_token = $null
$global:refresh_token = $null
#Netatmo Details. Client ID and secret from creating the App, and a username and password that has access to the api.
$global:client_id='xxxxxxxxxxxxxxxxxxxxxxxxxxx'
$global:client_secret='xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
$global:Netatmo_username='xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
$global:Netatmo_password='xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'

#OMS Workspace Variables
$global:CustomerId = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" #Workspace ID
$global:SharedKey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
$global:LogType = "Netatmo_WeatherStation" #Create a Log Type name

#Function to send data to OMS workspace
function WriteOMSEvent($SensorID, $SensorName, $MeasurementName, $MeasurementValue){
        #Specify a time in the format YYYY-MM-DDThh:mm:ssZ to specify a created datetime for the records.
        $TimeStampField = [DateTime]::UtcNow.ToString("r")

#Create json record
$json = @"
[{  "Sensor_id": "$SensorID",
    "Sensor_name": "$SensorName",
    "Measurement_name": "$MeasurementName",
    "Value": $MeasurementValue
}]
"@

        #Output the json to console so that we can see the results.
        $json

                # Function to create the authorization signature.
                Function Build-Signature ($customerId, $SharedKey, $date, $contentLength, $method, $contentType, $resource)
                {
                    $xHeaders = "x-ms-date:" + $date
                    $stringToHash = $method + "`n" + $contentLength + "`n" + $contentType + "`n" + $xHeaders + "`n" + $resource

                    $bytesToHash = [Text.Encoding]::UTF8.GetBytes($stringToHash)
                    $keyBytes = [Convert]::FromBase64String($SharedKey)

                    $sha256 = New-Object System.Security.Cryptography.HMACSHA256
                    $sha256.Key = $keyBytes
                    $calculatedHash = $sha256.ComputeHash($bytesToHash)
                    $encodedHash = [Convert]::ToBase64String($calculatedHash)
                    $authorization = 'SharedKey {0}:{1}' -f $customerId,$encodedHash
                    return $authorization
                }


                # Function doing the post to the OMS Workspace.
                Function Post-OMSData($customerId, $SharedKey, $body, $LogType) 
                {
                    $method = "POST"
                    $contentType = "application/json"
                    $resource = "/api/logs"
                    $rfc1123date = [DateTime]::UtcNow.ToString("r")
                    $contentLength = $body.Length
                    $signature = Build-Signature `
                        -customerId $customerId `
                        -sharedKey $SharedKey `
                        -date $rfc1123date `
                        -contentLength $contentLength `
                        -fileName $fileName `
                        -method $method `
                        -contentType $contentType `
                        -resource $resource
                    $uri = "https://" + $customerId + ".ods.opinsights.azure.com" + $resource + "?api-version=2016-04-01"

                    $headers = @{
                        "Authorization" = $signature;
                        "Log-Type" = $LogType;
                        "x-ms-date" = $rfc1123date;
                        "time-generated-field" = $TimeStampField;
                    }

                $response = Invoke-WebRequest -Uri $uri -Method $method -ContentType $contentType -Headers $headers -Body $body -UseBasicParsing
                return $response.StatusCode
            } 

            # The only function after creating the json document that's doing the work.
            Post-OMSData -customerId $customerId -sharedKey $SharedKey -body ([System.Text.Encoding]::UTF8.GetBytes($json)) -logType $LogType  
            }
#End of Function WriteOMSEvent

#Authenticate to the Netatmo API and get an access token.
function Netatmo-DoAuth {
        $postParams = @{
                        grant_type='password';
                        client_id=$client_id;
                        client_secret=$client_secret;
                        username=$Netatmo_username;
                        password=$Netatmo_password
                        }

        $Request = Invoke-WebRequest -Uri https://api.netatmo.com/oauth2/token -Method POST -Body $postParams -UseBasicParsing
        if ($Request.StatusCode -eq 200) {
            $ResponseJson = $Request.Content | ConvertFrom-Json
            $global:access_token = $ResponseJson.access_token
            $global:refresh_token =  $ResponseJson.refresh_token
        }
        ELSE
        { 
         write-error -message $Request.StatusDescription -ErrorId $Request.StatusCode
        }
}

#Read the Netatmo API for Sensor data, convert into an object, and post to OMS.
function ReadSensorData{$SensorpostParams = @{access_token=$access_token}                
        #Request Sensor data from Netatmo
        $SensorRequest = Invoke-WebRequest -Uri https://api.netatmo.com/api/getstationsdata -Method POST -Body $SensorpostParams -UseBasicParsing
        if ($SensorRequest.StatusCode -eq 200) {
            #Convert to object.               
            $SensorContent = $SensorRequest.Content | ConvertFrom-Json

            #Indoor unit sensors
            $MainUnit_id = $SensorContent.body.devices[0]._id
            $MainUnit_module_name = $SensorContent.body.devices[0].module_name
            $MainUnit_wifi_status = $SensorContent.body.devices[0].wifi_status
            $MainUnit_Pressure = $SensorContent.body.devices[0].dashboard_data.Pressure 
            $MainUnit_pressure_trend = $SensorContent.body.devices[0].dashboard_data.pressure_trend
            $MainUnit_Temperature = $SensorContent.body.devices[0].dashboard_data.Temperature
            $MainUnit_temp_trend = $SensorContent.body.devices[0].dashboard_data.temp_trend
            $MainUnit_Humidity = $SensorContent.body.devices[0].dashboard_data.Humidity 
            $MainUnit_CO2 = $SensorContent.body.devices[0].dashboard_data.CO2 
         
            WriteOMSEvent -SensorID $MainUnit_id -SensorName $MainUnit_module_name -MeasurementName "Pressure" -MeasurementValue $MainUnit_Pressure 
            WriteOMSEvent -SensorID $MainUnit_id -SensorName $MainUnit_module_name -MeasurementName "Wifi Signal" -MeasurementValue $MainUnit_wifi_status 
            WriteOMSEvent -SensorID $MainUnit_id -SensorName $MainUnit_module_name -MeasurementName "Temperature" -MeasurementValue $MainUnit_Temperature 
            WriteOMSEvent -SensorID $MainUnit_id -SensorName $MainUnit_module_name -MeasurementName "Humidity" -MeasurementValue $MainUnit_Humidity
            WriteOMSEvent -SensorID $MainUnit_id -SensorName $MainUnit_module_name -MeasurementName "CO2" -MeasurementValue $MainUnit_CO2 

            #Outdoor Unit Sensors
            $OutdoorUnit_id = $SensorContent.body.devices[0].modules[0]._id
            $OutdoorUnit_module_name = $SensorContent.body.devices[0].modules[0].module_name
            $OutdoorUnit_Temperature =  $SensorContent.body.devices[0].modules[0].dashboard_data.Temperature -as [double]
            $OutdoorUnit_temp_trend =  $SensorContent.body.devices[0].modules[0].dashboard_data.temp_trend
            $OutdoorUnit_Humidity =  $SensorContent.body.devices[0].modules[0].dashboard_data.Humidity -as [double]

            WriteOMSEvent -SensorID $OutdoorUnit_id -SensorName $OutdoorUnit_module_name -MeasurementName "Temperature" -MeasurementValue $OutdoorUnit_Temperature 
            WriteOMSEvent -SensorID $OutdoorUnit_id -SensorName $OutdoorUnit_module_name -MeasurementName "Humidity" -MeasurementValue $OutdoorUnit_Humidity 

        }
        ELSE
        {
            if ($SensorRequest.StatusCode -eq 403) {
                write-error -message "Netatmo Unauthorized, refreshing access token"
                Netatmo-DoAuth
                ReadSensorData
                }

         write-error -message $Request.StatusDescription -ErrorId $Request.StatusCode
        }
}

#Call the two main functions to do the work
Netatmo-DoAuth
ReadSensorData</pre>
<h3>Using Azure automation to run script on a schedule</h3>
<p>I wanted to be able to run the script once an hour automatically, which I can do on my workstation, but I decided to do it on an Azure Automation account in the free sku&#8230; because why not.</p>
<p>To get this done, I created a new Azure automation account:</p>
<p><a href="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1325.png?ssl=1"><img data-attachment-id="893" data-permalink="https://www.tjopsta.net/2016/10/23/netatmo-weather-station-data-ingestion-to-azure-log-analytics/2016-10-23_1325/" data-orig-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1325.png?fit=2735%2C1477&amp;ssl=1" data-orig-size="2735,1477" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="2016-10-23_1325" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1325.png?fit=300%2C162&amp;ssl=1" data-large-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1325.png?fit=1024%2C553&amp;ssl=1" loading="lazy" class="aligncenter wp-image-893" src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1325.png?resize=800%2C432&#038;ssl=1" alt="2016-10-23_1325" width="800" height="432" srcset="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1325.png?resize=1024%2C553&amp;ssl=1 1024w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1325.png?resize=300%2C162&amp;ssl=1 300w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1325.png?resize=768%2C415&amp;ssl=1 768w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1325.png?w=2000&amp;ssl=1 2000w" sizes="(max-width: 800px) 100vw, 800px" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>Once this was done, I created a new runbook, pasted my powershell into it, and setup a schedule running once an hour.</p>
<p>Tested the script, which would show like this if successful:</p>
<p><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1339.png?ssl=1"><img data-attachment-id="894" data-permalink="https://www.tjopsta.net/2016/10/23/netatmo-weather-station-data-ingestion-to-azure-log-analytics/2016-10-23_1339/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1339.png?fit=2351%2C1488&amp;ssl=1" data-orig-size="2351,1488" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="2016-10-23_1339" data-image-description="" data-image-caption="" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1339.png?fit=300%2C190&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1339.png?fit=1024%2C648&amp;ssl=1" loading="lazy" class="aligncenter wp-image-894" src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1339.png?resize=800%2C506&#038;ssl=1" alt="2016-10-23_1339" width="800" height="506" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1339.png?resize=1024%2C648&amp;ssl=1 1024w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1339.png?resize=300%2C190&amp;ssl=1 300w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1339.png?resize=768%2C486&amp;ssl=1 768w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1339.png?w=2000&amp;ssl=1 2000w" sizes="(max-width: 800px) 100vw, 800px" data-recalc-dims="1" /></a></p>
<h3>Over to Log Analytics</h3>
<p>After about an hour of sending events over to Log Analytics, you should get the customer fields being in the settings section:</p>
<p><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1404_001.png?ssl=1"><img data-attachment-id="896" data-permalink="https://www.tjopsta.net/2016/10/23/netatmo-weather-station-data-ingestion-to-azure-log-analytics/2016-10-23_1404_001/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1404_001.png?fit=2624%2C1168&amp;ssl=1" data-orig-size="2624,1168" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="2016-10-23_1404_001" data-image-description="" data-image-caption="" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1404_001.png?fit=300%2C134&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1404_001.png?fit=1024%2C456&amp;ssl=1" loading="lazy" class="aligncenter wp-image-896 size-large" src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1404_001.png?resize=1024%2C456&#038;ssl=1" width="1024" height="456" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1404_001.png?resize=1024%2C456&amp;ssl=1 1024w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1404_001.png?resize=300%2C134&amp;ssl=1 300w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1404_001.png?resize=768%2C342&amp;ssl=1 768w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1404_001.png?w=2000&amp;ssl=1 2000w" sizes="(max-width: 1000px) 100vw, 1000px" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>Once these fields show, you should see all fields when doing a search:</p>
<p><a href="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1409.png?ssl=1"><img data-attachment-id="897" data-permalink="https://www.tjopsta.net/2016/10/23/netatmo-weather-station-data-ingestion-to-azure-log-analytics/2016-10-23_1409/" data-orig-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1409.png?fit=2736%2C1564&amp;ssl=1" data-orig-size="2736,1564" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="2016-10-23_1409" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1409.png?fit=300%2C171&amp;ssl=1" data-large-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1409.png?fit=1024%2C585&amp;ssl=1" loading="lazy" class="aligncenter wp-image-897" src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1409.png?resize=800%2C457&#038;ssl=1" alt="2016-10-23_1409" width="800" height="457" srcset="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1409.png?resize=1024%2C585&amp;ssl=1 1024w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1409.png?resize=300%2C171&amp;ssl=1 300w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1409.png?resize=768%2C439&amp;ssl=1 768w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1409.png?w=2000&amp;ssl=1 2000w" sizes="(max-width: 800px) 100vw, 800px" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>and that pretty much proves the concept.  However I wanted to make it look a bit more awesome, so I created an extra custom solution to make my data look great</p>
<p><a href="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1428.png?ssl=1"><img data-attachment-id="899" data-permalink="https://www.tjopsta.net/2016/10/23/netatmo-weather-station-data-ingestion-to-azure-log-analytics/2016-10-23_1428/" data-orig-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1428.png?fit=2736%2C1564&amp;ssl=1" data-orig-size="2736,1564" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="2016-10-23_1428" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1428.png?fit=300%2C171&amp;ssl=1" data-large-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1428.png?fit=1024%2C585&amp;ssl=1" loading="lazy" class="aligncenter wp-image-899" src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1428.png?resize=800%2C457&#038;ssl=1" alt="2016-10-23_1428" width="800" height="457" srcset="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1428.png?resize=1024%2C585&amp;ssl=1 1024w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1428.png?resize=300%2C171&amp;ssl=1 300w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1428.png?resize=768%2C439&amp;ssl=1 768w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1428.png?w=2000&amp;ssl=1 2000w" sizes="(max-width: 800px) 100vw, 800px" data-recalc-dims="1" /></a></p>
<p>and drilling down to the solution looks like this.</p>
<p><a href="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1431.png?ssl=1"><img data-attachment-id="900" data-permalink="https://www.tjopsta.net/2016/10/23/netatmo-weather-station-data-ingestion-to-azure-log-analytics/2016-10-23_1431/" data-orig-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1431.png?fit=2736%2C1564&amp;ssl=1" data-orig-size="2736,1564" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="2016-10-23_1431" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1431.png?fit=300%2C171&amp;ssl=1" data-large-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1431.png?fit=1024%2C585&amp;ssl=1" loading="lazy" class="aligncenter wp-image-900" src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1431.png?resize=800%2C457&#038;ssl=1" alt="2016-10-23_1431" width="800" height="457" srcset="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1431.png?resize=1024%2C585&amp;ssl=1 1024w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1431.png?resize=300%2C171&amp;ssl=1 300w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1431.png?resize=768%2C439&amp;ssl=1 768w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/2016-10-23_1431.png?w=2000&amp;ssl=1 2000w" sizes="(max-width: 800px) 100vw, 800px" data-recalc-dims="1" /></a></p>
<p>and once you click on a metric, it shows details, also in a graph.</p>
<p><a href="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/snip_20161023153205.png?ssl=1"><img data-attachment-id="909" data-permalink="https://www.tjopsta.net/2016/10/23/netatmo-weather-station-data-ingestion-to-azure-log-analytics/snip_20161023153205/" data-orig-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/snip_20161023153205.png?fit=2735%2C1562&amp;ssl=1" data-orig-size="2735,1562" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="snip_20161023153205" data-image-description="" data-image-caption="" data-medium-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/snip_20161023153205.png?fit=300%2C171&amp;ssl=1" data-large-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/snip_20161023153205.png?fit=1024%2C585&amp;ssl=1" loading="lazy" class="aligncenter wp-image-909" src="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/snip_20161023153205.png?resize=800%2C457&#038;ssl=1" alt="snip_20161023153205" width="800" height="457" srcset="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/snip_20161023153205.png?resize=1024%2C585&amp;ssl=1 1024w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/snip_20161023153205.png?resize=300%2C171&amp;ssl=1 300w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/snip_20161023153205.png?resize=768%2C439&amp;ssl=1 768w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2016/10/snip_20161023153205.png?w=2000&amp;ssl=1 2000w" sizes="(max-width: 800px) 100vw, 800px" data-recalc-dims="1" /></a></p>
<p>If you would like to know how I created the custom solution, let me know and I&#8217;ll add a blog post about it.  Also, if you would like to get notified of new posts, please subscribe to my blog top left of the page.</p>
<p>The post <a rel="nofollow" href="https://www.tjopsta.net/2016/10/23/netatmo-weather-station-data-ingestion-to-azure-log-analytics/">Netatmo weather station data ingestion to Azure Log Analytics</a> appeared first on <a rel="nofollow" href="https://www.tjopsta.net">Tjopsta</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.tjopsta.net/2016/10/23/netatmo-weather-station-data-ingestion-to-azure-log-analytics/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">857</post-id>	</item>
		<item>
		<title>How To: Setup your home network with IPv6 using Mikrotik routers and Telus Optik Fibre</title>
		<link>https://www.tjopsta.net/2016/09/05/how-to-setup-your-home-network-with-ipv6-using-mikrotik-routers-and-telus-optik-fibre/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-setup-your-home-network-with-ipv6-using-mikrotik-routers-and-telus-optik-fibre</link>
					<comments>https://www.tjopsta.net/2016/09/05/how-to-setup-your-home-network-with-ipv6-using-mikrotik-routers-and-telus-optik-fibre/#comments</comments>
		
		<dc:creator><![CDATA[Tjopsta]]></dc:creator>
		<pubDate>Mon, 05 Sep 2016 23:04:15 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[ipv6]]></category>
		<category><![CDATA[Mikrotik]]></category>
		<category><![CDATA[Telus]]></category>
		<guid isPermaLink="false">https://www.tjopsta.net/?p=836</guid>

					<description><![CDATA[<p>I recently played around with my internal network to see if I can get IPv6 working seeing that Telus is providing ipv6 addresses to subscribers. Here is how I did it.</p>
<p>The post <a rel="nofollow" href="https://www.tjopsta.net/2016/09/05/how-to-setup-your-home-network-with-ipv6-using-mikrotik-routers-and-telus-optik-fibre/">How To: Setup your home network with IPv6 using Mikrotik routers and Telus Optik Fibre</a> appeared first on <a rel="nofollow" href="https://www.tjopsta.net">Tjopsta</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I recently played around with my internal network to see if I can get IPv6 working seeing that Telus is providing ipv6 addresses to subscribers.  The reason why I wanted to do this is well&#8230; to get to the 21st century&#8230;and there is arguably a speed increase in your overall connectivity experience.  Big big shout out to <a href="http://www.denis.lemire.name/" target="_blank">Denis Lemire</a>  (<a href="https://twitter.com/denislemire" target="_blank">@Denislemire</a>) that responded to a cry for help on Twitter at midnight on Labor Day and helped me get this done (I am not an expert on IPv6 yet).</p>
<h3>My Setup</h3>
<ol>
<li>Telus Actiontec router setup in port 1 bridge mode</li>
<li>Mikrotik router in router mode with port 1 connected to actiontech port 1 bridge</li>
<li>Mikrotik router is on firmware version 6.34.6 (bugfix only release).  on the current release (6.36.2) my routes were unreachable.  I had to go down to the bugfix release to get things stable.</li>
</ol>
<h3>Actiontec setup</h3>
<ol>
<li>Logon to your actiontec router with your admin username and password (Normally noted at the back of the router), go to advanced settings and set port 1 into bridge mode.</li>
</ol>
<h3>Mikrotik Setup</h3>
<ol>
<li>logon to webfig or winbox and navigate to System / Packages and install the ipv6 package.</li>
<li>Open a new terminal window and paste the below code</li>
</ol>
<p>The following code worked for me.  Note that you need to change the parameters in red to your own interface names in order for it to work:</p>
<pre>/ipv6 dhcp-client
add add-default-route=yes interface=<span style="color: #ff0000;">1-wan-telus</span> pool-name=telus-ipv6 request=prefix
/ipv6 firewall filter
add chain=forward protocol=icmpv6
add chain=input protocol=icmpv6
add chain=input comment="Allow DHCPv6 inbound" dst-port=546 proto
add chain=forward connection-state=established,related
add chain=forward out-interface=<span style="color: #ff0000;">1-wan-telus</span>
add action=drop chain=forward in-interface=<span style="color: #ff0000;">1-wan-telus</span>
/ipv6 address
add address=::1/64 from-pool=telus-ipv6 interface=<span style="color: #ff0000;">2-int-switch</span></pre>
<p>I had to do quite a lot of troubleshooting at this point because it should just work, but routes were unreachable.  Going down to firmware 6.34.6 is what fixed it for me.</p>
<p>At this point after you restart your pc&#8217;s nic you should get new shiny ipv6 ips.  Type &#8220;what is my ip&#8221; in google and you should see your ipv6 ip.  Welcome to IPv6!</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.tjopsta.net/2016/09/05/how-to-setup-your-home-network-with-ipv6-using-mikrotik-routers-and-telus-optik-fibre/">How To: Setup your home network with IPv6 using Mikrotik routers and Telus Optik Fibre</a> appeared first on <a rel="nofollow" href="https://www.tjopsta.net">Tjopsta</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.tjopsta.net/2016/09/05/how-to-setup-your-home-network-with-ipv6-using-mikrotik-routers-and-telus-optik-fibre/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">836</post-id>	</item>
		<item>
		<title>How to setup automated email queues with Microsoft CRM online and Office 365</title>
		<link>https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365</link>
					<comments>https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/#comments</comments>
		
		<dc:creator><![CDATA[Tjopsta]]></dc:creator>
		<pubDate>Mon, 25 Feb 2013 12:37:35 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Microsoft Dynamics CRM]]></category>
		<category><![CDATA[Office365]]></category>
		<category><![CDATA[CRM]]></category>
		<category><![CDATA[Dynamics]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Dynamics CRM Online]]></category>
		<category><![CDATA[Office 365]]></category>
		<guid isPermaLink="false">https://www.tjopsta.net/?p=657</guid>

					<description><![CDATA[<p>Check out this easy "How To" article on creating "email enabled" queues in CRM Online using Office 365 as your mail provider.</p>
<p>The post <a rel="nofollow" href="https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/">How to setup automated email queues with Microsoft CRM online and Office 365</a> appeared first on <a rel="nofollow" href="https://www.tjopsta.net">Tjopsta</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In this article.  We&#8217;ll look at creating queues in Microsoft Dynamics CRM Online through Office 365.</p>
<p>The end result we are trying to achieve here:</p>
<ul>
<li>
<h6><span style="line-height: 18px; font-size: 0.8em;">Send an email to a support mailbox, hosted on Office 365 and receive this on CRM online as a queue item in a &#8220;Support&#8221; Queue</span></h6>
</li>
</ul>
<p><span style="color: #ff0000;">Note: We are not setting delegate permissions or anything as such for the email router in this tutorial.  This tutorial is to get our qualifying criteria to work!</span></p>
<p>I&#8217;m going to assume that you already have a Microsoft Online Services account set-up for your company with Office 365 and CRM Online subscriptions loaded, thus you should be here:</p>
<blockquote><p>&nbsp;</p></blockquote>
<p>&nbsp;</p>
<p><a href="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_4.png?ssl=1"><img data-attachment-id="659" data-permalink="https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/crm_online_queues_4/" data-orig-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_4.png?fit=1280%2C988&amp;ssl=1" data-orig-size="1280,988" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CRM_Online_Queues_4" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_4.png?fit=300%2C231&amp;ssl=1" data-large-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_4.png?fit=1024%2C790&amp;ssl=1" loading="lazy" class="alignleft wp-image-659" src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_4.png?resize=614%2C474&#038;ssl=1" alt="CRM_Online_Queues_4" width="614" height="474" srcset="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_4.png?resize=1024%2C790&amp;ssl=1 1024w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_4.png?resize=300%2C231&amp;ssl=1 300w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_4.png?w=1280&amp;ssl=1 1280w" sizes="(max-width: 614px) 100vw, 614px" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>I created two users for this demo.  An Admin account, and a support user. (Mailbox that will receive my support emails)</p>
<p><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_9.png?ssl=1"><img data-attachment-id="660" data-permalink="https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/crm_online_queues_9/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_9.png?fit=1280%2C747&amp;ssl=1" data-orig-size="1280,747" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CRM_Online_Queues_9" data-image-description="" data-image-caption="" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_9.png?fit=300%2C175&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_9.png?fit=1024%2C597&amp;ssl=1" loading="lazy" class="alignleft wp-image-660" src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_9.png?resize=614%2C358&#038;ssl=1" alt="CRM_Online_Queues_9" width="614" height="358" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_9.png?resize=1024%2C597&amp;ssl=1 1024w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_9.png?resize=300%2C175&amp;ssl=1 300w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_9.png?w=1280&amp;ssl=1 1280w" sizes="(max-width: 614px) 100vw, 614px" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Right, let&#8217;s get this show on the road.</p>
<h2><span style="text-decoration: underline;">Step 1 (CRM Configuration)</span>:</h2>
<p>Login to CRM, and go to <strong>SETTINGS</strong> / <strong>BUSINESS MANAGEMENT</strong> / <strong>QUEUES</strong></p>
<div id="attachment_661" style="width: 624px" class="wp-caption alignleft"><a href="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_10.png?ssl=1"><img aria-describedby="caption-attachment-661" data-attachment-id="661" data-permalink="https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/crm_online_queues_10/" data-orig-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_10.png?fit=1441%2C900&amp;ssl=1" data-orig-size="1441,900" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CRM_Online_Queues_10" data-image-description="" data-image-caption="&lt;p&gt;Queue customization screen of CRM online&lt;/p&gt;
" data-medium-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_10.png?fit=300%2C187&amp;ssl=1" data-large-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_10.png?fit=1024%2C639&amp;ssl=1" loading="lazy" class=" wp-image-661 " src="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_10.png?resize=614%2C383&#038;ssl=1" alt="Queue customization screen of CRM online" width="614" height="383" srcset="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_10.png?resize=1024%2C639&amp;ssl=1 1024w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_10.png?resize=300%2C187&amp;ssl=1 300w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_10.png?w=1441&amp;ssl=1 1441w" sizes="(max-width: 614px) 100vw, 614px" data-recalc-dims="1" /></a><p id="caption-attachment-661" class="wp-caption-text">Queue customization screen of CRM online</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Click on the &#8220;New&#8221; button to create the new Queue.</p>
<p>Set the following field properties:</p>
<ul>
<li>
<h6><span style="line-height: 18px; font-size: 0.8em;"><strong>Queue Name:</strong> Support (Or whatever you want to call your queue)</span></h6>
</li>
<li>
<h6><span style="line-height: 18px; font-size: 0.8em;"><strong>Email address:</strong> The email address of the mailbox you will use in Office 365 to receive your support mails.</span></h6>
</li>
<li>
<h6><span style="line-height: 18px; font-size: 0.8em;"><strong>Convert to Email Activities:</strong> All Email Messages</span></h6>
</li>
<li>
<h6><span style="line-height: 18px; font-size: 0.8em;"><strong>Email access type &#8211; incoming:</strong> E-mail Router</span></h6>
</li>
<li>
<h6><span style="line-height: 18px; font-size: 0.8em;"><strong>Email access type &#8211; Outgoing:</strong> E-mail Router</span></h6>
</li>
</ul>
<div id="attachment_662" style="width: 682px" class="wp-caption alignleft"><a href="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_11.png?ssl=1"><img aria-describedby="caption-attachment-662" data-attachment-id="662" data-permalink="https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/crm_online_queues_11/" data-orig-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_11.png?fit=840%2C755&amp;ssl=1" data-orig-size="840,755" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CRM_Online_Queues_11" data-image-description="" data-image-caption="&lt;p&gt;New CRM Queue form&lt;/p&gt;
" data-medium-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_11.png?fit=300%2C269&amp;ssl=1" data-large-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_11.png?fit=840%2C755&amp;ssl=1" loading="lazy" class=" wp-image-662 " src="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_11.png?resize=672%2C604&#038;ssl=1" alt="New CRM Queue form" width="672" height="604" srcset="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_11.png?w=840&amp;ssl=1 840w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_11.png?resize=300%2C269&amp;ssl=1 300w" sizes="(max-width: 672px) 100vw, 672px" data-recalc-dims="1" /></a><p id="caption-attachment-662" class="wp-caption-text">New CRM Queue form</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Once Saved, you need to approve the email address for the queue.  To do this, click on the newly created queue and click &#8220;Approve E-mail&#8221;.   You will be presented with a dialog box where you click on ok.</p>
<div id="attachment_663" style="width: 727px" class="wp-caption alignleft"><a href="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_12.png?ssl=1"><img aria-describedby="caption-attachment-663" data-attachment-id="663" data-permalink="https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/crm_online_queues_12/" data-orig-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_12.png?fit=1442%2C901&amp;ssl=1" data-orig-size="1442,901" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CRM_Online_Queues_12" data-image-description="" data-image-caption="&lt;p&gt;Queue E-mail Address approval page&lt;/p&gt;
" data-medium-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_12.png?fit=300%2C187&amp;ssl=1" data-large-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_12.png?fit=1024%2C639&amp;ssl=1" loading="lazy" class=" wp-image-663 " src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_12.png?resize=717%2C447&#038;ssl=1" alt="Queue E-mail Address approval page" width="717" height="447" srcset="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_12.png?resize=1024%2C639&amp;ssl=1 1024w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_12.png?resize=300%2C187&amp;ssl=1 300w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_12.png?w=1442&amp;ssl=1 1442w" sizes="(max-width: 717px) 100vw, 717px" data-recalc-dims="1" /></a><p id="caption-attachment-663" class="wp-caption-text">Queue E-mail Address approval page</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h2>Step 2: (CRM E-mail router configuration manager config)</h2>
<p>Next, startup the E-mail router configuration manager which can be downloaded from <a href="http://www.microsoft.com/download/details.aspx?id=27818" target="_blank" rel="noopener">http://www.microsoft.com/download/details.aspx?id=27818</a></p>
<p>Note:  You can install this on any pc.</p>
<p>What we need to achieve here is the following:</p>
<ul>
<li>
<h6><span style="line-height: 18px; font-size: 0.8em;">Create an Incoming Profile (Tell CRM which mailbox to COLLECT mail from to change to queue items)</span></h6>
</li>
<li>
<h6><span style="line-height: 18px; font-size: 0.8em;">Create an Outgoing Profile (Tell CRM which mailbox to use to SEND mail)</span></h6>
</li>
</ul>
<p><span style="color: #ff0000;"><span style="color: #000000;">In the Configuration Profiles Tab, click &#8220;New&#8221;</span><br />
</span></p>
<p>To set our Incoming profile, populate the following fields:</p>
<ul>
<li>
<h6><span style="line-height: 18px; font-size: 0.8em;"><strong>Profile Name</strong>: Support_Incoming (or whatever you&#8217;d like to call it)</span></h6>
</li>
<li>
<h6><span style="line-height: 18px; font-size: 0.8em;"><strong>Direction</strong>: Incoming</span></h6>
</li>
<li>
<h6><span style="line-height: 18px; font-size: 0.8em;"><strong>E-mail Server Type</strong>: ExchangeOnline</span></h6>
</li>
<li>
<h6><span style="line-height: 18px; font-size: 0.8em;"><strong>Check the box for</strong> Use Autodiscover</span></h6>
</li>
<li>
<h6><span style="line-height: 18px; font-size: 0.8em;"><strong>Access Credentials</strong>: Other Specified</span></h6>
</li>
<li>
<h6><span style="line-height: 18px; font-size: 0.8em;"><strong>Username</strong>: your support mailbox email address (In this demo, mine is support@testlabsca.onmicrosoft.com)</span></h6>
</li>
<li>
<h6><span style="line-height: 18px; font-size: 0.8em;"><strong>Password</strong>: your password for your support mailbox.</span></h6>
</li>
</ul>
<div id="attachment_664" style="width: 481px" class="wp-caption alignleft"><a href="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_14.png?ssl=1"><img aria-describedby="caption-attachment-664" data-attachment-id="664" data-permalink="https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/crm_online_queues_14/" data-orig-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_14.png?fit=471%2C570&amp;ssl=1" data-orig-size="471,570" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CRM_Online_Queues_14" data-image-description="" data-image-caption="&lt;p&gt;Support Queue Incoming Profile Settings&lt;/p&gt;
" data-medium-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_14.png?fit=247%2C300&amp;ssl=1" data-large-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_14.png?fit=471%2C570&amp;ssl=1" loading="lazy" class="size-full wp-image-664" src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_14.png?resize=471%2C570&#038;ssl=1" alt="Support Queue Incoming Profile Settings" width="471" height="570" srcset="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_14.png?w=471&amp;ssl=1 471w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_14.png?resize=247%2C300&amp;ssl=1 247w" sizes="(max-width: 471px) 100vw, 471px" data-recalc-dims="1" /></a><p id="caption-attachment-664" class="wp-caption-text">Support Queue Incoming Profile Settings</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Click OK,</p>
<p>Create another new profile (Now for outgoing) by clicking &#8220;New&#8221; with the following properties</p>
<ul>
<li><strong>PROFILE NAME</strong>: SUPPORT_OUTGOING (OR WHATEVER YOU&#8217;D LIKE TO CALL IT)</li>
<li><strong>DIRECTION</strong>: OUTGOING</li>
<li><strong>E-MAIL SERVER TYPE</strong>: EXCHANGEONLINE</li>
<li><strong>CHECK THE BOX FOR</strong> USE AUTODISCOVER</li>
<li><strong>ACCESS CREDENTIALS</strong>: OTHER SPECIFIED</li>
<li><strong>USERNAME</strong>: YOUR SUPPORT MAILBOX EMAIL ADDRESS (IN THIS DEMO, MINE IS SUPPORT@TESTLABSCA.ONMICROSOFT.COM)</li>
<li><strong>PASSWORD</strong>: YOUR PASSWORD FOR YOUR SUPPORT MAILBOX.</li>
<li><strong>ACCESS TYPE</strong>: DELEGATE ACCESS</li>
</ul>
<div id="attachment_665" style="width: 481px" class="wp-caption alignleft"><a href="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_15.png?ssl=1"><img aria-describedby="caption-attachment-665" data-attachment-id="665" data-permalink="https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/crm_online_queues_15/" data-orig-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_15.png?fit=471%2C570&amp;ssl=1" data-orig-size="471,570" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CRM_Online_Queues_15" data-image-description="" data-image-caption="&lt;p&gt;CRM Configuration profile for outgoing&lt;/p&gt;
" data-medium-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_15.png?fit=247%2C300&amp;ssl=1" data-large-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_15.png?fit=471%2C570&amp;ssl=1" loading="lazy" class="size-full wp-image-665" src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_15.png?resize=471%2C570&#038;ssl=1" alt="CRM Configuration profile for outgoing" width="471" height="570" srcset="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_15.png?w=471&amp;ssl=1 471w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_15.png?resize=247%2C300&amp;ssl=1 247w" sizes="(max-width: 471px) 100vw, 471px" data-recalc-dims="1" /></a><p id="caption-attachment-665" class="wp-caption-text">Support Queue Outgoing Profile Settings</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>When you click Ok, you should now be left with the following two profiles, or something similar:</p>
<div id="attachment_666" style="width: 693px" class="wp-caption alignleft"><a href="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_16.png?ssl=1"><img aria-describedby="caption-attachment-666" data-attachment-id="666" data-permalink="https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/crm_online_queues_16/" data-orig-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_16.png?fit=976%2C636&amp;ssl=1" data-orig-size="976,636" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CRM_Online_Queues_16" data-image-description="" data-image-caption="&lt;p&gt;E-mail router configuration profiles&lt;/p&gt;
" data-medium-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_16.png?fit=300%2C195&amp;ssl=1" data-large-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_16.png?fit=976%2C636&amp;ssl=1" loading="lazy" class=" wp-image-666 " src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_16.png?resize=683%2C445&#038;ssl=1" alt="E-mail router configuration profiles" width="683" height="445" srcset="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_16.png?w=976&amp;ssl=1 976w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_16.png?resize=300%2C195&amp;ssl=1 300w" sizes="(max-width: 683px) 100vw, 683px" data-recalc-dims="1" /></a><p id="caption-attachment-666" class="wp-caption-text">E-mail router configuration profiles</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Next, click on the &#8220;Deployments&#8221; Tab, and click &#8220;New&#8221;</p>
<p>for this you will need your organization unique name on CRM online, so to get this, pop back to the CRM Online page, and go to:</p>
<p><strong>SETTINGS</strong> / <strong>CUSTOMIZATIONS</strong> / <strong>DEVELOPER RESOURCES</strong></p>
<p>Your unique organization name will be in the first block. Write this down or copy it somewhere.</p>
<div id="attachment_667" style="width: 624px" class="wp-caption alignleft"><a href="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_17.png?ssl=1"><img aria-describedby="caption-attachment-667" data-attachment-id="667" data-permalink="https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/crm_online_queues_17/" data-orig-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_17.png?fit=1280%2C768&amp;ssl=1" data-orig-size="1280,768" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CRM_Online_Queues_17" data-image-description="" data-image-caption="&lt;p&gt;CRM Online Unique Organization name&lt;/p&gt;
" data-medium-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_17.png?fit=300%2C180&amp;ssl=1" data-large-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_17.png?fit=1024%2C614&amp;ssl=1" loading="lazy" class=" wp-image-667 " src="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_17.png?resize=614%2C368&#038;ssl=1" alt="CRM Online Unique Organization name" width="614" height="368" srcset="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_17.png?resize=1024%2C614&amp;ssl=1 1024w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_17.png?resize=300%2C180&amp;ssl=1 300w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_17.png?w=1280&amp;ssl=1 1280w" sizes="(max-width: 614px) 100vw, 614px" data-recalc-dims="1" /></a><p id="caption-attachment-667" class="wp-caption-text">CRM Online Unique Organization name</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Now pop back to your email router config, and in the new profile screen, populate the following fields:</p>
<ul>
<li><strong style="line-height: normal;">DEPLOYMENT</strong><span style="line-height: normal;">: Microsoft Dynamics CRM Online</span></li>
<li><strong style="line-height: normal;">Microsoft Dynamics CRM Server</strong><span style="line-height: normal;">: By default, the url there will be https://dev.crm.dynamics.com/ which is for on-premises exchange servers.  You need to change this url to https://disco.crm.dynamics.com/</span></li>
<li><strong>Access Credentials</strong>: Enter a username and password the configuration manager can use to authenticate to your CRM online account.  This needs to be an administrator account.</li>
<li><strong style="line-height: normal;">Incoming Configuration Profile</strong><span style="line-height: normal;">: (Select the incoming profile created)</span></li>
<li><strong style="line-height: normal;">Outgoing configuration profile</strong><span style="line-height: normal;">: (Select the outgoing profile created)</span></li>
</ul>
<div id="attachment_668" style="width: 481px" class="wp-caption alignleft"><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_18.png?ssl=1"><img aria-describedby="caption-attachment-668" data-attachment-id="668" data-permalink="https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/crm_online_queues_18/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_18.png?fit=471%2C520&amp;ssl=1" data-orig-size="471,520" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CRM_Online_Queues_18" data-image-description="" data-image-caption="&lt;p&gt;New Deployment Page&lt;/p&gt;
" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_18.png?fit=271%2C300&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_18.png?fit=471%2C520&amp;ssl=1" loading="lazy" class="size-full wp-image-668" src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_18.png?resize=471%2C520&#038;ssl=1" alt="New Deployment Page" width="471" height="520" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_18.png?w=471&amp;ssl=1 471w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_18.png?resize=271%2C300&amp;ssl=1 271w" sizes="(max-width: 471px) 100vw, 471px" data-recalc-dims="1" /></a><p id="caption-attachment-668" class="wp-caption-text">New Deployment Page</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>At the end it should look like this:</p>
<div id="attachment_669" style="width: 693px" class="wp-caption alignleft"><a href="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_19.png?ssl=1"><img aria-describedby="caption-attachment-669" data-attachment-id="669" data-permalink="https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/crm_online_queues_19/" data-orig-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_19.png?fit=976%2C636&amp;ssl=1" data-orig-size="976,636" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CRM_Online_Queues_19" data-image-description="" data-image-caption="&lt;p&gt;CRM Online deployment profile&lt;/p&gt;
" data-medium-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_19.png?fit=300%2C195&amp;ssl=1" data-large-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_19.png?fit=976%2C636&amp;ssl=1" loading="lazy" class=" wp-image-669 " src="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_19.png?resize=683%2C445&#038;ssl=1" alt="CRM Online deployment profile" width="683" height="445" srcset="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_19.png?w=976&amp;ssl=1 976w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_19.png?resize=300%2C195&amp;ssl=1 300w" sizes="(max-width: 683px) 100vw, 683px" data-recalc-dims="1" /></a><p id="caption-attachment-669" class="wp-caption-text">CRM Online deployment profile</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Once complete you can click on the 3rd tab called &#8220;Users, Queues and Forward Mailboxes&#8221;.  Click on the &#8220;Load Data&#8221; button.</p>
<p>If your credentials you entered in the deployment profile was correct, you should see your queue that you created listed, like so:</p>
<div id="attachment_670" style="width: 693px" class="wp-caption alignleft"><a href="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_21.png?ssl=1"><img aria-describedby="caption-attachment-670" data-attachment-id="670" data-permalink="https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/crm_online_queues_21/" data-orig-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_21.png?fit=976%2C636&amp;ssl=1" data-orig-size="976,636" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CRM_Online_Queues_21" data-image-description="" data-image-caption="&lt;p&gt;Queues in the CRM E-mail Router&lt;/p&gt;
" data-medium-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_21.png?fit=300%2C195&amp;ssl=1" data-large-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_21.png?fit=976%2C636&amp;ssl=1" loading="lazy" class=" wp-image-670 " src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_21.png?resize=683%2C445&#038;ssl=1" alt="Queues in the CRM E-mail Router" width="683" height="445" srcset="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_21.png?w=976&amp;ssl=1 976w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_21.png?resize=300%2C195&amp;ssl=1 300w" sizes="(max-width: 683px) 100vw, 683px" data-recalc-dims="1" /></a><p id="caption-attachment-670" class="wp-caption-text">Queues in the CRM E-mail Router</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Your configuration should have picked up the profiles you created.  To test this, click &#8220;Test Access&#8221;, whereby if all your configurations are ok, you should get the following screen:</p>
<div id="attachment_671" style="width: 600px" class="wp-caption alignleft"><a href="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_22.png?ssl=1"><img aria-describedby="caption-attachment-671" data-attachment-id="671" data-permalink="https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/crm_online_queues_22/" data-orig-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_22.png?fit=737%2C544&amp;ssl=1" data-orig-size="737,544" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CRM_Online_Queues_22" data-image-description="" data-image-caption="&lt;p&gt;Profile Tests Results&lt;/p&gt;
" data-medium-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_22.png?fit=300%2C221&amp;ssl=1" data-large-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_22.png?fit=737%2C544&amp;ssl=1" loading="lazy" class=" wp-image-671 " src="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_22.png?resize=590%2C435&#038;ssl=1" alt="Profile Tests Results" width="590" height="435" srcset="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_22.png?w=737&amp;ssl=1 737w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_22.png?resize=300%2C221&amp;ssl=1 300w" sizes="(max-width: 590px) 100vw, 590px" data-recalc-dims="1" /></a><p id="caption-attachment-671" class="wp-caption-text">Profile Tests Results</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Once your tests complete successfully, you can click on &#8220;Publish&#8221;</p>
<div id="attachment_672" style="width: 700px" class="wp-caption alignleft"><a href="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_23.png?ssl=1"><img aria-describedby="caption-attachment-672" data-attachment-id="672" data-permalink="https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/crm_online_queues_23/" data-orig-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_23.png?fit=985%2C645&amp;ssl=1" data-orig-size="985,645" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CRM_Online_Queues_23" data-image-description="" data-image-caption="&lt;p&gt;Publish Profile Screen&lt;/p&gt;
" data-medium-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_23.png?fit=300%2C196&amp;ssl=1" data-large-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_23.png?fit=985%2C645&amp;ssl=1" loading="lazy" class=" wp-image-672 " src="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_23.png?resize=690%2C451&#038;ssl=1" alt="Publish Profile Screen" width="690" height="451" srcset="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_23.png?w=985&amp;ssl=1 985w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_23.png?resize=300%2C196&amp;ssl=1 300w" sizes="(max-width: 690px) 100vw, 690px" data-recalc-dims="1" /></a><p id="caption-attachment-672" class="wp-caption-text">Publish Profile Screen</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>That&#8217;s it!</p>
<p>Now let&#8217;s test our configuration by sending an email to the support box, to see if we get queue items in our Support Queue</p>
<div id="attachment_673" style="width: 727px" class="wp-caption alignleft"><a href="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_24.png?ssl=1"><img aria-describedby="caption-attachment-673" data-attachment-id="673" data-permalink="https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/crm_online_queues_24/" data-orig-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_24.png?fit=1277%2C765&amp;ssl=1" data-orig-size="1277,765" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CRM_Online_Queues_24" data-image-description="" data-image-caption="&lt;p&gt;Sending test mail to support queue&lt;/p&gt;
" data-medium-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_24.png?fit=300%2C179&amp;ssl=1" data-large-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_24.png?fit=1024%2C613&amp;ssl=1" loading="lazy" class=" wp-image-673 " src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_24.png?resize=717%2C429&#038;ssl=1" alt="Sending test mail to support queue" width="717" height="429" srcset="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_24.png?resize=1024%2C613&amp;ssl=1 1024w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_24.png?resize=300%2C179&amp;ssl=1 300w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_24.png?w=1277&amp;ssl=1 1277w" sizes="(max-width: 717px) 100vw, 717px" data-recalc-dims="1" /></a><p id="caption-attachment-673" class="wp-caption-text">Sending test mail to support queue</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Once sent, let&#8217;s check if we&#8217;ve got a support queue item.</p>
<p>Remember to change your Queue Items view to &#8220;All Items .  The items aren&#8217;t assigned to anyone yet, so you will not see the item if your view is on the default &#8220;Items I am working on&#8221;.  Also change your queue drop down to &#8220;All Queues&#8221; or the support queue.</p>
<div id="attachment_674" style="width: 753px" class="wp-caption alignleft"><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_25.png?ssl=1"><img aria-describedby="caption-attachment-674" data-attachment-id="674" data-permalink="https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/crm_online_queues_25/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_25.png?fit=1280%2C768&amp;ssl=1" data-orig-size="1280,768" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CRM_Online_Queues_25" data-image-description="" data-image-caption="&lt;p&gt;Queue test item in queue&lt;/p&gt;
" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_25.png?fit=300%2C180&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_25.png?fit=1024%2C614&amp;ssl=1" loading="lazy" class=" wp-image-674 " src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_25.png?resize=743%2C446&#038;ssl=1" alt="Queue test item in queue" width="743" height="446" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_25.png?resize=1024%2C614&amp;ssl=1 1024w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_25.png?resize=300%2C180&amp;ssl=1 300w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_25.png?w=1280&amp;ssl=1 1280w" sizes="(max-width: 743px) 100vw, 743px" data-recalc-dims="1" /></a><p id="caption-attachment-674" class="wp-caption-text">Queue test item in queue</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>As you can see, our queue items are there (I sent one from Gmail, and one from internal)</p>
<div id="attachment_675" style="width: 744px" class="wp-caption alignleft"><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_26.png?ssl=1"><img aria-describedby="caption-attachment-675" data-attachment-id="675" data-permalink="https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/crm_online_queues_26/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_26.png?fit=1020%2C891&amp;ssl=1" data-orig-size="1020,891" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CRM_Online_Queues_26" data-image-description="" data-image-caption="&lt;p&gt;Test Queue item detail.&lt;/p&gt;
" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_26.png?fit=300%2C262&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_26.png?fit=1020%2C891&amp;ssl=1" loading="lazy" class=" wp-image-675 " src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_26.png?resize=734%2C642&#038;ssl=1" alt="Test Queue item detail." width="734" height="642" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_26.png?w=1020&amp;ssl=1 1020w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/CRM_Online_Queues_26.png?resize=300%2C262&amp;ssl=1 300w" sizes="(max-width: 734px) 100vw, 734px" data-recalc-dims="1" /></a><p id="caption-attachment-675" class="wp-caption-text">Test Queue item detail.</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>This concludes the tutorial.  If you have any questions, please comment.</p>
<p>Next post we will look at automatically creating Cases for emails sent to the support box, and replying to the client with an appropriate email and &#8220;ticket number&#8221;</p>
<p>If you found that this post helped you, please consider donating on the right.</p>
<p>The post <a rel="nofollow" href="https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/">How to setup automated email queues with Microsoft CRM online and Office 365</a> appeared first on <a rel="nofollow" href="https://www.tjopsta.net">Tjopsta</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.tjopsta.net/2013/02/25/how-to-setup-automated-email-queues-with-microsoft-crm-online-and-office-365/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">657</post-id>	</item>
		<item>
		<title>How to manage IOS devices with Windows Intune</title>
		<link>https://www.tjopsta.net/2013/02/22/how-to-manage-ios-devices-with-windows-intune/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-manage-ios-devices-with-windows-intune</link>
					<comments>https://www.tjopsta.net/2013/02/22/how-to-manage-ios-devices-with-windows-intune/#comments</comments>
		
		<dc:creator><![CDATA[Tjopsta]]></dc:creator>
		<pubDate>Fri, 22 Feb 2013 10:50:05 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Windows Intune]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Microsoft]]></category>
		<guid isPermaLink="false">https://www.tjopsta.net/?p=623</guid>

					<description><![CDATA[<p>A quick how to on managing iOS devices from Windows Intune.</p>
<p>The post <a rel="nofollow" href="https://www.tjopsta.net/2013/02/22/how-to-manage-ios-devices-with-windows-intune/">How to manage IOS devices with Windows Intune</a> appeared first on <a rel="nofollow" href="https://www.tjopsta.net">Tjopsta</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>One of the great features Windows Intune delivers to us is the ability to manage IOS devices of our employees.  We do not use System Center Configuration manager 2012 in a domain environment so we decided to setup Windows Intune to manage our mobile devices as a standalone system.  This is how we did it.</p>
<p>&nbsp;</p>
<p>Login to Windows Intune and go to:</p>
<blockquote><p>ADMINISTRATION /  MOBILE DEVICE MANAGEMENT</p></blockquote>
<p>At the right under &#8220;<strong>Tasks</strong>&#8221; click &#8220;<strong>Set Mobile Device Management Authority</strong>&#8221; and select &#8220;<strong>Windows Intune</strong>&#8221;</p>
<p><a href="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Capture.png?ssl=1"><img data-attachment-id="624" data-permalink="https://www.tjopsta.net/2013/02/22/how-to-manage-ios-devices-with-windows-intune/capture-3/" data-orig-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Capture.png?fit=1379%2C816&amp;ssl=1" data-orig-size="1379,816" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Settings1" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Capture.png?fit=300%2C177&amp;ssl=1" data-large-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Capture.png?fit=1024%2C605&amp;ssl=1" loading="lazy" class=" wp-image-624 alignleft" src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Capture.png?resize=738%2C436&#038;ssl=1" alt="Settings1" width="738" height="436" srcset="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Capture.png?resize=1024%2C605&amp;ssl=1 1024w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Capture.png?resize=300%2C177&amp;ssl=1 300w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Capture.png?w=1379&amp;ssl=1 1379w" sizes="(max-width: 738px) 100vw, 738px" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Now go to:</p>
<blockquote><p>ADMINISTRATION / MOBILE DEVICE MANAGEMENT / IOS / UPLOAD AN APNS CERTIFICATE</p></blockquote>
<p>and click on &#8220;Download the APNs certificate request&#8221;.</p>
<p>You will now be presented with a file, save it somewhere on your desktop.</p>
<p><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-12.png?ssl=1"><img data-attachment-id="625" data-permalink="https://www.tjopsta.net/2013/02/22/how-to-manage-ios-devices-with-windows-intune/screenshot-12/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-12.png?fit=1376%2C813&amp;ssl=1" data-orig-size="1376,813" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Screenshot (12)" data-image-description="" data-image-caption="" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-12.png?fit=300%2C177&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-12.png?fit=1024%2C605&amp;ssl=1" loading="lazy" class="alignleft wp-image-625" src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-12.png?resize=738%2C436&#038;ssl=1" alt="Screenshot (12)" width="738" height="436" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-12.png?resize=1024%2C605&amp;ssl=1 1024w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-12.png?resize=300%2C177&amp;ssl=1 300w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-12.png?w=1376&amp;ssl=1 1376w" sizes="(max-width: 738px) 100vw, 738px" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Once you have your request file, you can now request a new certificate from Apple.  To do this, you will need an apple ID.  I suggest you create a new appleID for your company with a generic email address that someone would be able to access should you leave your company.</p>
<p>To do this, go to https://appleid.apple.com and click on &#8220;Create&#8221;</p>
<p><a href="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-10.png?ssl=1"><img data-attachment-id="626" data-permalink="https://www.tjopsta.net/2013/02/22/how-to-manage-ios-devices-with-windows-intune/screenshot-10/" data-orig-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-10.png?fit=1377%2C811&amp;ssl=1" data-orig-size="1377,811" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Screenshot (10)" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-10.png?fit=300%2C176&amp;ssl=1" data-large-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-10.png?fit=1024%2C603&amp;ssl=1" loading="lazy" class="alignleft wp-image-626" src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-10.png?resize=738%2C434&#038;ssl=1" alt="Screenshot (10)" width="738" height="434" srcset="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-10.png?resize=1024%2C603&amp;ssl=1 1024w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-10.png?resize=300%2C176&amp;ssl=1 300w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-10.png?w=1377&amp;ssl=1 1377w" sizes="(max-width: 738px) 100vw, 738px" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Fill in the details required to create the new AppleID.</p>
<p>Once complete, you will have to verify the request.</p>
<p><a style="font-size: 0.8em;" href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-11.png?ssl=1"><img data-attachment-id="627" data-permalink="https://www.tjopsta.net/2013/02/22/how-to-manage-ios-devices-with-windows-intune/screenshot-11/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-11.png?fit=1376%2C815&amp;ssl=1" data-orig-size="1376,815" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Screenshot (11)" data-image-description="" data-image-caption="" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-11.png?fit=300%2C177&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-11.png?fit=1024%2C606&amp;ssl=1" loading="lazy" class="alignleft wp-image-627" src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-11.png?resize=738%2C436&#038;ssl=1" alt="Screenshot (11)" width="738" height="436" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-11.png?resize=1024%2C606&amp;ssl=1 1024w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-11.png?resize=300%2C177&amp;ssl=1 300w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-11.png?w=1376&amp;ssl=1 1376w" sizes="(max-width: 738px) 100vw, 738px" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Once created, click on the &#8220;Apple Certificates Portal&#8221; link in Windows Intune and login with your Apple ID.</p>
<p><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-13.png?ssl=1"><img data-attachment-id="628" data-permalink="https://www.tjopsta.net/2013/02/22/how-to-manage-ios-devices-with-windows-intune/screenshot-13/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-13.png?fit=1375%2C814&amp;ssl=1" data-orig-size="1375,814" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Screenshot (13)" data-image-description="" data-image-caption="" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-13.png?fit=300%2C177&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-13.png?fit=1024%2C606&amp;ssl=1" loading="lazy" class="alignleft wp-image-628" src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-13.png?resize=738%2C436&#038;ssl=1" alt="Screenshot (13)" width="738" height="436" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-13.png?resize=1024%2C606&amp;ssl=1 1024w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-13.png?resize=300%2C177&amp;ssl=1 300w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-13.png?w=1375&amp;ssl=1 1375w" sizes="(max-width: 738px) 100vw, 738px" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Once Logged in, click on &#8220;Create a certificate&#8221;.  You will upload your certificate request file and at the end of the wizard, you will be presented with this screen</p>
<p><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-16.png?ssl=1"><img data-attachment-id="629" data-permalink="https://www.tjopsta.net/2013/02/22/how-to-manage-ios-devices-with-windows-intune/screenshot-16/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-16.png?fit=1376%2C815&amp;ssl=1" data-orig-size="1376,815" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Screenshot (16)" data-image-description="" data-image-caption="" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-16.png?fit=300%2C177&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-16.png?fit=1024%2C606&amp;ssl=1" loading="lazy" class="alignleft wp-image-629" src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-16.png?resize=738%2C436&#038;ssl=1" alt="Screenshot (16)" width="738" height="436" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-16.png?resize=1024%2C606&amp;ssl=1 1024w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-16.png?resize=300%2C177&amp;ssl=1 300w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-16.png?w=1376&amp;ssl=1 1376w" sizes="(max-width: 738px) 100vw, 738px" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Download your certificate.</p>
<p>Go back to Windows Intune, and click on the button labeled &#8220;Upload the APNs Certificate&#8221;</p>
<p>Click on the Browse button, and select your certificate file.</p>
<p>Enter your appleID you used to create the certificate in the &#8220;Apple ID&#8221; field.  (This is just so that Windows Intune can remind you which appleid you used, it&#8217;s not used for anything else)</p>
<p><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-18.png?ssl=1"><img data-attachment-id="630" data-permalink="https://www.tjopsta.net/2013/02/22/how-to-manage-ios-devices-with-windows-intune/screenshot-18/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-18.png?fit=1372%2C814&amp;ssl=1" data-orig-size="1372,814" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Screenshot (18)" data-image-description="" data-image-caption="" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-18.png?fit=300%2C177&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-18.png?fit=1024%2C607&amp;ssl=1" loading="lazy" class="alignleft wp-image-630" src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-18.png?resize=738%2C437&#038;ssl=1" alt="Screenshot (18)" width="738" height="437" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-18.png?resize=1024%2C607&amp;ssl=1 1024w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-18.png?resize=300%2C177&amp;ssl=1 300w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-18.png?w=1372&amp;ssl=1 1372w" sizes="(max-width: 738px) 100vw, 738px" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Once uploaded, you will get a confirmation screen.</p>
<p>&nbsp;</p>
<p><a href="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-20.png?ssl=1"><img data-attachment-id="631" data-permalink="https://www.tjopsta.net/2013/02/22/how-to-manage-ios-devices-with-windows-intune/screenshot-20/" data-orig-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-20.png?fit=1380%2C812&amp;ssl=1" data-orig-size="1380,812" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Screenshot (20)" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-20.png?fit=300%2C176&amp;ssl=1" data-large-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-20.png?fit=1024%2C602&amp;ssl=1" loading="lazy" class="alignleft wp-image-631" src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-20.png?resize=738%2C434&#038;ssl=1" alt="Screenshot (20)" width="738" height="434" srcset="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-20.png?resize=1024%2C602&amp;ssl=1 1024w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-20.png?resize=300%2C176&amp;ssl=1 300w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Screenshot-20.png?w=1380&amp;ssl=1 1380w" sizes="(max-width: 738px) 100vw, 738px" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Now you should be able to enroll IOS devices.  Ask your users to navigate (Using NB: <strong>SAFARI</strong>) to <strong>https://m.manage.microsoft.com</strong> on their iPhones.</p>
<p><a href="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS1.png?ssl=1"><img data-attachment-id="632" data-permalink="https://www.tjopsta.net/2013/02/22/how-to-manage-ios-devices-with-windows-intune/ios1/" data-orig-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS1.png?fit=640%2C1136&amp;ssl=1" data-orig-size="640,1136" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IOS1" data-image-description="" data-image-caption="" data-medium-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS1.png?fit=169%2C300&amp;ssl=1" data-large-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS1.png?fit=576%2C1024&amp;ssl=1" loading="lazy" class="alignleft wp-image-632" src="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS1.png?resize=346%2C614&#038;ssl=1" alt="IOS1" width="346" height="614" srcset="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS1.png?resize=576%2C1024&amp;ssl=1 576w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS1.png?resize=169%2C300&amp;ssl=1 169w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS1.png?w=640&amp;ssl=1 640w" sizes="(max-width: 346px) 100vw, 346px" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Click on the &#8220;Install&#8221; button, to active the management profile.</p>
<p><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS2.png?ssl=1"><img data-attachment-id="633" data-permalink="https://www.tjopsta.net/2013/02/22/how-to-manage-ios-devices-with-windows-intune/ios2/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS2.png?fit=640%2C1136&amp;ssl=1" data-orig-size="640,1136" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IOS2" data-image-description="" data-image-caption="" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS2.png?fit=169%2C300&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS2.png?fit=576%2C1024&amp;ssl=1" loading="lazy" class="alignleft wp-image-633" src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS2.png?resize=346%2C614&#038;ssl=1" alt="IOS2" width="346" height="614" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS2.png?resize=576%2C1024&amp;ssl=1 576w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS2.png?resize=169%2C300&amp;ssl=1 169w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS2.png?w=640&amp;ssl=1 640w" sizes="(max-width: 346px) 100vw, 346px" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Once again, click on &#8220;Install&#8221;</p>
<p><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS31.png?ssl=1"><img data-attachment-id="635" data-permalink="https://www.tjopsta.net/2013/02/22/how-to-manage-ios-devices-with-windows-intune/ios3-2/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS31.png?fit=640%2C1136&amp;ssl=1" data-orig-size="640,1136" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IOS3" data-image-description="" data-image-caption="" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS31.png?fit=169%2C300&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS31.png?fit=576%2C1024&amp;ssl=1" loading="lazy" class="alignleft wp-image-635" src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS31.png?resize=346%2C614&#038;ssl=1" alt="IOS3" width="346" height="614" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS31.png?resize=576%2C1024&amp;ssl=1 576w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS31.png?resize=169%2C300&amp;ssl=1 169w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS31.png?w=640&amp;ssl=1 640w" sizes="(max-width: 346px) 100vw, 346px" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Accept the Warning and click &#8220;Install&#8221; AGAIN</p>
<p><a href="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS4.png?ssl=1"><img data-attachment-id="636" data-permalink="https://www.tjopsta.net/2013/02/22/how-to-manage-ios-devices-with-windows-intune/ios4/" data-orig-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS4.png?fit=640%2C1136&amp;ssl=1" data-orig-size="640,1136" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IOS4" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS4.png?fit=169%2C300&amp;ssl=1" data-large-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS4.png?fit=576%2C1024&amp;ssl=1" loading="lazy" class="alignleft wp-image-636" src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS4.png?resize=346%2C614&#038;ssl=1" alt="IOS4" width="346" height="614" srcset="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS4.png?resize=576%2C1024&amp;ssl=1 576w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS4.png?resize=169%2C300&amp;ssl=1 169w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/IOS4.png?w=640&amp;ssl=1 640w" sizes="(max-width: 346px) 100vw, 346px" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Which should then be installed.  If you now go to windows Intune and give it a few minutes, you will start seeing devices.</p>
<p><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Capture3.png?ssl=1"><img data-attachment-id="637" data-permalink="https://www.tjopsta.net/2013/02/22/how-to-manage-ios-devices-with-windows-intune/capture3/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Capture3.png?fit=1158%2C826&amp;ssl=1" data-orig-size="1158,826" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Capture3" data-image-description="" data-image-caption="" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Capture3.png?fit=300%2C213&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Capture3.png?fit=1024%2C730&amp;ssl=1" loading="lazy" class="alignleft wp-image-637" src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Capture3.png?resize=738%2C526&#038;ssl=1" alt="Capture3" width="738" height="526" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Capture3.png?resize=1024%2C730&amp;ssl=1 1024w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Capture3.png?resize=300%2C213&amp;ssl=1 300w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2013/02/Capture3.png?w=1158&amp;ssl=1 1158w" sizes="(max-width: 738px) 100vw, 738px" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.tjopsta.net/2013/02/22/how-to-manage-ios-devices-with-windows-intune/">How to manage IOS devices with Windows Intune</a> appeared first on <a rel="nofollow" href="https://www.tjopsta.net">Tjopsta</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.tjopsta.net/2013/02/22/how-to-manage-ios-devices-with-windows-intune/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">623</post-id>	</item>
		<item>
		<title>Office 365 Exchange ActiveSync settings for the Samsung Galaxy S2 GT-I9100</title>
		<link>https://www.tjopsta.net/2012/03/06/office-365-exchange-activesync-settings-for-the-samsung-galaxy-s2-gt-i9100/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=office-365-exchange-activesync-settings-for-the-samsung-galaxy-s2-gt-i9100</link>
					<comments>https://www.tjopsta.net/2012/03/06/office-365-exchange-activesync-settings-for-the-samsung-galaxy-s2-gt-i9100/#comments</comments>
		
		<dc:creator><![CDATA[Tjopsta]]></dc:creator>
		<pubDate>Mon, 05 Mar 2012 22:00:02 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Office365]]></category>
		<category><![CDATA[Exchange ActiveSync]]></category>
		<category><![CDATA[Microsoft]]></category>
		<guid isPermaLink="false">https://www.tjopsta.net/?p=573</guid>

					<description><![CDATA[<p>I've recently signed up for Office 365, and I quickly found out that it's not that easy to get the Galaxy S2 working with it.  Here's the solution.</p>
<p>The post <a rel="nofollow" href="https://www.tjopsta.net/2012/03/06/office-365-exchange-activesync-settings-for-the-samsung-galaxy-s2-gt-i9100/">Office 365 Exchange ActiveSync settings for the Samsung Galaxy S2 GT-I9100</a> appeared first on <a rel="nofollow" href="https://www.tjopsta.net">Tjopsta</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I&#8217;ve recently signed up for Office 365, and I quickly found out that it&#8217;s not that easy to get the Galaxy S2 working with it.</p>
<p>After an extensive search around the web, I learned that setting up office 365 on your phone works if you use the OWA url as the server name for your exchange server.  eg:</p>
<p>I am on the ch1prd0802 client facing server</p>
<p style="text-align: left;"><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2012/03/Office365_OWAURL.png"><img data-attachment-id="574" data-permalink="https://www.tjopsta.net/2012/03/06/office-365-exchange-activesync-settings-for-the-samsung-galaxy-s2-gt-i9100/office365_owaurl/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2012/03/Office365_OWAURL.png?fit=595%2C240&amp;ssl=1" data-orig-size="595,240" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Office365_OWAURL" data-image-description="" data-image-caption="" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2012/03/Office365_OWAURL.png?fit=300%2C121&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2012/03/Office365_OWAURL.png?fit=595%2C240&amp;ssl=1" loading="lazy" class="size-full wp-image-574" title="Office365_OWAURL" src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2012/03/Office365_OWAURL.png?resize=595%2C240" alt="" width="595" height="240" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2012/03/Office365_OWAURL.png?w=595&amp;ssl=1 595w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2012/03/Office365_OWAURL.png?resize=300%2C121&amp;ssl=1 300w" sizes="(max-width: 595px) 100vw, 595px" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>but as per microsoft I should use pod51019.outlook.com</p>
<p style="text-align: left;"><a href="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2012/03/Office365_SMTPSettings.png"><img data-attachment-id="575" data-permalink="https://www.tjopsta.net/2012/03/06/office-365-exchange-activesync-settings-for-the-samsung-galaxy-s2-gt-i9100/office365_smtpsettings/" data-orig-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2012/03/Office365_SMTPSettings.png?fit=570%2C512&amp;ssl=1" data-orig-size="570,512" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Office365_SMTPSettings" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2012/03/Office365_SMTPSettings.png?fit=300%2C269&amp;ssl=1" data-large-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2012/03/Office365_SMTPSettings.png?fit=570%2C512&amp;ssl=1" loading="lazy" class="size-full wp-image-575" title="Office365_SMTPSettings" src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2012/03/Office365_SMTPSettings.png?resize=570%2C512" alt="" width="570" height="512" srcset="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2012/03/Office365_SMTPSettings.png?w=570&amp;ssl=1 570w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2012/03/Office365_SMTPSettings.png?resize=300%2C269&amp;ssl=1 300w" sizes="(max-width: 570px) 100vw, 570px" data-recalc-dims="1" /></a></p>
<p style="text-align: left;">
<p style="text-align: left;">Thus, I just used the OWA server as per the OWA url, and all syncs fine now.</p>
<p style="text-align: left;">
<p><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2012/03/SC20120305-144146.png"><img data-attachment-id="576" data-permalink="https://www.tjopsta.net/2012/03/06/office-365-exchange-activesync-settings-for-the-samsung-galaxy-s2-gt-i9100/sc20120305-144146/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2012/03/SC20120305-144146.png?fit=480%2C800&amp;ssl=1" data-orig-size="480,800" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="SC20120305-144146" data-image-description="" data-image-caption="" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2012/03/SC20120305-144146.png?fit=180%2C300&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2012/03/SC20120305-144146.png?fit=480%2C800&amp;ssl=1" loading="lazy" class=" wp-image-576" title="SC20120305-144146" src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2012/03/SC20120305-144146.png?resize=336%2C560" alt="" width="336" height="560" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2012/03/SC20120305-144146.png?w=480&amp;ssl=1 480w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2012/03/SC20120305-144146.png?resize=180%2C300&amp;ssl=1 180w" sizes="(max-width: 336px) 100vw, 336px" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>Hope this helps for anyone out there also battling with the same thing.</p>
<p>The post <a rel="nofollow" href="https://www.tjopsta.net/2012/03/06/office-365-exchange-activesync-settings-for-the-samsung-galaxy-s2-gt-i9100/">Office 365 Exchange ActiveSync settings for the Samsung Galaxy S2 GT-I9100</a> appeared first on <a rel="nofollow" href="https://www.tjopsta.net">Tjopsta</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.tjopsta.net/2012/03/06/office-365-exchange-activesync-settings-for-the-samsung-galaxy-s2-gt-i9100/feed/</wfw:commentRss>
			<slash:comments>13</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">573</post-id>	</item>
		<item>
		<title>Exchange installed on Win2008 GC DC ADAccess Discovery issues</title>
		<link>https://www.tjopsta.net/2012/01/21/exchange-installed-on-win2008-gc-dc-adaccess-discovery-issues/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=exchange-installed-on-win2008-gc-dc-adaccess-discovery-issues</link>
					<comments>https://www.tjopsta.net/2012/01/21/exchange-installed-on-win2008-gc-dc-adaccess-discovery-issues/#comments</comments>
		
		<dc:creator><![CDATA[Tjopsta]]></dc:creator>
		<pubDate>Sat, 21 Jan 2012 15:55:06 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Off Topic]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Exchange 2007]]></category>
		<guid isPermaLink="false">https://www.tjopsta.net/?p=556</guid>

					<description><![CDATA[<p>I've recently come across a problem where my exchange 2007 environment would stop sending and receiving mail if the main domain controller was offline, after we had some trouble with the PDC.  If you restarted the exchange box, exchange would fall over and nothing would start, leaving you with an event log riddled with exchange startup errors.  This is what I did to resolve my problem.</p>
<p>The post <a rel="nofollow" href="https://www.tjopsta.net/2012/01/21/exchange-installed-on-win2008-gc-dc-adaccess-discovery-issues/">Exchange installed on Win2008 GC DC ADAccess Discovery issues</a> appeared first on <a rel="nofollow" href="https://www.tjopsta.net">Tjopsta</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I&#8217;ve recently come across a problem where my exchange 2007 environment would stop sending and receiving mail if the main domain controller was offline, after we had some trouble with the PDC.  If you restarted the exchange box, exchange would fall over and nothing would start, leaving you with an event log riddled with exchange startup errors.</p>
<p>Exchange is installed on a GC domain controller, and I couldn&#8217;t figure out why exchange couldn&#8217;t see it, as replication etc was fine between domain controllers.</p>
<p>&nbsp;</p>
<p>I started investigating and the MSExchange ADAccess service reported the following:</p>
<blockquote><p>Process MAD.EXE (PID=2916). Exchange Active Directory Provider has discovered the following servers with the following characteristics:<br />
(Server name | Roles | Enabled | Reachability | Synchronized | GC capable | PDC | SACL right | Critical Data | Netlogon | OS Version)<br />
In-site:<br />
hrcptws001.mydomain.local CDG 1 7 7 1 0 1 1 7 1<br />
HRCPTWS002.mydomain.local CDG 1 0 0 1 0 0 0 0 0<br />
HRCPTWS003.mydomain.local CDG 1 7 7 1 0 1 1 7 1<br />
Out-of-site:</p></blockquote>
<p>This was a problem for me, as the exchange was installed on HRCPTWS002, and this told me that it was not reachable, and it wasn&#8217;t going to use it as a config server.</p>
<p>After a good couple of hours of troubleshooting Active Directory, I found that it was a pretty simple</p>
<p><strong>IPv6 was disabled on the network card&#8230;</strong></p>
<p>For some reason, exchange wants ipv6, and for some unknown reason, I disabled it when I setup the server.  The only thing I did was <strong>enable ipv6 on the network card</strong>, restarted the exchange services, and a couple of minutes later my ADAccess service returned a log evevnt that read:</p>
<p>&nbsp;</p>
<blockquote><p>Process MAD.EXE (PID=2916). Exchange Active Directory Provider has discovered the following servers with the following characteristics:<br />
(Server name | Roles | Enabled | Reachability | Synchronized | GC capable | PDC | SACL right | Critical Data | Netlogon | OS Version)<br />
In-site:<br />
hrcptws001.mydomain.local CDG 1 7 7 1 0 1 1 7 1<br />
HRCPTWS002.mydomain.local CDG 1 7 7 1 0 1 1 7 1<br />
HRCPTWS003.mydomain.local CDG 1 7 7 1 0 1 1 7 1<br />
Out-of-site:</p></blockquote>
<p>Happy Exchange Server.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.tjopsta.net/2012/01/21/exchange-installed-on-win2008-gc-dc-adaccess-discovery-issues/">Exchange installed on Win2008 GC DC ADAccess Discovery issues</a> appeared first on <a rel="nofollow" href="https://www.tjopsta.net">Tjopsta</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.tjopsta.net/2012/01/21/exchange-installed-on-win2008-gc-dc-adaccess-discovery-issues/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">556</post-id>	</item>
		<item>
		<title>Pastel MyBusiness Online Review</title>
		<link>https://www.tjopsta.net/2011/08/31/pastel-mybusiness-online-review/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=pastel-mybusiness-online-review</link>
					<comments>https://www.tjopsta.net/2011/08/31/pastel-mybusiness-online-review/#comments</comments>
		
		<dc:creator><![CDATA[Tjopsta]]></dc:creator>
		<pubDate>Wed, 31 Aug 2011 10:07:19 +0000</pubDate>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Accounting]]></category>
		<category><![CDATA[Pastel]]></category>
		<category><![CDATA[PastelAccounting]]></category>
		<category><![CDATA[Review]]></category>
		<guid isPermaLink="false">https://www.tjopsta.net/?p=396</guid>

					<description><![CDATA[<p>I decided to sign up for the pastel mybusiness online package from Softline Pastel to run my company books online.  Here's my take on it.</p>
<p>The post <a rel="nofollow" href="https://www.tjopsta.net/2011/08/31/pastel-mybusiness-online-review/">Pastel MyBusiness Online Review</a> appeared first on <a rel="nofollow" href="https://www.tjopsta.net">Tjopsta</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="text-align: center;"><a href="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PastelMybusinessScreenshot.jpg"><img data-attachment-id="398" data-permalink="https://www.tjopsta.net/2011/08/31/pastel-mybusiness-online-review/pastelmybusinessscreenshot/" data-orig-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PastelMybusinessScreenshot.jpg?fit=989%2C652&amp;ssl=1" data-orig-size="989,652" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PastelMybusinessScreenshot" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PastelMybusinessScreenshot.jpg?fit=300%2C197&amp;ssl=1" data-large-file="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PastelMybusinessScreenshot.jpg?fit=989%2C652&amp;ssl=1" loading="lazy" class="aligncenter size-full wp-image-398" title="PastelMybusinessScreenshot" alt="" src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PastelMybusinessScreenshot.jpg?resize=474%2C313" width="474" height="313" srcset="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PastelMybusinessScreenshot.jpg?w=989&amp;ssl=1 989w, https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PastelMybusinessScreenshot.jpg?resize=300%2C197&amp;ssl=1 300w" sizes="(max-width: 474px) 100vw, 474px" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>When I heard word that <a href="http://www.pastel.co.za/" target="_blank">Softline Pastel</a> launched an online accounting package, I was pretty sceptical.  Reason being, the pastel accounting packages (the lower end packages), just looked ugly.  If you aren&#8217;t a chartered accountant, and work with pastel all day and are used to the interfaces, you would hate it, and I did.</p>
<p>So I had a look at the demo company, and I was pleasantly surprised at how clean and fresh the layout was.  So I signed up for the beta, but I quickly saw that it was still pretty lacking in functionality and it wasn&#8217;t a year after my first look that I actually started using the system in production.</p>
<p>I signed up for a year&#8217;s subscription and at the time that I signed up it cost me roughly R800 for the whole year, which I thought was pretty cheap seeing that it is cheaper than buying Pastel Xpress off the shelf and paying the yearly support fees.</p>
<p>Pre-Mybusiness Online, I was using Pastel Xpress, and migrating from the offline to online version (If you want to compare it like that), was a matter of exporting my customers, suppliers and products, and importing it on the online platform.  I do believe if softline wants to push this product, they should write a tool or two to make migrations a little easier.</p>
<p>Navigation is pretty easy to work around, and once you know what all the tabs in their navigation do, it is pretty easy to get from function to function.</p>
<div id="attachment_403" style="width: 551px" class="wp-caption aligncenter"><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBNavigation.jpg"><img aria-describedby="caption-attachment-403" data-attachment-id="403" data-permalink="https://www.tjopsta.net/2011/08/31/pastel-mybusiness-online-review/pmbnavigation/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBNavigation.jpg?fit=1002%2C418&amp;ssl=1" data-orig-size="1002,418" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PMBNavigation" data-image-description="" data-image-caption="" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBNavigation.jpg?fit=300%2C125&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBNavigation.jpg?fit=1002%2C418&amp;ssl=1" loading="lazy" class="size-full wp-image-403 " title="PMBNavigation" alt="" src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBNavigation.jpg?resize=541%2C226" width="541" height="226" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBNavigation.jpg?w=1002&amp;ssl=1 1002w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBNavigation.jpg?resize=300%2C125&amp;ssl=1 300w" sizes="(max-width: 541px) 100vw, 541px" data-recalc-dims="1" /></a><p id="caption-attachment-403" class="wp-caption-text">Pastel MyBusiness Online Navigation</p></div>
<p>The rest is pretty straight forward, it&#8217;s an accounting application, and it does what you would expect from an accounting application.</p>
<p>Let&#8217;s run through some of the features I value most:</p>
<h3><strong><span style="text-decoration: underline;">Recurring Invoices</span></strong></h3>
<p>Let&#8217;s get this straight.  I absolutely hate&#8230; hate doing books.  I want to spend my time making money, not reporting it.  The recurring invoices feature I think is the feature I value most in this application.</p>
<div id="attachment_405" style="width: 581px" class="wp-caption aligncenter"><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBRecurringInvoices.jpg"><img aria-describedby="caption-attachment-405" data-attachment-id="405" data-permalink="https://www.tjopsta.net/2011/08/31/pastel-mybusiness-online-review/pmbrecurringinvoices/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBRecurringInvoices.jpg?fit=960%2C562&amp;ssl=1" data-orig-size="960,562" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PMBRecurringInvoices" data-image-description="" data-image-caption="&lt;p&gt;Pastel MyBusiness Online Recurring Invoices&lt;/p&gt;
" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBRecurringInvoices.jpg?fit=300%2C175&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBRecurringInvoices.jpg?fit=960%2C562&amp;ssl=1" loading="lazy" class="size-full wp-image-405   " title="PMBRecurringInvoices" alt="" src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBRecurringInvoices.jpg?resize=571%2C334" width="571" height="334" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBRecurringInvoices.jpg?w=960&amp;ssl=1 960w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBRecurringInvoices.jpg?resize=300%2C175&amp;ssl=1 300w" sizes="(max-width: 571px) 100vw, 571px" data-recalc-dims="1" /></a><p id="caption-attachment-405" class="wp-caption-text">Pastel MyBusiness Online Recurring Invoices</p></div>
<p>Setting up a recurring invoice is pretty easy, click on create new recurring invoice, specify the customer, setup the schedule when the invoice needs to run, and set your line items.  You can also set if the invoice needs to be created automatically, whereupon the invoice will be automatically created, and emailed automatically to your client should you select the option, or you can set it up to create as a draft, where you can then first &#8220;review&#8221; the created invoice, before it get&#8217;s actioned against your client&#8217;s account.</p>
<h5>Downsides:</h5>
<p>This is a pretty powerful feature, and I don&#8217;t think it&#8217;s full potential is quite used here.</p>
<ul>
<li><span class="Apple-style-span" style="line-height: 18px;">Only one recipient and one cc recipient can be used to email the invoice</span></li>
</ul>
<div><span class="Apple-style-span" style="line-height: 18px;">This quite a big downside for me.  Many of my customers have more than one person that needs to receive invoices from our company, and there&#8217;s no feature to be able to add multiple recipients to the generated invoices.  If I was able to add multiple contacts to my customers, and select to which contact a recurring invoice should be sent to, this will make my life much easier.  Currently I have to CC myself on these invoices, and forward it to the multiple recipients at my client.  A bit frustrating.<br />
</span></div>
<ul>
<li><span class="Apple-style-span" style="line-height: 18px;">It&#8217;s limited to Invoices, no recurring Quotes or Orders.</span></li>
</ul>
<div><span class="Apple-style-span" style="line-height: 18px;">Some of my clients require us to first create an order, whereby they return to us an order number, and only once their order number reflects on our invoice, they accept our invoice.  This is pretty much a manual process, and it&#8217;s left to me to create these invoices as drafts, then create a new quote, then get the order number, enter the details and then generate the invoice.  If I was able to create recurring quotes, I could automatically send that to the client, and once receiving the order number, I could go create an invoice.  another irritation really.</span></div>
<h3><span style="text-decoration: underline;"><strong>Import Bank Statements</strong></span><span class="Apple-style-span" style="font-size: 13px; line-height: 18px;"> </span></h3>
<p>I give three cheers to softline for coming up with this.  None of their offline products come close to the way they handle bank statements in the online package, which makes this brilliant.</p>
<p>To import bank statements, it&#8217;s pretty much a case of exporting from your online banking, and uploading the file.  Once you click on import, a grid list box is shown with all the transactions in the file.</p>
<p>The methodology they used here is great, because no matter how many times I have tried to import duplicates, it simply doesn&#8217;t import transactions which are already in the system.  Another big plus, is that you can map transactions.  For eg:  For each one of my clients, I give a unique code they need to use when they pay us.  Customer ABC shoes will for eg have a reference of &#8220;ABC001&#8221; which I provide to them.  so every time that ABC shows pays us, the reference on our bank statements read &#8220;EFT PAYMENT ABC001&#8221;.  This I map on the import bank statements screen once to which customer it needs to map, and once it is done, every time I import a bank statement, it compares my mappings, and shows the transaction line in grey, which means its ready to reconcile.</p>
<div id="attachment_406" style="width: 575px" class="wp-caption aligncenter"><a href="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBStatementMapping.jpg"><img aria-describedby="caption-attachment-406" data-attachment-id="406" data-permalink="https://www.tjopsta.net/2011/08/31/pastel-mybusiness-online-review/pmbstatementmapping/" data-orig-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBStatementMapping.jpg?fit=981%2C525&amp;ssl=1" data-orig-size="981,525" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PMBStatementMapping" data-image-description="" data-image-caption="" data-medium-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBStatementMapping.jpg?fit=300%2C160&amp;ssl=1" data-large-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBStatementMapping.jpg?fit=981%2C525&amp;ssl=1" loading="lazy" class="size-full wp-image-406  " title="PMBStatementMapping" alt="" src="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBStatementMapping.jpg?resize=565%2C302" width="565" height="302" srcset="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBStatementMapping.jpg?w=981&amp;ssl=1 981w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBStatementMapping.jpg?resize=300%2C160&amp;ssl=1 300w" sizes="(max-width: 565px) 100vw, 565px" data-recalc-dims="1" /></a><p id="caption-attachment-406" class="wp-caption-text">Pastel MyBusiness Online Bank Statement Mappings</p></div>
<p>After the first 3 months of using the system, I have mapped most of my clients, so reconciling bank statements is now a case of just checking unmapped transactions, and the whole bank recon process takes me less than 15 minutes now.</p>
<p>All we really need now, is automatic bank statement imports&#8230; someone at pastel setup a direct line to the banks already?</p>
<h5>Downsides:</h5>
<p>In order for the mappings to work correctly, your customers need to use the same payment reference every time they pay, which is how it should be.  Normally you need to provide this &#8220;Account Number&#8221; to your customer, and there is currently no way that the system gives you something like a unique reference for each customer.  The way they handle customers now is by description only (for eg, ABC Shoes), which I prefer, but at least give me some sort of unique database ID, or incremental number for each customer, something like a customer account number which is automated by the system.</p>
<p>I overcame this limitation by creating a custom customer field name called &#8220;Customer Number&#8221; and when I create a new customer, I populate the custom field with an incremental number that I generate manually.  This number then shows on the customer&#8217;s invoices and statements which they use as their EFT payment reference. Not ideal.. but it does the job.</p>
<p><span style="text-decoration: underline;"><strong><span class="Apple-style-span" style="font-size: 20px; line-height: normal;">Customer Statement Runs</span></strong></span></p>
<p>&nbsp;</p>
<p>Also a great feature.  Select from which to which customer you want to run statements for, click submit, and it emails your customers&#8217; statements to them.</p>
<div id="attachment_411" style="width: 540px" class="wp-caption aligncenter"><a href="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBStatementRuns.jpg"><img aria-describedby="caption-attachment-411" data-attachment-id="411" data-permalink="https://www.tjopsta.net/2011/08/31/pastel-mybusiness-online-review/pmbstatementruns/" data-orig-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBStatementRuns.jpg?fit=982%2C879&amp;ssl=1" data-orig-size="982,879" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PMBStatementRuns" data-image-description="" data-image-caption="" data-medium-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBStatementRuns.jpg?fit=300%2C268&amp;ssl=1" data-large-file="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBStatementRuns.jpg?fit=982%2C879&amp;ssl=1" loading="lazy" class="size-full wp-image-411 " title="PMBStatementRuns" alt="" src="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBStatementRuns.jpg?resize=530%2C474" width="530" height="474" srcset="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBStatementRuns.jpg?w=982&amp;ssl=1 982w, https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBStatementRuns.jpg?resize=300%2C268&amp;ssl=1 300w" sizes="(max-width: 530px) 100vw, 530px" data-recalc-dims="1" /></a><p id="caption-attachment-411" class="wp-caption-text">Pastel MyBusiness Customer Statement Runs</p></div>
<h5><strong>Downsides</strong></h5>
<p>It would be nice if you could schedule this monthly / weekly to run automatically.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><span class="Apple-style-span" style="font-size: 20px; line-height: normal;"><span style="text-decoration: underline;"><strong>Report Designer</strong></span></span></p>
<p>This is the first time that I have seen a rich text / html based report designer for any pastel product.  You simply download the report designer application, and once you login, you can design report templates to your heart&#8217;s content.</p>
<p>Once you have created your template, you simply save it, then logon to the web system, and select the template you want to use for that specific document type.  Hands down a great feature.</p>
<div id="attachment_407" style="width: 586px" class="wp-caption aligncenter"><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBReportDesigner.jpg"><img aria-describedby="caption-attachment-407" data-attachment-id="407" data-permalink="https://www.tjopsta.net/2011/08/31/pastel-mybusiness-online-review/pmbreportdesigner/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBReportDesigner.jpg?fit=1211%2C773&amp;ssl=1" data-orig-size="1211,773" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PMBReportDesigner" data-image-description="" data-image-caption="&lt;p&gt;Pastel MyBusiness Online Report Designer&lt;/p&gt;
" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBReportDesigner.jpg?fit=300%2C191&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBReportDesigner.jpg?fit=1024%2C653&amp;ssl=1" loading="lazy" class="size-full wp-image-407    " title="PMBReportDesigner" alt="" src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBReportDesigner.jpg?resize=576%2C367" width="576" height="367" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBReportDesigner.jpg?w=1211&amp;ssl=1 1211w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBReportDesigner.jpg?resize=300%2C191&amp;ssl=1 300w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/08/PMBReportDesigner.jpg?resize=1024%2C653&amp;ssl=1 1024w" sizes="(max-width: 576px) 100vw, 576px" data-recalc-dims="1" /></a><p id="caption-attachment-407" class="wp-caption-text">Pastel MyBusiness Online Report Designer</p></div>
<h5>Downsides:</h5>
<p>The reports are all HTML based.  Which is good.  For our invoice templates, we did some hefty designing in order to make it look great, we in some parts have little lines overlapping (sometimes you do have to let certain elements overlap, in order for your design to work) which looks great on our PDF exports, but viewing a report in HTML online simply just looks horrid, thus we always export to PDF.</p>
<p>&nbsp;</p>
<h3><span style="text-decoration: underline;"><strong>Overall System Shortcomings</strong></span><strong>:</strong></h3>
<p>There are a couple of things that this system could really do with:</p>
<ul>
<li><span class="Apple-style-span" style="line-height: 18px;">No API</span></li>
</ul>
<div><span class="Apple-style-span" style="line-height: 18px;">You </span>are stranded<span class="Apple-style-span" style="line-height: 18px;"> with using the web interface.  There&#8217;s no way of integrating existing systems with this great online system.  I want </span>to be<span class="Apple-style-span" style="line-height: 18px;"> able to use my current systems I have in place to </span>programatically<span class="Apple-style-span" style="line-height: 18px;"> create a new customer or create a new invoice and send it off to my client when </span>for<span class="Apple-style-span" style="line-height: 18px;"> eg a customer buy&#8217;s a product from our website.  Currently there&#8217;s no way of doing this.  You need to work around this and manually input what your customers have done on the web system.  In </span>this day and age<span class="Apple-style-span" style="line-height: 18px;">, I think it&#8217;s critical for a system like this to have some way in order to integrate with other systems.</span></div>
<div><span class="Apple-style-span" style="line-height: 18px;"><br />
</span></div>
<ul>
<li style="line-height: 18px;"><span class="Apple-style-span" style="line-height: normal;">Limited Email Capabilities</span></li>
</ul>
<p><span class="Apple-style-span" style="line-height: 18px;">The functionality to use email for documentation etc is there, but it&#8217;s very limited.  I would like to be able to go into my customer&#8217;s account, and setup extra contacts and specify if I want documents to be sent to this contact automatically when I create a document for the customer, for eg: also send the invoice I just created to this contact, include this contact in the list of recipients for statements, etc.</span></p>
<h3><strong><span style="text-decoration: underline;">Conclusion</span></strong></h3>
<p>Pastel&#8217;s attempt at an online accounting system is so far so good.  It&#8217;s cheap, and as long as they actively keep on developing on the platform, and release updates often, I foresee this as a winner.  It does have it&#8217;s shortcomings, but pastel does have a suggestion box (suggestion@pastelmybusiness.co.za) and they are actively monitoring it. I think the idea of an API will be a deal breaker or maker, as these days you do need some kind of integration mechanism for any system out there.</p>
<p>I would recommend this product to anyone that has just started up a company, or someone that wants the online capabilities of an accounting system.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.tjopsta.net/2011/08/31/pastel-mybusiness-online-review/">Pastel MyBusiness Online Review</a> appeared first on <a rel="nofollow" href="https://www.tjopsta.net">Tjopsta</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.tjopsta.net/2011/08/31/pastel-mybusiness-online-review/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">396</post-id>	</item>
		<item>
		<title>How to: Add iSCSI SAN storage to VMWare ESXI</title>
		<link>https://www.tjopsta.net/2011/07/21/how-to-add-iscsi-san-storage-to-vmware-esxi-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-add-iscsi-san-storage-to-vmware-esxi-2</link>
					<comments>https://www.tjopsta.net/2011/07/21/how-to-add-iscsi-san-storage-to-vmware-esxi-2/#comments</comments>
		
		<dc:creator><![CDATA[Tjopsta]]></dc:creator>
		<pubDate>Thu, 21 Jul 2011 19:32:34 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[iSCSI]]></category>
		<category><![CDATA[LUN]]></category>
		<category><![CDATA[Promise SAN]]></category>
		<category><![CDATA[SAN]]></category>
		<category><![CDATA[Storage Area Network]]></category>
		<guid isPermaLink="false">https://www.tjopsta.net/index.php/2011/07/21/how-to-add-iscsi-san-storage-to-vmware-esxi-2/</guid>

					<description><![CDATA[<p>A quick tutorial on how to use the iSCSI initiator in ESXI server to add a LUN from a SAN to ESXI's storage</p>
<p>The post <a rel="nofollow" href="https://www.tjopsta.net/2011/07/21/how-to-add-iscsi-san-storage-to-vmware-esxi-2/">How to: Add iSCSI SAN storage to VMWare ESXI</a> appeared first on <a rel="nofollow" href="https://www.tjopsta.net">Tjopsta</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In this Tutorial I am gong to show you how to add a <a href="http://en.wikipedia.org/wiki/Logical_Unit_Number" target="_blank"><span style="color: blue; text-decoration: underline;">LUN</span></a> on a <a href="http://en.wikipedia.org/wiki/Storage_area_network" target="_blank"><span style="color: blue; text-decoration: underline;">SAN</span></a> through the <a href="http://en.wikipedia.org/wiki/ISCSI" target="_blank"><span style="color: blue; text-decoration: underline;">iSCSI </span></a>initiator on <a href="http://en.wikipedia.org/wiki/VMware_ESX" target="_blank"><span style="color: blue; text-decoration: underline;">VMWARE ESXI</span></a> Server.</p>
<p>The SAN I had available to do this on, is the <a href="http://www.promise.com/storage/raid_series.aspx?region=en-global&amp;m=18&amp;rsn1=2&amp;rsn3=20" target="_blank"><span style="color: blue; text-decoration: underline;">Promise VessRAID 1830i</span></a></p>
<p>NOTE: Your interface to your SAN might look different, but the terminology stays the same.</p>
<p><span style="font-size: 16pt;"><strong>  1. Creating the storage LUN on the SAN</strong></span>�</p>
<p>Login to your SAN interface, and create a new logical drive / LUN (whatever your SAN calls it)</p>
<p><a href="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/26.png"><img src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/072111_1928_HowtoAddiSC11.png" alt="" border="0" data-recalc-dims="1" /></a><span style="font-size: 12pt;"><br />
</span></p>
<p>For the purpose of the tutorial, I created a LUN of 500GB in space, in RAID 5 configuration.</p>
<p><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/24.png"><img src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/072111_1928_HowtoAddiSC21.png" alt="" border="0" data-recalc-dims="1" /></a><span style="font-size: 12pt;"><br />
</span></p>
<p>&nbsp;</p>
<p>My SAN asks if I want to edit lun mapping (Masking), once a LUN is configured. I always mask luns, as I want devices to only see the LUNs they are entitled to. I clicked &#8220;OK&#8221;</p>
<p>&nbsp;</p>
<p><img src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/072111_1928_HowtoAddiSC3.png" alt="" data-recalc-dims="1" /><span style="font-size: 12pt;"><br />
</span></p>
<p>&nbsp;</p>
<p>Next I selected my iSCSI initiator (Shown later in post), and gave the LUN I just created an ID of 0, as this is the first LUN that I am assigning to my ESXI server.</p>
<p><img src="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/072111_1928_HowtoAddiSC4.png" alt="" data-recalc-dims="1" /><span style="font-size: 12pt;"><br />
</span></p>
<p>And once I submitted my changes, my SAN is all setup and ready to go.</p>
<p><img src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/072111_1928_HowtoAddiSC5.png" alt="" data-recalc-dims="1" /><span style="font-size: 12pt;"><br />
</span></p>
<p>&nbsp;</p>
<p><span style="font-size: 16pt;"><strong>2. Adding the LUN to ESXI<br />
</strong></span></p>
<p>&nbsp;</p>
<p>Now, open your vSphere client, and login to your ESXI host. On the main page, click on your &#8220;Congifuration&#8221; tab, then click &#8220;Storage Adapters&#8221;</p>
<p>&nbsp;</p>
<p>Your first item will be the iScsi initiator. Select it, and click on &#8220;Properties&#8221; in the below section</p>
<p>&nbsp;</p>
<p><img src="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/072111_1928_HowtoAddiSC6.png" alt="" data-recalc-dims="1" /></p>
<p>You will first need to enable your iScsi initiator. To do this, click &#8220;Configure&#8221; in the properties dialog.</p>
<p>&nbsp;</p>
<p><img src="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/072111_1928_HowtoAddiSC7.png" alt="" data-recalc-dims="1" /></p>
<p>&nbsp;</p>
<p>Check the &#8220;Enable&#8221; tickbox, and in the iSCSI Name field, you will see the name of the iSCSI initiator (Which you will use on your san for LUN masking) and click &#8220;Ok&#8221;</p>
<p>&nbsp;</p>
<p><img src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/072111_1928_HowtoAddiSC8.png" alt="" data-recalc-dims="1" /><span style="font-size: 12pt;"><br />
</span></p>
<p>&nbsp;</p>
<p>On the next Tab (Dynamic Discovery), click on &#8220;Add&#8221; and enter the IP address of one of your iSCSI ports of your san, mine is 10.1.1.27</p>
<p><img src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/072111_1928_HowtoAddiSC9.png" alt="" data-recalc-dims="1" /></p>
<p>Click &#8220;Ok&#8221; and then &#8220;Close&#8221; the properties window.</p>
<p>Once this is done, vSphere will prompt you to rescan the iSCSI host for any new luns available, click &#8220;Yes&#8221;</p>
<p><img src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/072111_1928_HowtoAddiSC10.png" alt="" data-recalc-dims="1" /></p>
<p>Once the adapter is rescanned (Takes a couple of seconds), your LUN will be shown in the list view below.</p>
<p>The reason I am only seeing the 500GB LUN I Created, is because I use LUN Masking on my SAN, thus making only the created LUN available to the ESXI iSCSI initiator.</p>
<p><img src="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/072111_1928_HowtoAddiSC111.png" alt="" data-recalc-dims="1" /></p>
<p>Now, your SAN LUN is Added to ESXI. Only config left is to tell ESXI what to use the new storage for.</p>
<p>Click on &#8220;Storage&#8221; on the left menu in the &#8220;Hardware&#8221; section, where you will see it displays my current local datastore which is only the local harddrives. Click on &#8220;Add Storage&#8221;</p>
<p><img src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/072111_1928_HowtoAddiSC12.png" alt="" data-recalc-dims="1" /></p>
<p>In the Add Storage wizard first page, select &#8220;Disk/LUN&#8221; and click Next</p>
<p><img src="https://i2.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/072111_1928_HowtoAddiSC13.png" alt="" data-recalc-dims="1" /></p>
<p>Your Added LUN will be in the list, select it, and click &#8220;Next&#8221;</p>
<p><img src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/072111_1928_HowtoAddiSC14.png" alt="" data-recalc-dims="1" /></p>
<p>Next will be a summary of your disk layout, click next</p>
<p>(NOTE: If you get an error when this page loads, it will probably be because there is a SAN operation running on the LUN like Initialization, Syncing, capacity expansion, etc – all in all, if you get an error here, your LUN isn&#8217;t ready on the san)</p>
<p><img src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/072111_1928_HowtoAddiSC15.png" alt="" data-recalc-dims="1" /></p>
<p>Next enter a name for the LUN (Just so you can identify it)</p>
<p><img src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/072111_1928_HowtoAddiSC16.png" alt="" data-recalc-dims="1" /></p>
<p>On the next page you will see the file formatting config, I left the defaults, and clicked next</p>
<p><img src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/072111_1928_HowtoAddiSC17.png" alt="" data-recalc-dims="1" /></p>
<p>You will get a final summary page to confirm everything, click &#8220;Finish&#8221;</p>
<p><img src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/072111_1928_HowtoAddiSC18.png" alt="" data-recalc-dims="1" /></p>
<p>Once you have successfully finished the wizard, you will see your LUN storage ready in the storage list.</p>
<p><img src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/072111_1928_HowtoAddiSC19.png" alt="" data-recalc-dims="1" /></p>
<p>Now when you create a new VM, you will see the new storage on your san in the Datastore step of the create VM Wizard.</p>
<p><img src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/072111_1928_HowtoAddiSC20.png" alt="" data-recalc-dims="1" /></p>
<p>And of course, when adding a new hard drive on a VM.</p>
<p><img src="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/07/072111_1928_HowtoAddiSC211.png" alt="" data-recalc-dims="1" /></p>
<p>&nbsp;</p>
<p>Final Word:</p>
<p>It is really really easy to add a SAN as a storage location for your VMs in ESXI, the Promise VessRAID range is an affordable SAN solution for small businesses and I would recommend this to any company that would like to enter the SAN arena for little cost. The Promise VessRAID 1830i will cost you around $250 with disks unpopulated.</p>
<p>The post <a rel="nofollow" href="https://www.tjopsta.net/2011/07/21/how-to-add-iscsi-san-storage-to-vmware-esxi-2/">How to: Add iSCSI SAN storage to VMWare ESXI</a> appeared first on <a rel="nofollow" href="https://www.tjopsta.net">Tjopsta</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.tjopsta.net/2011/07/21/how-to-add-iscsi-san-storage-to-vmware-esxi-2/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">367</post-id>	</item>
		<item>
		<title>Pimp my server room</title>
		<link>https://www.tjopsta.net/2011/04/06/pimp-my-server-room/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=pimp-my-server-room</link>
					<comments>https://www.tjopsta.net/2011/04/06/pimp-my-server-room/#comments</comments>
		
		<dc:creator><![CDATA[Tjopsta]]></dc:creator>
		<pubDate>Wed, 06 Apr 2011 19:53:47 +0000</pubDate>
				<category><![CDATA[Off Topic]]></category>
		<guid isPermaLink="false">https://www.tjopsta.net/?p=333</guid>

					<description><![CDATA[<p>So my server room is kinda finished (Until my new Dell kit for our VMWare cluster arrives), with pimping and all... What do you think?</p>
<p>The post <a rel="nofollow" href="https://www.tjopsta.net/2011/04/06/pimp-my-server-room/">Pimp my server room</a> appeared first on <a rel="nofollow" href="https://www.tjopsta.net">Tjopsta</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>So my server room is kinda finished (Until my new Dell kit for our VMWare cluster arrives), with pimping and all&#8230; What do you think?</p>
<p>&nbsp;</p>
<p><a href="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/04/IMG_2994.jpg"><img data-attachment-id="335" data-permalink="https://www.tjopsta.net/2011/04/06/pimp-my-server-room/img_2994/" data-orig-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/04/IMG_2994.jpg?fit=3072%2C2304&amp;ssl=1" data-orig-size="3072,2304" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_2994" data-image-description="" data-image-caption="" data-medium-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/04/IMG_2994.jpg?fit=300%2C225&amp;ssl=1" data-large-file="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/04/IMG_2994.jpg?fit=1024%2C768&amp;ssl=1" loading="lazy" class="alignleft size-large wp-image-335" title="IMG_2994" alt="" src="https://i0.wp.com/www.tjopsta.net/wp-content/uploads/2011/04/IMG_2994-1024x768.jpg?resize=614%2C460" width="614" height="460" srcset="https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/04/IMG_2994.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/04/IMG_2994.jpg?resize=300%2C225&amp;ssl=1 300w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/04/IMG_2994.jpg?w=2000&amp;ssl=1 2000w, https://i1.wp.com/www.tjopsta.net/wp-content/uploads/2011/04/IMG_2994.jpg?w=3000&amp;ssl=1 3000w" sizes="(max-width: 614px) 100vw, 614px" data-recalc-dims="1" /></a></p>
<p>The post <a rel="nofollow" href="https://www.tjopsta.net/2011/04/06/pimp-my-server-room/">Pimp my server room</a> appeared first on <a rel="nofollow" href="https://www.tjopsta.net">Tjopsta</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.tjopsta.net/2011/04/06/pimp-my-server-room/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">333</post-id>	</item>
	                                          </channel>
</rss>
