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

<channel>
	<title>Edge | KC's Blog</title>
	<atom:link href="https://www.kjctech.net/tag/edge/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.kjctech.net</link>
	<description></description>
	<lastBuildDate>Wed, 24 May 2023 06:00:14 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/12/cropped-KC-Logo.png?fit=32%2C32&#038;ssl=1</url>
	<title>Edge | KC's Blog</title>
	<link>https://www.kjctech.net</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">24634607</site>	<item>
		<title>How To Manage Edge uBlock Origin Trusted Sites via GPO</title>
		<link>https://www.kjctech.net/how-to-manage-edge-ublock-origin-trusted-sites-via-gpo/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-manage-edge-ublock-origin-trusted-sites-via-gpo</link>
					<comments>https://www.kjctech.net/how-to-manage-edge-ublock-origin-trusted-sites-via-gpo/#respond</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Wed, 24 May 2023 06:00:10 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Edge]]></category>
		<category><![CDATA[group policy]]></category>
		<guid isPermaLink="false">https://www.kjctech.net/?p=5074</guid>

					<description><![CDATA[<p>Deploying the uBlock Origin extension for Edge via GPO is very easy and straightforward. Follow this guide you will be done within minutes. However, managing it such as updating its Trusted Sites list so the extension doesn&#8217;t block anything won&#8217;t be that easy though. There are no settings out of the box designed for it. Many suggested registry keys and [&#8230;]</p>
The post <a href="https://www.kjctech.net/how-to-manage-edge-ublock-origin-trusted-sites-via-gpo/">How To Manage Edge uBlock Origin Trusted Sites via GPO</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>Deploying the uBlock Origin extension for Edge via GPO is very easy and straightforward. Follow <a href="https://www.kjctech.net/deploying-microsoft-edge-extensions-via-group-policy/" target="_blank" rel="noopener" title="">this guide</a> you will be done within minutes. However, managing it such as updating its Trusted Sites list so the extension doesn&#8217;t block anything won&#8217;t be that easy though.</p>



<p>There are no settings out of the box designed for it. Many suggested registry keys and deploying them via GPO. I am not a fan of it unless I am out of options.</p>



<p>Looking through the options to <a href="https://learn.microsoft.com/en-us/deployedge/microsoft-edge-manage-extensions-policies?source=recommendations" target="_blank" rel="noopener" title="">configure extensions using the ExtensionSettings policy</a>, one setting that pops out and caught my attention is called <strong><em>runtime_blocked_hosts</em></strong>, which basically prevents extensions from interacting with or modifying websites that you specify. It&#8217;s pretty much exactly what Trust Sites do.</p>



<p>Let&#8217;s give it a shot.</p>



<p>First of all, the policy <strong><em>Configure extension management settings</em></strong> is a Computer Configuration policy. So, you will need to set it up on a GPO that controls through a computer, not a user.</p>



<pre class="wp-block-preformatted">Computer Configuration > Administrative Templates > Microsoft Edge > Extensions.</pre>



<p>The detailed setting is a JSON-based text string. Make sure to prepare the whole string in Notepad and paste it into the Group Policy Management editor. For me, the following JSON string adds BC government sites and the Purolator website to the Trusted Sites list and forces the extension shown on the toolbar.</p>



<pre class="wp-block-preformatted">{"odfafepnkmbhccpbejgmiehpchacaeak":{"runtime_blocked_hosts":["<em>://</em>.gov.bc.ca","<em>://</em>.purolator.com"],"toolbar_state":"force_shown"}}</pre>



<p>And it works flawlessly.</p>The post <a href="https://www.kjctech.net/how-to-manage-edge-ublock-origin-trusted-sites-via-gpo/">How To Manage Edge uBlock Origin Trusted Sites via GPO</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/how-to-manage-edge-ublock-origin-trusted-sites-via-gpo/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">5074</post-id>	</item>
		<item>
		<title>Deploying Microsoft Edge Extensions via Group Policy</title>
		<link>https://www.kjctech.net/deploying-microsoft-edge-extensions-via-group-policy/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=deploying-microsoft-edge-extensions-via-group-policy</link>
					<comments>https://www.kjctech.net/deploying-microsoft-edge-extensions-via-group-policy/#respond</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Sat, 01 Oct 2022 05:59:00 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Edge]]></category>
		<category><![CDATA[group policy]]></category>
		<guid isPermaLink="false">https://www.kjctech.net/?p=4819</guid>

					<description><![CDATA[<p>If you need to deploy an Edge extension within an AD-powered network, you definitely want to do it via Group Policy to automate the process. But before you go ahead and do that, you will have to download and install the Microsoft Edge administrative template to your AD first. First, download the policy template files here. There are two files [&#8230;]</p>
The post <a href="https://www.kjctech.net/deploying-microsoft-edge-extensions-via-group-policy/">Deploying Microsoft Edge Extensions via Group Policy</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>If you need to deploy an Edge extension within an AD-powered network, you definitely want to do it via Group Policy to automate the process. But before you go ahead and do that, you will have to download and install the Microsoft Edge administrative template to your AD first.</p>



<p>First, download the policy template files <a href="https://www.microsoft.com/en-us/edge/business/download" target="_blank" rel="noopener">here</a>. There are two files for Microsoft Edge,</p>



<ul class="wp-block-list"><li>msedge.admx for configuring Microsoft Edge settings. There are tons of settings that you can mess up with.</li><li>msedgeupdate.admx for managing Microsoft Edge updates.</li></ul>



<p>The msedge.admx is the one you are after. Copy it to the AD server&#8217;s PolicyDefinitions folder and those setting will show up in the Group Policy Editor.</p>



<p>Most Edge settings can be applied to both Computers and Users. If you want to deploy the extensions based on the user, configure that under <strong>User Configuration</strong>. Otherwise, do that under <strong>Computer Configuration</strong>.</p>



<p>Now let&#8217;s deploy the uBlock Origin extension via Group Policy.</p>



<p>Fire up the Group Policy Manager and open the policy responsible for a User&#8217;s OU. Navigate through the following location,</p>



<pre class="wp-block-preformatted">User Configuration > Administrative Templates > Microsoft Edge > Extensions</pre>



<p>Double-click the setting called <em>Control which extensions are installed silently</em>.</p>



<figure class="wp-block-image size-large"><a href="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2022/09/image.png?ssl=1" data-rel="lightbox-image-0" data-rl_title="" data-rl_caption="" title=""><img data-recalc-dims="1" fetchpriority="high" decoding="async" width="600" height="373" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2022/09/image.png?resize=600%2C373&#038;ssl=1" alt="" class="wp-image-4820" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2022/09/image.png?resize=600%2C373&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2022/09/image.png?resize=450%2C280&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2022/09/image.png?resize=250%2C155&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2022/09/image.png?resize=768%2C478&amp;ssl=1 768w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2022/09/image.png?resize=700%2C435&amp;ssl=1 700w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2022/09/image.png?resize=520%2C323&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2022/09/image.png?resize=360%2C224&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2022/09/image.png?resize=500%2C310&amp;ssl=1 500w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2022/09/image.png?resize=100%2C62&amp;ssl=1 100w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2022/09/image.png?w=944&amp;ssl=1 944w" sizes="(max-width: 600px) 100vw, 600px" /></a></figure>



<p>Select <strong>Enable</strong> and click on the <strong>Show</strong> button. Then enter the extension ID into the box and click OK. The extension ID is the last portion of the URL of the official Edge extension page.</p>



<figure class="wp-block-image size-large"><img data-recalc-dims="1" decoding="async" width="600" height="370" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2022/09/image-1.png?resize=600%2C370&#038;ssl=1" alt="" class="wp-image-4821" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2022/09/image-1.png?resize=600%2C370&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2022/09/image-1.png?resize=450%2C277&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2022/09/image-1.png?resize=250%2C154&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2022/09/image-1.png?resize=520%2C320&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2022/09/image-1.png?resize=360%2C222&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2022/09/image-1.png?resize=100%2C62&amp;ssl=1 100w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2022/09/image-1.png?w=688&amp;ssl=1 688w" sizes="(max-width: 600px) 100vw, 600px" /></figure>



<p>And that&#8217;s it. The extension will be automatically installed the next time users sign into their computers.</p>The post <a href="https://www.kjctech.net/deploying-microsoft-edge-extensions-via-group-policy/">Deploying Microsoft Edge Extensions via Group Policy</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/deploying-microsoft-edge-extensions-via-group-policy/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4819</post-id>	</item>
	</channel>
</rss>
