<?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>Archive</title>
	<atom:link href="https://regroove.ca/archive/feed/" rel="self" type="application/rss+xml" />
	<link>https://regroove.ca/archive</link>
	<description></description>
	<lastBuildDate>Mon, 30 Dec 2019 18:52:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.5.3</generator>
<site xmlns="com-wordpress:feed-additions:1">171047422</site>	<item>
		<title>How to Pass Parameters into a PowerApp</title>
		<link>https://regroove.ca/archive/2017/10/17/how-to-pass-parameters-into-a-powerapp-2/</link>
					<comments>https://regroove.ca/archive/2017/10/17/how-to-pass-parameters-into-a-powerapp-2/#comments</comments>
		
		<dc:creator><![CDATA[Colin Phillips (Regroove Alumni)]]></dc:creator>
		<pubDate>Tue, 17 Oct 2017 00:28:02 +0000</pubDate>
				<category><![CDATA[PowerApps]]></category>
		<guid isPermaLink="false">https://itgroove.net/mmman/?p=1790</guid>

					<description><![CDATA[<p>I was recently trying to replicate some functionality I&#8217;m used to with InfoPath, but this time using a PowerApp. I was looking for a way to get parameters from outside into a PowerApp, and surprisingly this is really not well documented, but actually really quite easy to do. I&#8217;ll walk you through the process below. &#8230; <a href="https://regroove.ca/archive/2017/10/17/how-to-pass-parameters-into-a-powerapp-2/"></a></p>
<p>The post <a rel="nofollow" href="https://regroove.ca/archive/2017/10/17/how-to-pass-parameters-into-a-powerapp-2/">How to Pass Parameters into a PowerApp</a> appeared first on <a rel="nofollow" href="https://regroove.ca/archive">Archive</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-top: 0px; margin-bottom: 0px;" class="sharethis-inline-share-buttons" ></div><p>I was recently trying to replicate some functionality I&#8217;m used to with InfoPath, but this time using a PowerApp. I was looking for a way to get parameters from outside into a PowerApp, and surprisingly this is really not well documented, but actually really quite easy to do. I&#8217;ll walk you through the process below.</p>
<p>Note, this isn&#8217;t about passing parameters between screens in a PowerApp, that&#8217;s well covered in several blog posts, and forums.</p>
<p>First off, start by creating an app. Below I&#8217;ve created my &#8220;ColinTestApp&#8221; App. Next, go into the &#8220;Information&#8221; pane on the far right (highlighted by the arrow).</p>
<p><img src="https://i2.wp.com/regroove.ca/archive/wp-content/uploads/sites/6/2017/10/101717_0023_HowtoPassPa1.png?ssl=1" alt="" data-recalc-dims="1" /></p>
<p>In there you&#8217;ll find the &#8220;Web link&#8221;. This is what you&#8217;ll use to pass variables into your app via a web URL. Note the App GUID is in in the URL – this is the unique identifier for your app.</p>
<p><img src="https://i1.wp.com/regroove.ca/archive/wp-content/uploads/sites/6/2017/10/101717_0023_HowtoPassPa2.png?ssl=1" alt="" data-recalc-dims="1" /></p>
<p>Your Web link will look like something like this below (where the GUID of your APP replaces APP GUID).</p>
<p>https://web.powerapps.com/apps/[APP GUID]</p>
<p>To pass parameters to the App, you simply add URL parameters like this below.</p>
<p>https://web.powerapps.com/apps/[APP GUID]<strong>?ID=123&amp;Ball=round&amp;River=water</strong></p>
<p>In this case, we&#8217;re passing 3 named parameters, &#8220;ID&#8221;, &#8220;Ball&#8221;, and &#8220;River&#8221; (remember, when passing URL&#8217;s over HTTP, you need to start with a question mark (?), followed by ampersands (&amp;) for all additional parameters in a &#8220;name=value&#8221; pairing).</p>
<p>To use these in your PowerApp, you simply refer to them by their parameter name using the &#8220;Param&#8221; method, like below.</p>
<p>Param(&#8220;[PARAM NAME]&#8221;)</p>
<p>For example, in my case, I used it as a start variable on my initial screen. This allowed me to feed to the PowerApp a dynamic value (the ID) of the item I wanted to load at start up. In this scenario, the data was being fed from a SharePoint list, and at load time I was able to load the specific SharePoint list item I wanted into my start screen.</p>
<p>First(Filter(MySharePointListDataSource,ID=Param(&#8220;ID&#8221;)))</p>
<p>The above formula basically filters the ID parameter to the &#8220;ID&#8221; of the data source (a SharePoint list), and then from that set, I select the &#8220;first&#8221;, just for good measure (even though there should never be more than one matching ID for any given SharePoint list item).</p>
<p><img src="https://i1.wp.com/regroove.ca/archive/wp-content/uploads/sites/6/2017/10/101717_0023_HowtoPassPa3.png?ssl=1" alt="" data-recalc-dims="1" /></p>
<p>In the above screen, just make sure you have the &#8220;DetailForm1&#8221; selected (which will allow you to set the DATA pane, and set your datasource for the form), and then be sure that 1 &amp; 2 are the same value (i.e. if your data source (SharePoint list) is &#8220;Products&#8221;, be sure that Products is in both #1 and #2 above.</p>
<p>Note, I&#8217;d previously setup a DataSource that draws from my SharePoint List</p>
<p><img src="https://i0.wp.com/regroove.ca/archive/wp-content/uploads/sites/6/2017/10/101717_0023_HowtoPassPa4.png?ssl=1" alt="" data-recalc-dims="1" /></p>
<p>So in my scenario &#8220;TestList&#8221; would be in both #1 and #2 above.</p>
<p>Hopefully this helps some of you out in PowerApp land!</p>
<p>The post <a rel="nofollow" href="https://regroove.ca/archive/2017/10/17/how-to-pass-parameters-into-a-powerapp-2/">How to Pass Parameters into a PowerApp</a> appeared first on <a rel="nofollow" href="https://regroove.ca/archive">Archive</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://regroove.ca/archive/2017/10/17/how-to-pass-parameters-into-a-powerapp-2/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1797</post-id>	</item>
		<item>
		<title>Using JSLink to Build a Project Registry</title>
		<link>https://regroove.ca/archive/2017/08/09/using-jslink-build-project-registry/</link>
		
		<dc:creator><![CDATA[Matt Longpre]]></dc:creator>
		<pubDate>Wed, 09 Aug 2017 21:37:43 +0000</pubDate>
				<category><![CDATA[JavaScript]]></category>
		<guid isPermaLink="false">https://itgroove.net/bangimportant/?p=157</guid>

					<description><![CDATA[<p>What We Did I was recently involved in building a Project Registry solution to help a local registered charity with managing their multiple cross-department projects. The Craigdarroch Castle Historical Museum Society’s Executive Director, John Hughes, asked itgroove to help him prepare the organization to manage their project portfolio, which was growing significantly over the next &#8230; <a href="https://regroove.ca/archive/2017/08/09/using-jslink-build-project-registry/"></a></p>
<p>The post <a rel="nofollow" href="https://regroove.ca/archive/2017/08/09/using-jslink-build-project-registry/">Using JSLink to Build a Project Registry</a> appeared first on <a rel="nofollow" href="https://regroove.ca/archive">Archive</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-top: 0px; margin-bottom: 0px;" class="sharethis-inline-share-buttons" ></div><p><strong>What We Did</strong><br />
I was recently involved in building a Project Registry solution to help a local registered charity with managing their multiple cross-department projects. The Craigdarroch Castle Historical Museum Society’s Executive Director, John Hughes, asked itgroove to help him prepare the organization to manage their project portfolio, which was growing significantly over the next five years. The end-goal was to find a way to bring a big picture overview to the Castle’s collaborative project management and communicate decisions to the team about where key project information (Files, Tasks, Notes, Conversations, etc.) would be stored.</p>
<p><strong>How We Solved It</strong><br />
We built the Castle a low-code solution using a single SharePoint list with HTML, CSS, and JavaScript for styling the look and feel. List view web parts using JSLink allow our design team to change how the rows, columns, and fields are rendered. It also allows icons to be included in the dashboard to visually signify information like the colour-coded Key Performance Indicators, and the logo of the technology tool used to store various types of project information. The simplicity of the solution ensures the content in the Registry can be entered and modified by an end-user with a basic understanding of lists as it only requires them to paste URLs into fields and select text choices from a drop-down menu.</p>
<p><strong>Learn More…</strong></p>
<ul>
<li>Read the Craigdarroch Castle&#8217;s Client Success Story: “<a href="https://itgroove.net/integrating-business-tools-to-bring-the-big-picture-to-collaborative-project-planning/" target="_blank" rel="noopener noreferrer">Integrating Business Tools to Bring the Big Picture to Collaborative Project Planning</a>”.</li>
<li>Watch a Walk-through Video of the <a href="https://itgroove.net/gallery/item/project-registry/" target="_blank" rel="noopener noreferrer">Project Registry in the itgroove Gallery</a>.</li>
<li>Check out the itgroove <a href="https://itgroove.net/whats-new-itgroove-april-2017/" target="_blank" rel="noopener noreferrer">April 2017 video Newsletter</a> to see Screenshots from the Project.</li>
</ul>
<p>The post <a rel="nofollow" href="https://regroove.ca/archive/2017/08/09/using-jslink-build-project-registry/">Using JSLink to Build a Project Registry</a> appeared first on <a rel="nofollow" href="https://regroove.ca/archive">Archive</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">157</post-id>	</item>
		<item>
		<title>Microsoft Stream &#8211; The Video Evolution</title>
		<link>https://regroove.ca/archive/2017/08/09/microsoft-stream-video-evolution/</link>
		
		<dc:creator><![CDATA[Colin Phillips (Regroove Alumni)]]></dc:creator>
		<pubDate>Wed, 09 Aug 2017 06:06:58 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office 365]]></category>
		<guid isPermaLink="false">https://itgroove.net/mmman/?p=1781</guid>

					<description><![CDATA[<p>I put together a presentation on the new Microsoft Stream App in Office 365, and presented it on Aug 8, 2017 at the Sydney Office 365 User Group in Sydney, Australia.  Feel free to check it out and let me know if you have any questions.  🙂 Microsoft Stream &#8211; The Video Evolution from Colin &#8230; <a href="https://regroove.ca/archive/2017/08/09/microsoft-stream-video-evolution/"></a></p>
<p>The post <a rel="nofollow" href="https://regroove.ca/archive/2017/08/09/microsoft-stream-video-evolution/">Microsoft Stream &#8211; The Video Evolution</a> appeared first on <a rel="nofollow" href="https://regroove.ca/archive">Archive</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-top: 0px; margin-bottom: 0px;" class="sharethis-inline-share-buttons" ></div><p>I put together a presentation on the new Microsoft Stream App in Office 365, and presented it on Aug 8, 2017 at the Sydney Office 365 User Group in Sydney, Australia.  Feel free to check it out and let me know if you have any questions.  <img src="https://s.w.org/images/core/emoji/13.0.0/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p><iframe src="https://www.slideshare.net/slideshow/embed_code/key/CliHES3DNuIlUf" width="427" height="356" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;" allowfullscreen> </iframe> </p>
<div style="margin-bottom:5px"> <strong> <a href="https://www.slideshare.net/ColinPhillips2/microsoft-stream-the-video-evolution" title="Microsoft Stream - The Video Evolution" target="_blank">Microsoft Stream &#8211; The Video Evolution</a> </strong> from <strong><a target="_blank" href="https://www.slideshare.net/ColinPhillips2">Colin Phillips</a></strong> </div>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://regroove.ca/archive/2017/08/09/microsoft-stream-video-evolution/">Microsoft Stream &#8211; The Video Evolution</a> appeared first on <a rel="nofollow" href="https://regroove.ca/archive">Archive</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1781</post-id>	</item>
		<item>
		<title>Microsoft Forms 101</title>
		<link>https://regroove.ca/archive/2017/08/09/microsoft-forms-101/</link>
		
		<dc:creator><![CDATA[Colin Phillips (Regroove Alumni)]]></dc:creator>
		<pubDate>Wed, 09 Aug 2017 06:03:03 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office 365]]></category>
		<guid isPermaLink="false">https://itgroove.net/mmman/?p=1779</guid>

					<description><![CDATA[<p>I recently put together a presentation on the new Microsoft Forms solution that came out in Office 365 (in public preview).  I&#8217;ve presented the below presentation at the Sydney (Australia) SharePoint User Group on July 18th, 2017, and again on Aug 4th, 2017 in Adelaide, South Australia.  Please check it out below. Microsoft Forms 101 &#8230; <a href="https://regroove.ca/archive/2017/08/09/microsoft-forms-101/"></a></p>
<p>The post <a rel="nofollow" href="https://regroove.ca/archive/2017/08/09/microsoft-forms-101/">Microsoft Forms 101</a> appeared first on <a rel="nofollow" href="https://regroove.ca/archive">Archive</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-top: 0px; margin-bottom: 0px;" class="sharethis-inline-share-buttons" ></div><p>I recently put together a presentation on the new Microsoft Forms solution that came out in Office 365 (in public preview).  I&#8217;ve presented the below presentation at the Sydney (Australia) SharePoint User Group on July 18th, 2017, and again on Aug 4th, 2017 in Adelaide, South Australia.  Please check it out below.</p>
<p><iframe src="https://www.slideshare.net/slideshow/embed_code/key/5MGxYSP1JtjyS2" width="427" height="356" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;" allowfullscreen> </iframe> </p>
<div style="margin-bottom:5px"> <strong> <a href="https://www.slideshare.net/ColinPhillips2/microsoft-forms-101" title="Microsoft Forms 101" target="_blank">Microsoft Forms 101</a> </strong> from <strong><a target="_blank" href="https://www.slideshare.net/ColinPhillips2">Colin Phillips</a></strong> </div>
<p>The post <a rel="nofollow" href="https://regroove.ca/archive/2017/08/09/microsoft-forms-101/">Microsoft Forms 101</a> appeared first on <a rel="nofollow" href="https://regroove.ca/archive">Archive</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1779</post-id>	</item>
		<item>
		<title>9 Months of Fun with SharePoint in Azure and Office 365</title>
		<link>https://regroove.ca/archive/2017/08/09/9-months-fun-sharepoint-azure-office-365/</link>
		
		<dc:creator><![CDATA[Colin Phillips (Regroove Alumni)]]></dc:creator>
		<pubDate>Wed, 09 Aug 2017 05:58:59 +0000</pubDate>
				<category><![CDATA[InfoPath]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office 365]]></category>
		<category><![CDATA[SharePoint]]></category>
		<guid isPermaLink="false">https://itgroove.net/mmman/?p=1777</guid>

					<description><![CDATA[<p>I recently put together a presentation on my experience in New York / New Jersey over the course of a 9 (or maybe 10) month project trying to migrate SharePoint data from one company to another, and then into the cloud. I gave this presentation at the Office 365 Saturday event in Sydney, Australia on &#8230; <a href="https://regroove.ca/archive/2017/08/09/9-months-fun-sharepoint-azure-office-365/"></a></p>
<p>The post <a rel="nofollow" href="https://regroove.ca/archive/2017/08/09/9-months-fun-sharepoint-azure-office-365/">9 Months of Fun with SharePoint in Azure and Office 365</a> appeared first on <a rel="nofollow" href="https://regroove.ca/archive">Archive</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-top: 0px; margin-bottom: 0px;" class="sharethis-inline-share-buttons" ></div><p>I recently put together a presentation on my experience in New York / New Jersey over the course of a 9 (or maybe 10) month project trying to migrate SharePoint data from one company to another, and then into the cloud. I gave this presentation at the Office 365 Saturday event in Sydney, Australia on June 3rd, 2017. Please take a look at the slide deck I posted below.</p>
<p><iframe src="https://www.slideshare.net/slideshow/embed_code/key/D2DOzk2uL5os8g" width="427" height="356" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;" allowfullscreen> </iframe> </p>
<div style="margin-bottom:5px"> <strong> <a href="https://www.slideshare.net/ColinPhillips2/9-months-of-fun-with-sharepoint-in-azure-and-office-365" title="9 Months of Fun with SharePoint in Azure and Office 365" target="_blank">9 Months of Fun with SharePoint in Azure and Office 365</a> </strong> from <strong><a target="_blank" href="https://www.slideshare.net/ColinPhillips2">Colin Phillips</a></strong> </div>
<p>The post <a rel="nofollow" href="https://regroove.ca/archive/2017/08/09/9-months-fun-sharepoint-azure-office-365/">9 Months of Fun with SharePoint in Azure and Office 365</a> appeared first on <a rel="nofollow" href="https://regroove.ca/archive">Archive</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1777</post-id>	</item>
		<item>
		<title>June 13th 2017 Outlook updates break search indexing</title>
		<link>https://regroove.ca/archive/2017/07/06/june-13th-2017-outlook-updates-break-search-indexing/</link>
		
		<dc:creator><![CDATA[Louis Warren (Regroove Alumni)]]></dc:creator>
		<pubDate>Thu, 06 Jul 2017 17:44:17 +0000</pubDate>
				<category><![CDATA[Office365]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[indexing]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[security updates]]></category>
		<category><![CDATA[Updates]]></category>
		<guid isPermaLink="false">https://itgroove.net/kinglou/?p=841</guid>

					<description><![CDATA[<p>June 13th 2017 Outlook updates break search indexing I have run into this with a few clients with large PST mailboxes and Outlook 2010 to be specific, but also on Win10 machines with Office 2010. They get: &#8220;search results may be incomplete because items are still being indexed. Click here for more details&#8221; &#160; &#160; &#8230; <a href="https://regroove.ca/archive/2017/07/06/june-13th-2017-outlook-updates-break-search-indexing/"></a></p>
<p>The post <a rel="nofollow" href="https://regroove.ca/archive/2017/07/06/june-13th-2017-outlook-updates-break-search-indexing/">June 13th 2017 Outlook updates break search indexing</a> appeared first on <a rel="nofollow" href="https://regroove.ca/archive">Archive</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-top: 0px; margin-bottom: 0px;" class="sharethis-inline-share-buttons" ></div><p>June 13th 2017 Outlook updates break search indexing</p>
<p>I have run into this with a few clients with large PST mailboxes and Outlook 2010 to be specific, but also on Win10 machines with Office 2010.</p>
<p>They get:</p>
<p><strong>&#8220;search results may be incomplete because items are still being indexed. Click here for more details&#8221;</strong></p>
<p><img loading="lazy" class="alignleft wp-image-842 size-full" src="https://i0.wp.com/regroove.ca/archive/wp-content/uploads/sites/6/2017/07/1.png?resize=673%2C59&#038;ssl=1" alt="June 13th 2017 Outlook updates break search indexing" width="673" height="59" srcset="https://i0.wp.com/regroove.ca/archive/wp-content/uploads/sites/6/2017/07/1.png?w=673&amp;ssl=1 673w, https://i0.wp.com/regroove.ca/archive/wp-content/uploads/sites/6/2017/07/1.png?resize=300%2C26&amp;ssl=1 300w" sizes="(max-width: 673px) 100vw, 673px" data-recalc-dims="1" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>and indexing never seems to finish or seems stuck.</p>
<p>Microsoft has released security updates to supposedly fix the issue, link below for Windows 7 &#8211; 10.</p>
<p><a href="https://support.office.com/en-us/article/Outlook-known-issues-in-the-June-2017-security-updates-3f6dbffd-8505-492d-b19f-b3b89369ed9b" target="_blank" rel="noopener noreferrer">Security Update</a></p>
<p><img loading="lazy" class="alignleft wp-image-843 size-full" src="https://i0.wp.com/regroove.ca/archive/wp-content/uploads/sites/6/2017/07/2.png?resize=697%2C351&#038;ssl=1" alt="June 13th 2017 Outlook updates break search indexing" width="697" height="351" srcset="https://i0.wp.com/regroove.ca/archive/wp-content/uploads/sites/6/2017/07/2.png?w=697&amp;ssl=1 697w, https://i0.wp.com/regroove.ca/archive/wp-content/uploads/sites/6/2017/07/2.png?resize=300%2C151&amp;ssl=1 300w" sizes="(max-width: 697px) 100vw, 697px" data-recalc-dims="1" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Hopefully this helps, people really get mad when they cant search their emails!</p>
<p>The post <a rel="nofollow" href="https://regroove.ca/archive/2017/07/06/june-13th-2017-outlook-updates-break-search-indexing/">June 13th 2017 Outlook updates break search indexing</a> appeared first on <a rel="nofollow" href="https://regroove.ca/archive">Archive</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">841</post-id>	</item>
		<item>
		<title>Office documents not opening in Chrome in SharePoint Online</title>
		<link>https://regroove.ca/archive/2017/04/13/office-documents-not-opening-in-chrome-in-sharepoint-online/</link>
		
		<dc:creator><![CDATA[Louis Warren (Regroove Alumni)]]></dc:creator>
		<pubDate>Thu, 13 Apr 2017 22:19:46 +0000</pubDate>
				<category><![CDATA[Office365]]></category>
		<category><![CDATA[SharePoint Online]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[Office 365]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[sharepoint online]]></category>
		<category><![CDATA[Sharepoint Online Chrome]]></category>
		<category><![CDATA[word browser sharepoint]]></category>
		<category><![CDATA[Word open in chrome]]></category>
		<category><![CDATA[work open sharepoint online]]></category>
		<guid isPermaLink="false">https://itgroove.net/kinglou/?p=829</guid>

					<description><![CDATA[<p>Office documents not opening in Chrome in SharePoint Online I tried all the normal repairing office, uninstalling/reinstalling, resetting to defaults. First I went to set default programs and reset it to defaults. In this case the protocol wasn’t set by default, this didn’t fix chrome, but it fixed IE. I logged into the computer with &#8230; <a href="https://regroove.ca/archive/2017/04/13/office-documents-not-opening-in-chrome-in-sharepoint-online/"></a></p>
<p>The post <a rel="nofollow" href="https://regroove.ca/archive/2017/04/13/office-documents-not-opening-in-chrome-in-sharepoint-online/">Office documents not opening in Chrome in SharePoint Online</a> appeared first on <a rel="nofollow" href="https://regroove.ca/archive">Archive</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-top: 0px; margin-bottom: 0px;" class="sharethis-inline-share-buttons" ></div><p>Office documents not opening in Chrome in SharePoint Online</p>
<p>I tried all the normal repairing office, uninstalling/reinstalling, resetting to defaults.</p>
<p>First I went to set default programs and reset it to defaults.</p>
<p><img loading="lazy" src="https://i0.wp.com/regroove.ca/archive/wp-content/uploads/sites/6/2017/04/1.png?resize=766%2C651&#038;ssl=1" alt="Set Default programs" width="766" height="651" data-recalc-dims="1" /></p>
<p>In this case the protocol wasn’t set by default, this didn’t fix chrome, but it fixed IE.</p>
<p><img loading="lazy" src="https://i2.wp.com/regroove.ca/archive/wp-content/uploads/sites/6/2017/04/2.png?resize=443%2C433&#038;ssl=1" alt="Set associations for program" width="443" height="433" data-recalc-dims="1" /></p>
<p>I logged into the computer with a different profile and when I tried to open a word doc in Chrome I got the prompt I was missing.</p>
<p><img loading="lazy" src="https://i1.wp.com/regroove.ca/archive/wp-content/uploads/sites/6/2017/04/3.png?resize=458%2C206&#038;ssl=1" alt="prompt not opening" width="458" height="206" data-recalc-dims="1" /></p>
<p>Now to reset this option in chrome so it would work on her profile delete or rename the &#8220;local state&#8221; file in<br />
<strong>Users -&gt; (users profile name) -&gt; AppData -&gt; Local -&gt; Google -&gt; Chrome -&gt; User Data</strong></p>
<div>
<p><em><strong>*its hidden</strong></em></p>
<p><img loading="lazy" src="https://i0.wp.com/regroove.ca/archive/wp-content/uploads/sites/6/2017/04/4.png?resize=322%2C261&#038;ssl=1" alt="Reset option in Chrome" width="322" height="261" data-recalc-dims="1" /></p>
</div>
<div>I was also getting a connection issue when opening the word docs, but that was a networking issue where the network adaptor said it didn’t have internet (yellow triangle), but internet was working so browsing to SharePoint online was getting confused. A TCP/IP reset, ipconfig flush / registerdns fixed that all up.</div>
<div></div>
<div><strong>&#8220;We are unable to connect right now. Please check your network and try again later.&#8221;</strong></div>
<p>The post <a rel="nofollow" href="https://regroove.ca/archive/2017/04/13/office-documents-not-opening-in-chrome-in-sharepoint-online/">Office documents not opening in Chrome in SharePoint Online</a> appeared first on <a rel="nofollow" href="https://regroove.ca/archive">Archive</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">829</post-id>	</item>
		<item>
		<title>Typology may set better expectations than Taxonomy</title>
		<link>https://regroove.ca/archive/2017/02/27/typology-may-set-better-expectations-taxonomy/</link>
		
		<dc:creator><![CDATA[Bruce Smith (Regroove Alumni)]]></dc:creator>
		<pubDate>Mon, 27 Feb 2017 21:23:54 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence (AI)]]></category>
		<category><![CDATA[Data Management]]></category>
		<category><![CDATA[Psychology, Personality & Motivation]]></category>
		<category><![CDATA[Search & Information Management]]></category>
		<category><![CDATA[Taxonomy]]></category>
		<guid isPermaLink="false">https://itgroove.net/seek/?p=167</guid>

					<description><![CDATA[<p>I&#8217;ve always struggled with the &#8220;MECE&#8221; (mutually exclusive and collectively exhaustive) promises of taxonomies. It can be easy to confuse a Department in the HR reporting structure called &#8220;Logistics&#8221; with the corporate Function for &#8220;Logistics&#8221;.  In my practical experience the Function of Logistics is useful where staff from other business or administrative groups may be &#8230; <a href="https://regroove.ca/archive/2017/02/27/typology-may-set-better-expectations-taxonomy/"></a></p>
<p>The post <a rel="nofollow" href="https://regroove.ca/archive/2017/02/27/typology-may-set-better-expectations-taxonomy/">Typology may set better expectations than Taxonomy</a> appeared first on <a rel="nofollow" href="https://regroove.ca/archive">Archive</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-top: 0px; margin-bottom: 0px;" class="sharethis-inline-share-buttons" ></div><p>I&#8217;ve always struggled with the &#8220;MECE&#8221; (mutually exclusive and collectively exhaustive) promises of taxonomies.</p>
<p>It can be easy to confuse a Department in the HR reporting structure called &#8220;Logistics&#8221; with the corporate Function for &#8220;Logistics&#8221;.  In my practical experience the Function of Logistics is <em>useful</em> where staff from other business or administrative groups may be the primary actors in the delivery of some specific activities in the overall process.</p>
<p>Despite the best efforts of IM Pros to follow traditional scientific notions of classification, in the business world there is rarely the time to ensure that (1) a domain/set of terms truly represents the whole picture and (2) each entity/term in the set is both unique and useful.  Therefore what we call &#8220;taxonomies&#8221; often actually contain terms that have some pragmatic messy degree of overlap.  Often this is good because it allows us to maintain an ROI in our metadata, and it&#8217;s good enough to reach a silver level of compliance.  We just need to expect to have to roll with the punches when new information is provided by the business that requires the addition of new functions, activities, terms, etc.</p>
<p>To that point I was pleased to discover this well written blog post by <a href="http://cognitive-edge.com/team/dave-snowden/">Dave Snowden</a> (formerly of IBM) <a href="http://cognitive-edge.com/blog/typology-or-taxonomy/">http://cognitive-edge.com/blog/typology-or-taxonomy/</a> In case that page disappears off the interwebs here is the summary to get you thinking:</p>
<blockquote>
<p style="margin: 0in;font-family: Calibri;font-size: 11.0pt">&#8220;The message is very simple rigid boundaries have huge value in static situations so taxonomies work. But where things are subject to rapid change and the possibility of encountering novelty is high they are plain dangerous. However we do need constructs to make sense of the world and that is where conceptual frameworks, or typologies come into their own.&#8221;</p>
</blockquote>
<p>Hope this helps you in your business communications!</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://regroove.ca/archive/2017/02/27/typology-may-set-better-expectations-taxonomy/">Typology may set better expectations than Taxonomy</a> appeared first on <a rel="nofollow" href="https://regroove.ca/archive">Archive</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2086</post-id>	</item>
		<item>
		<title>How to Change the Domain of Multiple SharePoint Accounts</title>
		<link>https://regroove.ca/archive/2017/02/16/how-to-change-the-domain-of-multiple-sharepoint-accounts/</link>
		
		<dc:creator><![CDATA[Colin Phillips (Regroove Alumni)]]></dc:creator>
		<pubDate>Wed, 15 Feb 2017 20:30:56 +0000</pubDate>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[SharePoint]]></category>
		<guid isPermaLink="false">https://itgroove.net/mmman/?p=1772</guid>

					<description><![CDATA[<p>Very recently I had to change a bunch of accounts from one domain to another in SharePoint. Rather than doing this piecemeal for each individual account, I decided to write a simple script to do this for me. Since I couldn&#8217;t find this online, I figured I&#8217;d demonstrate how I did it.     Start &#8230; <a href="https://regroove.ca/archive/2017/02/16/how-to-change-the-domain-of-multiple-sharepoint-accounts/"></a></p>
<p>The post <a rel="nofollow" href="https://regroove.ca/archive/2017/02/16/how-to-change-the-domain-of-multiple-sharepoint-accounts/">How to Change the Domain of Multiple SharePoint Accounts</a> appeared first on <a rel="nofollow" href="https://regroove.ca/archive">Archive</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-top: 0px; margin-bottom: 0px;" class="sharethis-inline-share-buttons" ></div><p>Very recently I had to change a bunch of accounts from one domain to another in SharePoint.  Rather than doing this piecemeal for each individual account, I decided to write a simple script to do this for me.  Since I couldn&#8217;t find this online, I figured I&#8217;d demonstrate how I did it.
</p>
<p> <br />
 </p>
<p>Start by creating a 2 column Comma Separated Value (CSV) file.  This is just a plain text file where the left side is the original domain of the user, and the right side is the *new* domain for that same user.  In my case we were using SP2010 and moving the users from classic to claims, so I added a claims token in at the same time.
</p>
<p> <br />
 </p>
<h2><span style="color:#2e75b5;font-size:14pt">The CSV File<br />
</span></h2>
<p>(Original domain user on left, updated domain user on right.  I saved this file under c:\top\out.csv)
</p>
<p> <br />
 </p>
<p>ABC-NA\enwqc,i:0#.w|COMPANY\enwqc
</p>
<p>ABC-NA\eotib,i:0#.w|COMPANY\eotib
</p>
<p>ABC-NA\ergyp,i:0#.w|COMPANY\ergyp
</p>
<p>…
</p>
<p> <br />
 </p>
<p>Next, I needed some PowerShell that would read the CSV file, and process each user (move them from the old domain to the new domain)
</p>
<p> <br />
 </p>
<h2><span style="color:#2e75b5;font-size:14pt">The PowerShell Code<br />
</span></h2>
<p>(Note: You need to specify the SharePoint site (Web) that you want to apply this change to &#8211; yes, you have to do this site by site.  Update the URL in the code below before proceeding)
</p>
<p> <br />
 </p>
<p>$path = &#8220;c:\top\out.csv&#8221;
</p>
<p>Import-Csv $path -Header Name,Value | Foreach-Object{
</p>
<p style="margin-left: 27pt">$old = $_.Name
</p>
<p style="margin-left: 27pt">$new = $_.Value
</p>
<p style="margin-left: 27pt">write-host &#8220;about to update user $old to $new.&#8221;
</p>
<p style="margin-left: 27pt">$user = get-SPUser -Identity &#8220;$old&#8221; -Web <a href="https://[DOMAIN]/sites/%5bSITE%5d">https://[DOMAIN]/sites/[SITE]</a>
	</p>
<p style="margin-left: 27pt">Move-SPUser -Identity $user -IgnoreSID -NewAlias &#8220;$new&#8221; -Confirm:$false
</p>
<p>}
</p>
<p> <br />
 </p>
<p>To run this script, simply copy the lines above and paste it into a SharePoint Administrator PowerShell.  The output will look similar to what you see below.
</p>
<p> <br />
 </p>
<h2><span style="color:#2e75b5;font-size:14pt">The Script Running…<br />
</span></h2>
<p> <br />
 </p>
<p>about to update user ABC-NA\ggdxb to i:0#.w|COMPANY\ggdxb.
</p>
<p>about to update user ABC-NA\gcmuy to i:0#.w|COMPANY\gcmuy.
</p>
<p>about to update user ABC-NA\evlgx to i:0#.w|COMPANY\evlgx.
</p>
<p>…
</p>
<p> <br />
 </p>
<p>There&#8217;s obviously an improvement that could be made to this script in that it could also be written to iterate over a collection of sites (webs), but I didn&#8217;t have a need to do that.  To do this, you would simply wrap the code above in another foreach-object and provide a parameter for the &#8220;-Web&#8221; option.
</p>
<p> <br />
 </p>
<p>Hopefully this helps someone else to save a bit of time in the future.</p>
<p>The post <a rel="nofollow" href="https://regroove.ca/archive/2017/02/16/how-to-change-the-domain-of-multiple-sharepoint-accounts/">How to Change the Domain of Multiple SharePoint Accounts</a> appeared first on <a rel="nofollow" href="https://regroove.ca/archive">Archive</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1772</post-id>	</item>
		<item>
		<title>Error 1935 when Installing SharePoint and SharePoint Designer</title>
		<link>https://regroove.ca/archive/2017/02/14/error-1935-when-installing-sharepoint-and-sharepoint-designer/</link>
					<comments>https://regroove.ca/archive/2017/02/14/error-1935-when-installing-sharepoint-and-sharepoint-designer/#comments</comments>
		
		<dc:creator><![CDATA[Colin Phillips (Regroove Alumni)]]></dc:creator>
		<pubDate>Mon, 13 Feb 2017 21:15:10 +0000</pubDate>
				<category><![CDATA[SharePoint]]></category>
		<guid isPermaLink="false">https://itgroove.net/mmman/?p=1769</guid>

					<description><![CDATA[<p>A while back I was trying to install SharePoint 2010 and was receiving the following &#8220;Error 1935. An error occurred during the installation of assembly component&#8221;. I was also getting this issue when trying to install SharePoint Designer 2010.     Initially I tried the following link, https://support.microsoft.com/en-us/kb/926804, but that did not resolve my problem. &#8230; <a href="https://regroove.ca/archive/2017/02/14/error-1935-when-installing-sharepoint-and-sharepoint-designer/"></a></p>
<p>The post <a rel="nofollow" href="https://regroove.ca/archive/2017/02/14/error-1935-when-installing-sharepoint-and-sharepoint-designer/">Error 1935 when Installing SharePoint and SharePoint Designer</a> appeared first on <a rel="nofollow" href="https://regroove.ca/archive">Archive</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-top: 0px; margin-bottom: 0px;" class="sharethis-inline-share-buttons" ></div><p>A while back I was trying to install SharePoint 2010 and was receiving the following &#8220;Error 1935. An error occurred during the installation of assembly component&#8221;.  I was also getting this issue when trying to install SharePoint Designer 2010.
</p>
<p> <br />
 </p>
<p>Initially I tried the following link, <a href="https://support.microsoft.com/en-us/kb/926804">https://support.microsoft.com/en-us/kb/926804</a>, but that did not resolve my problem.  The suggestion in this post is to uninstall the .NET framework.  I tried this, and unfortunately it didn&#8217;t work.
</p>
<p> <br />
 </p>
<p>As this was essentially a new machine, I tried a few things that you wouldn&#8217;t likely do if this was a well seasoned machine.  Firstly, I uninstalled EVERYTHING in the &#8220;Programs and Features&#8221; under the Control Panel &#8211; no dice, still had the same error message.  Next I went into the Server Manager and uninstalled ALL the Roles and ALL the Features.  This last step appears to have been the key.
</p>
<p> <br />
 </p>
<p><img src="https://i2.wp.com/regroove.ca/archive/wp-content/uploads/sites/6/2017/02/021317_2115_Error1935wh1.png?ssl=1" alt="" data-recalc-dims="1" />
	</p>
<p> <br />
 </p>
<p>Ultimately it appears to boil down to the fact that the .NET installer 3.5 was installed, and wasn&#8217;t being cleanly uninstalled (along with some of the other things that must have been installed).  After uninstalling, I rebooted and then ran the .NET cleanup tool in the support link above.  Finally, I rebooted once again.
</p>
<p> <br />
 </p>
<p>After the last reboot, I installed JUST the .NET Framework 3.5 in the features section of the Server Manager, and then I was able to successfully install SharePoint Designer 2010.  After adding in some of the other SP2010 pre-requisites, and then re-running the pre-requisites installer for SharePoint, I was then able to successfully install SharePoint 2010.</p>
<p>The post <a rel="nofollow" href="https://regroove.ca/archive/2017/02/14/error-1935-when-installing-sharepoint-and-sharepoint-designer/">Error 1935 when Installing SharePoint and SharePoint Designer</a> appeared first on <a rel="nofollow" href="https://regroove.ca/archive">Archive</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://regroove.ca/archive/2017/02/14/error-1935-when-installing-sharepoint-and-sharepoint-designer/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1796</post-id>	</item>
	</channel>
</rss>
