<?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>group policy | KC's Blog</title>
	<atom:link href="https://www.kjctech.net/tag/group-policy/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>group policy | 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>
		<item>
		<title>How To Limit Cached Domain Credentials on Windows 10</title>
		<link>https://www.kjctech.net/how-to-limit-cached-domain-credentials-on-windows-10/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-limit-cached-domain-credentials-on-windows-10</link>
					<comments>https://www.kjctech.net/how-to-limit-cached-domain-credentials-on-windows-10/#comments</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Tue, 15 Jun 2021 05:49:54 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Cached Credentials]]></category>
		<category><![CDATA[group policy]]></category>
		<category><![CDATA[Security]]></category>
		<guid isPermaLink="false">https://www.kjctech.net/?p=4642</guid>

					<description><![CDATA[<p>Cached credentials are extremely useful for laptops that don&#8217;t always connect to their domain controls. When you log into one that is outside of your network, Windows checks if the entered username and password match the local cached copy and will let you in if it does. But it&#8217;s not necessary on a desktop computer that is always wire-connected to [&#8230;]</p>
The post <a href="https://www.kjctech.net/how-to-limit-cached-domain-credentials-on-windows-10/">How To Limit Cached Domain Credentials on Windows 10</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>Cached credentials are extremely useful for laptops that don&#8217;t always connect to their domain controls. When you log into one that is outside of your network, Windows checks if the entered username and password match the local cached copy and will let you in if it does. But it&#8217;s not necessary on a desktop computer that is always wire-connected to  the network.</p>



<p>By default, Windows caches up to 10 credentials on local computer and these cached credentials never expire. They are stored in the registry under <strong>HKLM\Security\Cache</strong> key.</p>



<figure class="wp-block-image size-large"><img decoding="async" width="600" height="324" src="//i0.wp.com/kjctech.net/wp-content/uploads/2021/06/image-1-600x324.png" alt="" class="wp-image-4643" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/06/image-1.png?resize=600%2C324&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/06/image-1.png?resize=450%2C243&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/06/image-1.png?resize=250%2C135&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/06/image-1.png?resize=520%2C281&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/06/image-1.png?resize=360%2C195&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/06/image-1.png?resize=100%2C54&amp;ssl=1 100w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/06/image-1.png?w=688&amp;ssl=1 688w" sizes="(max-width: 600px) 100vw, 600px" /></figure>



<p>Note that you will need to give yourself Read permission </p>



<p>All credentials are hashed in the NL$x value format and cannot be viewed plainly and easily decrypted, fortunately. However, it could still potentially be risky because once the hackers get their hands on these data they can use a brute-force attack against these hashes to decrypt the password.</p>



<p>So, here are a few approaches to limit the cache credentials on Windows computers.</p>



<p>First of all, add all accounts in Domain Admin group to the <strong>Protected Users</strong> group so the credentials for these accounts won&#8217;t be cached locally. However, if you have some apps that integrates with AD you may find difficulty signing in using your own password.</p>



<p>Then, turn on BitLocker disk encryption if possible. Once encrypted, hackers won&#8217;t be able to do anything with it.</p>



<p>If BitLocker is not possible, disable cached credentials on all desktops and limit to only 1 for all laptops.</p>



<p>It&#8217;s easier to do so through GPO. Head over to the following location,</p>



<pre class="wp-block-preformatted">Computer Configuration &gt; Windows Settings &gt; Security Settings &gt; Local Policies &gt; Security Options</pre>



<p>And set the <strong>Interactive Logon: Number of previous logons to cache</strong> to 1 for laptops and 0 for desktops.</p>



<p>Additionally, you can display a notification of using cached credentials by enabling the policy <strong>Report when logon server was not available during user logon </strong>under the following location:</p>



<pre class="wp-block-preformatted">Computer Configuration &gt; Policies &gt; Administrative Templates &gt; Windows Components &gt; Windows Logon Options</pre>The post <a href="https://www.kjctech.net/how-to-limit-cached-domain-credentials-on-windows-10/">How To Limit Cached Domain Credentials on Windows 10</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/how-to-limit-cached-domain-credentials-on-windows-10/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4642</post-id>	</item>
		<item>
		<title>Why Office 365 GPO Settings Don&#8217;t Apply? And What To Do?</title>
		<link>https://www.kjctech.net/why-office-365-gpo-settings-dont-apply-and-what-to-do/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=why-office-365-gpo-settings-dont-apply-and-what-to-do</link>
					<comments>https://www.kjctech.net/why-office-365-gpo-settings-dont-apply-and-what-to-do/#respond</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Wed, 23 Dec 2020 19:28:57 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[group policy]]></category>
		<category><![CDATA[Office 365]]></category>
		<guid isPermaLink="false">https://www.kjctech.net/?p=4548</guid>

					<description><![CDATA[<p>I have a bunch of group policy settings that need to be enforced on a lot of new Office 365 installations. I excitedly downloaded the Administrative Template files (ADMX/ADML) package, uploaded them to the Active Directory&#8217;s PolicyDefinitions folder, and opened up Group Policy Management, put in all the policies I want to push out. Guess what? Out of the 6 [&#8230;]</p>
The post <a href="https://www.kjctech.net/why-office-365-gpo-settings-dont-apply-and-what-to-do/">Why Office 365 GPO Settings Don’t Apply? And What To Do?</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>I have a bunch of group policy settings that need to be enforced on a lot of new Office 365 installations. I excitedly downloaded the <a href="https://www.microsoft.com/en-us/download/details.aspx?id=49030" target="_blank" rel="noreferrer noopener">Administrative Template files (ADMX/ADML)</a> package, uploaded them to the Active Directory&#8217;s PolicyDefinitions folder, and opened up Group Policy Management, put in all the policies I want to push out.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="600" height="377" src="//i0.wp.com/kjctech.net/wp-content/uploads/2020/12/image-600x377.png" alt="" class="wp-image-4550" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2020/12/image.png?resize=600%2C377&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2020/12/image.png?resize=450%2C283&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2020/12/image.png?resize=250%2C157&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2020/12/image.png?resize=520%2C327&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2020/12/image.png?resize=360%2C226&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2020/12/image.png?resize=100%2C63&amp;ssl=1 100w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2020/12/image.png?w=700&amp;ssl=1 700w" sizes="auto, (max-width: 600px) 100vw, 600px" /></figure>



<p>Guess what? Out of the 6 policies I put in, only one of them gets pushed out. None of the other ones got applied.</p>



<p>The <strong>gpresult</strong> command line that checks the resulting set of policy settings enforced on the computer tells me all of them are pushed out from the Active Directory as they are supposed to. But why my Office 365 apps take none of them?</p>



<p>Turns out, something has changed since the release of Office 2013. All group policy settings pushed out from AD will be ignored on retail version of Office, including Microsoft 365 Business subscription. If you need a version that supports GPO, you need to get the volume license editions, or Microsoft 365 Business Premium, which is equivalent to Office 365 ProPlus. Essentially, you will need to pay more, a lot more, to get the functionality again.</p>



<p>I don&#8217;t find any official documents that state this requirement but I do tend to agree with <a href="https://www.jdfoxmicro.com/resource-center/articles/group-policy-office-2013/">this</a>, as it&#8217;s exactly what happened in my case.</p>



<p>Workaround?  Use Registry settings instead, not the ones under Policies key because those ones are already existed but are ignored, but the real ones under HKCU.</p>



<p>For example, if I need to <em>Allow Trusted Locations on my network</em>, I can open GPO editor on a specified GPO and go to</p>



<pre class="wp-block-preformatted">User Configuration &gt; Preferences &gt; Windows Settings &gt; Registry </pre>



<p>Right-click on the empty area at the right pane, choose New > Registry Item.</p>



<p>Select <em>Create</em> as Action, HKEY_CURRENT_USER as the Hive, with the following Key Path:</p>



<pre class="wp-block-preformatted">SOFTWARE\Microsoft\Office\16.0\Word\Security\Trusted Locations</pre>



<p>Set a Value name as <em>AllowNetworkLocation</em> with a value data as 1 in REG_DWORD type.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="400" height="455" src="//i0.wp.com/kjctech.net/wp-content/uploads/2020/12/image-1.png" alt="" class="wp-image-4552" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2020/12/image-1.png?w=400&amp;ssl=1 400w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2020/12/image-1.png?resize=250%2C284&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2020/12/image-1.png?resize=360%2C410&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2020/12/image-1.png?resize=100%2C114&amp;ssl=1 100w" sizes="auto, (max-width: 400px) 100vw, 400px" /></figure>



<p>You may also need to copy/paste to another item and change the action to Update to make sure the setting you put in is always intact.</p>



<p>It&#8217;s not as perfect as the ones pushed out via GPO but it works. If it gets changed during one session, it will get reset via next login.</p>The post <a href="https://www.kjctech.net/why-office-365-gpo-settings-dont-apply-and-what-to-do/">Why Office 365 GPO Settings Don’t Apply? And What To Do?</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/why-office-365-gpo-settings-dont-apply-and-what-to-do/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4548</post-id>	</item>
		<item>
		<title>Why Windows 10 Doesn&#8217;t Auto Restart after the update?</title>
		<link>https://www.kjctech.net/why-windows-10-doesnt-auto-restart-after-the-update/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=why-windows-10-doesnt-auto-restart-after-the-update</link>
					<comments>https://www.kjctech.net/why-windows-10-doesnt-auto-restart-after-the-update/#comments</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Fri, 14 Jun 2019 23:41:04 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[group policy]]></category>
		<category><![CDATA[Windows 10]]></category>
		<guid isPermaLink="false">https://www.kjctech.net/?p=4362</guid>

					<description><![CDATA[<p>I have a Group Policy setting in place that forces all workstations in the same OU checks and installs any available updates from a local WSUS automatically at 3:00 am every single day. It has worked beautifully until recently I started upgrading them gradually to Windows 10. The ones graduated from Windows 7 to Windows 10 don&#8217;t reboot themselves anymore [&#8230;]</p>
The post <a href="https://www.kjctech.net/why-windows-10-doesnt-auto-restart-after-the-update/">Why Windows 10 Doesn’t Auto Restart after the update?</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>I have a Group Policy setting in place that forces all workstations in the same OU checks and installs any available updates from a local WSUS automatically at 3:00 am every single day. </p>



<figure class="wp-block-image"><img data-recalc-dims="1" loading="lazy" decoding="async" width="600" height="443" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/06/image-12.png?resize=600%2C443&#038;ssl=1" alt="" class="wp-image-4363" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/06/image-12.png?resize=600%2C443&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/06/image-12.png?resize=250%2C184&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/06/image-12.png?resize=450%2C332&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/06/image-12.png?resize=768%2C567&amp;ssl=1 768w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/06/image-12.png?resize=700%2C516&amp;ssl=1 700w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/06/image-12.png?resize=520%2C384&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/06/image-12.png?resize=360%2C266&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/06/image-12.png?resize=100%2C74&amp;ssl=1 100w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/06/image-12.png?w=858&amp;ssl=1 858w" sizes="auto, (max-width: 600px) 100vw, 600px" /></figure>



<p>It has worked beautifully until recently I started upgrading them gradually to Windows 10. The ones graduated from Windows 7 to Windows 10 don&#8217;t reboot themselves anymore after any security updates.</p>



<p>Turns out, there is another new policy that needs to be enabled to force a reboot immediately after Windows Update installs important updates. It also lets you set up a restart timer, ranging from 15 to 180 minutes, to give users the opportunity to save their work. When the timer runs out, the restart will proceed even if the PC has signed-in users.</p>



<p>The policy is named <strong>Always automatically restart at the scheduled time</strong> and located at the following Group Policy location:</p>



<pre class="wp-block-preformatted">Computer Configuration > Policies > Administrative Templates > Windows Components > Windows Update</pre>



<figure class="wp-block-image"><a href="//i0.wp.com/kjctech.net/wp-content/uploads/2019/06/image-13.png" data-rel="lightbox-image-0" data-rl_title="" data-rl_caption="" title=""><img loading="lazy" decoding="async" width="1223" height="705" src="https://i2.wp.com/www.kjctech.net/wp-content/uploads/2019/06/image-13.png?fit=600%2C346&amp;ssl=1" alt="" class="wp-image-4364" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/06/image-13.png?w=1223&amp;ssl=1 1223w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/06/image-13.png?resize=250%2C144&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/06/image-13.png?resize=450%2C259&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/06/image-13.png?resize=768%2C443&amp;ssl=1 768w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/06/image-13.png?resize=600%2C346&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/06/image-13.png?resize=700%2C404&amp;ssl=1 700w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/06/image-13.png?resize=520%2C300&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/06/image-13.png?resize=360%2C208&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/06/image-13.png?resize=100%2C58&amp;ssl=1 100w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></figure>The post <a href="https://www.kjctech.net/why-windows-10-doesnt-auto-restart-after-the-update/">Why Windows 10 Doesn’t Auto Restart after the update?</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/why-windows-10-doesnt-auto-restart-after-the-update/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4362</post-id>	</item>
		<item>
		<title>Generating Various Types of Group Policy Reports</title>
		<link>https://www.kjctech.net/generating-various-types-of-group-policy-reports/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=generating-various-types-of-group-policy-reports</link>
					<comments>https://www.kjctech.net/generating-various-types-of-group-policy-reports/#respond</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Wed, 06 Mar 2019 00:38:54 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[group policy]]></category>
		<guid isPermaLink="false">https://www.kjctech.net/?p=4249</guid>

					<description><![CDATA[<p>On an Active Directory Domain with multiple GPOs in place, it&#8217;s nice having a way that can generate reports in various situations. Group Policies applied to my account and computer There is a built-in tool called Resultant Set of Policy (rsop.msc) that scans all active policies and displays them all in a window similar to Group Policy Editor. You will [&#8230;]</p>
The post <a href="https://www.kjctech.net/generating-various-types-of-group-policy-reports/">Generating Various Types of Group Policy Reports</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>On an Active Directory Domain with multiple GPOs in place, it&#8217;s nice having a way that can generate reports in various situations.</p>



<h2 class="wp-block-heading">Group Policies applied to my account and computer</h2>



<p>There is a built-in tool called <strong><g class="gr_ gr_22 gr-alert gr_gramm gr_inline_cards gr_run_anim Grammar only-ins replaceWithoutSep" id="22" data-gr-id="22">Resultant</g> Set of Policy</strong> (rsop.msc) that scans all active policies and displays them all in a window similar to Group Policy Editor. You will need to go through the list to find out all the policies applied to your account and computer.</p>



<figure class="wp-block-image"><a href="//i0.wp.com/kjctech.net/wp-content/uploads/2019/03/image-3.png" data-rel="lightbox-image-0" data-rl_title="" data-rl_caption="" title=""><img loading="lazy" decoding="async" width="872" height="506" src="https://i1.wp.com/www.kjctech.net/wp-content/uploads/2019/03/image-3.png?fit=600%2C348&amp;ssl=1" alt="" class="wp-image-4250" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/03/image-3.png?w=872&amp;ssl=1 872w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/03/image-3.png?resize=250%2C145&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/03/image-3.png?resize=450%2C261&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/03/image-3.png?resize=768%2C446&amp;ssl=1 768w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/03/image-3.png?resize=600%2C348&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/03/image-3.png?resize=700%2C406&amp;ssl=1 700w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/03/image-3.png?resize=520%2C302&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/03/image-3.png?resize=360%2C209&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2019/03/image-3.png?resize=100%2C58&amp;ssl=1 100w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a><figcaption>Resultant Set of Policy</figcaption></figure>



<p>There is also a built-in command line called <strong>GPResult</strong> that you can also use to collect all the policies applied in place.</p>



<pre class="wp-block-preformatted">gpresult&nbsp;/scope user /v</pre>



<p>This is to search and show all the active policies applied to the current user. To find all policies applied to the PC, run the following instead in an elevated Command Prompt window.</p>



<pre class="wp-block-preformatted">gpresult&nbsp;/scope computer /v</pre>



<h2 class="wp-block-heading">Group Policies applied to a remote computer and user</h2>



<p>To get all the policies applied to a remote computer:</p>



<pre class="wp-block-preformatted">GPResult /s computer-name /scope computer /v</pre>



<p>To get all the polices applied to a remote user on a remote computer</p>



<pre class="wp-block-preformatted">GPResult /s computer-name  /user username /scope user /v</pre>



<h2 class="wp-block-heading"><g class="gr_ gr_29 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del multiReplace" id="29" data-gr-id="29">GPOs</g> applied to my account and computer</h2>



<p>Same command as above but with a different switch.</p>



<pre class="wp-block-preformatted">GPResult /scope user /r<br>GPResult /scope computer /r<br>GPResult /s computer-name /user username /scope user /r<br>GPResult /s computer-name /scope computer /r</pre>



<h2 class="wp-block-heading">Policies set in a specific GPO</h2>



<p>That&#8217;s where PowerShell shines.</p>



<pre class="wp-block-preformatted">Get-GPOReport -Name "GPO-Name" -ReportType HTML -Path "Path\report.html"</pre>



<p>It generates a report in HTML format for the specified GPO and <g class="gr_ gr_3 gr-alert gr_gramm gr_inline_cards gr_run_anim Grammar multiReplace" id="3" data-gr-id="3">save</g> it in the specified location.</p>



<h2 class="wp-block-heading">Policies set in all GPOs in the domain</h2>



<pre class="wp-block-preformatted">Get-GPOReport -All -ReportType HTML -Path "path\all-gpo.html"</pre>



<h2 class="wp-block-heading">A full list of GPOs in the domain</h2>



<p>Simply use Get-GPO cmdlet.</p>



<pre class="wp-block-preformatted">Get-GPO -All</pre>The post <a href="https://www.kjctech.net/generating-various-types-of-group-policy-reports/">Generating Various Types of Group Policy Reports</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/generating-various-types-of-group-policy-reports/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4249</post-id>	</item>
		<item>
		<title>Fixing Roaming User Profile Not Completely Synchronized on Windows Server 2012</title>
		<link>https://www.kjctech.net/fixing-roaming-user-profile-not-completely-synchronized-on-windows-server-2012/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fixing-roaming-user-profile-not-completely-synchronized-on-windows-server-2012</link>
					<comments>https://www.kjctech.net/fixing-roaming-user-profile-not-completely-synchronized-on-windows-server-2012/#comments</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Thu, 15 Feb 2018 06:26:33 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[group policy]]></category>
		<category><![CDATA[Remote Desktop Services]]></category>
		<category><![CDATA[User Profile Disk]]></category>
		<guid isPermaLink="false">https://www.kjctech.net/?p=3786</guid>

					<description><![CDATA[<p>I have a Remote Desktop Services running on Windows Server 2012. Users who have the access to that server have the roaming profile set up but every time when they log off a warning message displays on the screen saying that: Your roaming user profile was not completely synchronized. See the event log for details or contact administrator. By checking [&#8230;]</p>
The post <a href="https://www.kjctech.net/fixing-roaming-user-profile-not-completely-synchronized-on-windows-server-2012/">Fixing Roaming User Profile Not Completely Synchronized on Windows Server 2012</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>I have a Remote Desktop Services running on Windows Server 2012. Users who have the access to that server have the roaming profile set up but every time when they log off a warning message displays on the screen saying that:</p>
<blockquote>
<p class="">Your roaming user profile was not completely synchronized. See the event log for details or contact administrator.</p>
</blockquote>
<p><a href="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/User-Profile-Not-Sync.png?ssl=1" data-rel="lightbox-image-0" data-rl_title="" data-rl_caption="" title=""><img data-recalc-dims="1" loading="lazy" decoding="async" class="alignnone size-large wp-image-3788" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/User-Profile-Not-Sync.png?resize=600%2C306&#038;ssl=1" alt="" width="600" height="306" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/User-Profile-Not-Sync.png?resize=600%2C306&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/User-Profile-Not-Sync.png?resize=250%2C128&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/User-Profile-Not-Sync.png?resize=450%2C230&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/User-Profile-Not-Sync.png?resize=768%2C392&amp;ssl=1 768w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/User-Profile-Not-Sync.png?resize=700%2C357&amp;ssl=1 700w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/User-Profile-Not-Sync.png?resize=520%2C265&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/User-Profile-Not-Sync.png?resize=360%2C184&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/User-Profile-Not-Sync.png?resize=100%2C51&amp;ssl=1 100w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/User-Profile-Not-Sync.png?w=1375&amp;ssl=1 1375w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/User-Profile-Not-Sync.png?w=1280&amp;ssl=1 1280w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a></p>
<p>By checking the event log, a few warning entries show that</p>
<blockquote>
<p class="">Windows cannot copy file \\?\C:\Users\131\System Volume Information to location \\?\UNC\backup\mcq\profiles\tsProfiles\131.V2\System Volume Information. This error may be caused by network problems or insufficient security rights.</p>
</blockquote>
<p>So why a user profile has a folder called <strong>System Volume Information</strong> that is only made for a storage volume? That&#8217;s because I am using User Profile Disk for the Remote Desktop sessions. Each session has its own disk mounted to store the user profile data. And because it&#8217;s basically a disk, it has a system hidden folder called System Volume Information only accessible by the operating system.</p>
<p>The only way to get around it is to exclude this folder from roaming profile. You can do that through Group Policy.</p>
<p>Open Group Policy Management Policy, go to</p>
<pre class="">User Configuration &gt; Administrative Templates &gt; System &gt; User Profiles</pre>
<p>Double click <strong>Exclude directories in roaming profile</strong> setting.</p>
<p><a href="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/Group-Policy-user-profiles-Exclude-directories.png?ssl=1" data-rel="lightbox-image-1" data-rl_title="" data-rl_caption="" title=""><img data-recalc-dims="1" loading="lazy" decoding="async" class="alignnone size-large wp-image-3789" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/Group-Policy-user-profiles-Exclude-directories.png?resize=600%2C380&#038;ssl=1" alt="" width="600" height="380" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/Group-Policy-user-profiles-Exclude-directories.png?resize=600%2C380&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/Group-Policy-user-profiles-Exclude-directories.png?resize=250%2C158&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/Group-Policy-user-profiles-Exclude-directories.png?resize=450%2C285&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/Group-Policy-user-profiles-Exclude-directories.png?resize=768%2C487&amp;ssl=1 768w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/Group-Policy-user-profiles-Exclude-directories.png?resize=700%2C444&amp;ssl=1 700w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/Group-Policy-user-profiles-Exclude-directories.png?resize=520%2C330&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/Group-Policy-user-profiles-Exclude-directories.png?resize=360%2C228&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/Group-Policy-user-profiles-Exclude-directories.png?resize=100%2C63&amp;ssl=1 100w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/Group-Policy-user-profiles-Exclude-directories.png?w=920&amp;ssl=1 920w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a></p>
<p>Click Enable, and type in the folder names, separated by semi-colons.</p>
<p><a href="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/Group-Policy-Enable-Exclude-Directories.png?ssl=1" data-rel="lightbox-image-2" data-rl_title="" data-rl_caption="" title=""><img data-recalc-dims="1" loading="lazy" decoding="async" class="alignnone size-large wp-image-3790" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/Group-Policy-Enable-Exclude-Directories.png?resize=600%2C551&#038;ssl=1" alt="" width="600" height="551" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/Group-Policy-Enable-Exclude-Directories.png?resize=600%2C551&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/Group-Policy-Enable-Exclude-Directories.png?resize=250%2C230&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/Group-Policy-Enable-Exclude-Directories.png?resize=450%2C413&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/Group-Policy-Enable-Exclude-Directories.png?w=700&amp;ssl=1 700w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/Group-Policy-Enable-Exclude-Directories.png?resize=520%2C478&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/Group-Policy-Enable-Exclude-Directories.png?resize=360%2C331&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/02/Group-Policy-Enable-Exclude-Directories.png?resize=100%2C92&amp;ssl=1 100w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a></p>
<p>Click OK when done and that will do the trick next time when you log in and log off.</p>The post <a href="https://www.kjctech.net/fixing-roaming-user-profile-not-completely-synchronized-on-windows-server-2012/">Fixing Roaming User Profile Not Completely Synchronized on Windows Server 2012</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/fixing-roaming-user-profile-not-completely-synchronized-on-windows-server-2012/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">3786</post-id>	</item>
		<item>
		<title>How To Enable WinRM with Domain Group Policy for PowerShell Remoting</title>
		<link>https://www.kjctech.net/how-to-enable-winrm-with-domain-group-policy-for-powershell-remoting/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-enable-winrm-with-domain-group-policy-for-powershell-remoting</link>
					<comments>https://www.kjctech.net/how-to-enable-winrm-with-domain-group-policy-for-powershell-remoting/#comments</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Fri, 19 Jan 2018 06:57:08 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[group policy]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[WinRM]]></category>
		<guid isPermaLink="false">https://www.kjctech.net/?p=3729</guid>

					<description><![CDATA[<p>PowerShell Remoting really makes my work a lot easier but it requires quite a bit of work to get all the remote computers ready to take the remoting calls, such as automatically start Windows Remote Management services, set up the HTTP listener for incoming WinRM requests, as well as open Firewall Port to allow the traffic to go through. For [&#8230;]</p>
The post <a href="https://www.kjctech.net/how-to-enable-winrm-with-domain-group-policy-for-powershell-remoting/">How To Enable WinRM with Domain Group Policy for PowerShell Remoting</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>PowerShell Remoting really makes my work a lot easier but it requires quite a bit of work to get all the remote computers ready to take the remoting calls, such as automatically start Windows Remote Management services, set up the HTTP listener for incoming WinRM requests, as well as open Firewall Port to allow the traffic to go through.</p>
<h2>For individual computers</h2>
<p>It&#8217;s quite easy. Just open a PowerShell as Administrator window on the computer and run the following cmdlet and it will take care of the rest.</p>
<pre class="">Enable-PSRemoting</pre>
<p><a href="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/PowerShell-Enable-PSRemoting.png?ssl=1" data-rel="lightbox-image-0" data-rl_title="" data-rl_caption="" title=""><img data-recalc-dims="1" loading="lazy" decoding="async" class="alignnone size-full wp-image-3731" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/PowerShell-Enable-PSRemoting.png?resize=438%2C184&#038;ssl=1" alt="PowerShell - Enable PSRemoting" width="438" height="184" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/PowerShell-Enable-PSRemoting.png?w=438&amp;ssl=1 438w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/PowerShell-Enable-PSRemoting.png?resize=250%2C105&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/PowerShell-Enable-PSRemoting.png?resize=360%2C151&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/PowerShell-Enable-PSRemoting.png?resize=100%2C42&amp;ssl=1 100w" sizes="auto, (max-width: 438px) 100vw, 438px" /></a></p>
<h2>For large network</h2>
<p>Deploying the settings via Group Policy is definitely the way to go. If you are on Windows Server 2012 R2, open <strong>Group Policy Management</strong> and find the <strong>Grou Policy object</strong> you want to tweak and edit from there. Or create a new one if needed.</p>
<p>Once you are in there, there are <strong>three places</strong> that you need to go through:</p>
<h3>1. Allow remote server management through WinRM</h3>
<p>Go to <strong>Computer Configuration &gt; Policies &gt; Administrative Templates &gt; Windows Remote Management (WinRM) &gt; WinRM Service</strong>.</p>
<p>Double-click the setting &#8220;<strong>Allow remote server management through WinRM</strong>&#8221;</p>
<p><a href="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Allow-remote-server-management-through.png?ssl=1" data-rel="lightbox-image-1" data-rl_title="" data-rl_caption="" title=""><img data-recalc-dims="1" loading="lazy" decoding="async" class="alignnone size-large wp-image-3732" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Allow-remote-server-management-through.png?resize=600%2C267&#038;ssl=1" alt="Group Policy - Allow remote server management through" width="600" height="267" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Allow-remote-server-management-through.png?resize=600%2C267&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Allow-remote-server-management-through.png?resize=250%2C111&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Allow-remote-server-management-through.png?resize=450%2C200&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Allow-remote-server-management-through.png?resize=768%2C341&amp;ssl=1 768w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Allow-remote-server-management-through.png?resize=700%2C311&amp;ssl=1 700w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Allow-remote-server-management-through.png?resize=520%2C231&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Allow-remote-server-management-through.png?resize=360%2C160&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Allow-remote-server-management-through.png?resize=100%2C44&amp;ssl=1 100w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Allow-remote-server-management-through.png?w=801&amp;ssl=1 801w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a></p>
<p>Select <strong>Enable</strong> and type in &#8220;*&#8221; in for both <strong>IPv4 filter</strong> and <strong>IPv6 filter</strong>.</p>
<p><a href="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Allow-remote-server-management-through-dialog.png?ssl=1" data-rel="lightbox-image-2" data-rl_title="" data-rl_caption="" title=""><img data-recalc-dims="1" loading="lazy" decoding="async" class="alignnone size-large wp-image-3733" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Allow-remote-server-management-through-dialog.png?resize=600%2C335&#038;ssl=1" alt="Group Policy - Allow remote server management through dialog" width="600" height="335" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Allow-remote-server-management-through-dialog.png?resize=600%2C335&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Allow-remote-server-management-through-dialog.png?resize=250%2C140&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Allow-remote-server-management-through-dialog.png?resize=450%2C251&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Allow-remote-server-management-through-dialog.png?w=700&amp;ssl=1 700w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Allow-remote-server-management-through-dialog.png?resize=520%2C290&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Allow-remote-server-management-through-dialog.png?resize=360%2C201&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Allow-remote-server-management-through-dialog.png?resize=100%2C56&amp;ssl=1 100w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a></p>
<p>Click OK to close the window.</p>
<p>* If you don&#8217;t see Windows Remote Management in your Group Policy Editor, there is probably the WinRM admin template missing in your Active Directory.</p>
<h3>2. Enable WinRM service</h3>
<p>Go to <strong>Computer Configuration &gt; Policies &gt; Preferences &gt; Control Panel Settings</strong>.</p>
<p>And right-click <strong>Services</strong> and choose <strong>New &gt; Service</strong>.</p>
<p><a href="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-service.png?ssl=1" data-rel="lightbox-image-3" data-rl_title="" data-rl_caption="" title=""><img data-recalc-dims="1" loading="lazy" decoding="async" class="alignnone size-full wp-image-3734" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-service.png?resize=484%2C481&#038;ssl=1" alt="Group Policy - New service" width="484" height="481" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-service.png?w=484&amp;ssl=1 484w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-service.png?resize=250%2C248&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-service.png?resize=450%2C447&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-service.png?resize=360%2C358&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-service.png?resize=100%2C99&amp;ssl=1 100w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-service.png?resize=150%2C150&amp;ssl=1 150w" sizes="auto, (max-width: 484px) 100vw, 484px" /></a></p>
<p>Choose <strong>Automatic (Delayed Start)</strong> as startup type, pick <strong>WinRM</strong> as the service name, set <strong>Start service</strong> as the action.</p>
<p><a href="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Service-WinRM.png?ssl=1" data-rel="lightbox-image-4" data-rl_title="" data-rl_caption="" title=""><img data-recalc-dims="1" loading="lazy" decoding="async" class="alignnone size-full wp-image-3735" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Service-WinRM.png?resize=414%2C462&#038;ssl=1" alt="Group Policy - New Service WinRM" width="414" height="462" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Service-WinRM.png?w=414&amp;ssl=1 414w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Service-WinRM.png?resize=250%2C279&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Service-WinRM.png?resize=360%2C402&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Service-WinRM.png?resize=100%2C112&amp;ssl=1 100w" sizes="auto, (max-width: 414px) 100vw, 414px" /></a></p>
<p>Click OK to save the change.</p>
<h3>3. Set up the Firewall rule</h3>
<p>Go to <strong>Computer Configuration &gt; Policies &gt; Security Settings &gt; Windows Firewall with Advanced Security.</strong></p>
<p>And right-click <strong>Inbound Rules</strong> and start a <strong>New Rule&#8230;</strong></p>
<p><a href="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Inbound-Rule.png?ssl=1" data-rel="lightbox-image-5" data-rl_title="" data-rl_caption="" title=""><img data-recalc-dims="1" loading="lazy" decoding="async" class="alignnone size-full wp-image-3737" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Inbound-Rule.png?resize=535%2C503&#038;ssl=1" alt="Group Policy - New Inbound Rule" width="535" height="503" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Inbound-Rule.png?w=535&amp;ssl=1 535w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Inbound-Rule.png?resize=250%2C235&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Inbound-Rule.png?resize=450%2C423&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Inbound-Rule.png?resize=520%2C489&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Inbound-Rule.png?resize=360%2C338&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Inbound-Rule.png?resize=100%2C94&amp;ssl=1 100w" sizes="auto, (max-width: 535px) 100vw, 535px" /></a></p>
<p>Select <strong>Predefined:</strong> option and choose <strong>Windows Remote Management</strong> from the list (not the one with compatible). Click Next.</p>
<p><a href="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Inbound-Rule-wizard-1.png?ssl=1" data-rel="lightbox-image-6" data-rl_title="" data-rl_caption="" title=""><img data-recalc-dims="1" loading="lazy" decoding="async" class="alignnone size-large wp-image-3738" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Inbound-Rule-wizard-1.png?resize=600%2C485&#038;ssl=1" alt="Group Policy - New Inbound Rule wizard 1" width="600" height="485" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Inbound-Rule-wizard-1.png?resize=600%2C485&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Inbound-Rule-wizard-1.png?resize=250%2C202&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Inbound-Rule-wizard-1.png?resize=450%2C363&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Inbound-Rule-wizard-1.png?resize=700%2C565&amp;ssl=1 700w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Inbound-Rule-wizard-1.png?resize=520%2C420&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Inbound-Rule-wizard-1.png?resize=360%2C291&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Inbound-Rule-wizard-1.png?resize=100%2C81&amp;ssl=1 100w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-New-Inbound-Rule-wizard-1.png?w=728&amp;ssl=1 728w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a></p>
<p>Select the one for <strong>Domain and Private</strong>, and <strong>Allow the connection</strong> option at the next screen. And click Finish.</p>
<p>To reduce the exposure to this service we can remove the <strong>Private</strong> and only leave only <strong>Domain</strong> profile in place. Double-click the new rule we just created, go to <strong>Advanced</strong> tab and uncheck the <strong>Private</strong> option from the Profiles section.</p>
<p><a href="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Rule-to-remove-Private.png?ssl=1" data-rel="lightbox-image-7" data-rl_title="" data-rl_caption="" title=""><img data-recalc-dims="1" loading="lazy" decoding="async" class="alignnone size-full wp-image-3739" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Rule-to-remove-Private.png?resize=448%2C210&#038;ssl=1" alt="Group Policy - Rule to remove Private" width="448" height="210" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Rule-to-remove-Private.png?w=448&amp;ssl=1 448w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Rule-to-remove-Private.png?resize=250%2C117&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Rule-to-remove-Private.png?resize=360%2C169&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/Group-Policy-Rule-to-remove-Private.png?resize=100%2C47&amp;ssl=1 100w" sizes="auto, (max-width: 448px) 100vw, 448px" /></a></p>
<h2>Test it out</h2>
<p>You can scan the port 5985 on the remote computer to see if it responses, like below:</p>
<pre class="">Test-NetConnection -ComputerName remote_computer -Port Port#</pre>
<p>Oh, simply open a PowerShell session on the remote computer and see if it succeeds.</p>
<pre class="">Enter-PSSession -ComputerName remote_computer</pre>
<p><a href="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/WinRM-est.png?ssl=1" data-rel="lightbox-image-8" data-rl_title="" data-rl_caption="" title=""><img data-recalc-dims="1" loading="lazy" decoding="async" class="alignnone size-large wp-image-3741" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/WinRM-est-600x196.png?resize=600%2C196&#038;ssl=1" alt="WinRM - test" width="600" height="196" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/WinRM-est.png?resize=600%2C196&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/WinRM-est.png?resize=250%2C82&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/WinRM-est.png?resize=450%2C147&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/WinRM-est.png?resize=768%2C251&amp;ssl=1 768w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/WinRM-est.png?resize=700%2C229&amp;ssl=1 700w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/WinRM-est.png?resize=520%2C170&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/WinRM-est.png?resize=360%2C118&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/WinRM-est.png?resize=100%2C33&amp;ssl=1 100w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/01/WinRM-est.png?w=845&amp;ssl=1 845w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a></p>The post <a href="https://www.kjctech.net/how-to-enable-winrm-with-domain-group-policy-for-powershell-remoting/">How To Enable WinRM with Domain Group Policy for PowerShell Remoting</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/how-to-enable-winrm-with-domain-group-policy-for-powershell-remoting/feed/</wfw:commentRss>
			<slash:comments>10</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">3729</post-id>	</item>
		<item>
		<title>Install .Net Framework 3.5 on Windows 8.1 &#038; 10 with WSUS</title>
		<link>https://www.kjctech.net/install-net-framework-3-5-on-windows-8-1-10-with-wsus/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=install-net-framework-3-5-on-windows-8-1-10-with-wsus</link>
					<comments>https://www.kjctech.net/install-net-framework-3-5-on-windows-8-1-10-with-wsus/#comments</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Sat, 16 Apr 2016 00:20:03 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[.Net Framework]]></category>
		<category><![CDATA[group policy]]></category>
		<category><![CDATA[Windows 10]]></category>
		<category><![CDATA[Windows 8.1]]></category>
		<category><![CDATA[wsus]]></category>
		<guid isPermaLink="false">http://www.kjctech.net/?p=2910</guid>

					<description><![CDATA[<p>Installing .Net Framework 3.5 on Windows 8.1 and 10 is only through Programs and Features in Control Panel. But if the computer is configured to get the windows updates through WSUS, installing through Control Panel will most likely fail, no matter what else you try. There is a Group Policy setting that you can alter to bypass getting the updates through [&#8230;]</p>
The post <a href="https://www.kjctech.net/install-net-framework-3-5-on-windows-8-1-10-with-wsus/">Install .Net Framework 3.5 on Windows 8.1 & 10 with WSUS</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>Installing .Net Framework 3.5 on Windows 8.1 and 10 is only through <strong>Programs and Features</strong> in <strong>Control Panel</strong>. But if the computer is configured to get the windows updates through WSUS, installing through Control Panel will most likely fail, no matter what else you try.</p>
<p>There is a Group Policy setting that you can alter to bypass getting the updates through WSUS.</p>
<p>Open <strong>Group Policy Editor</strong> (local or in AD), go to <strong>Computer Configuration → Policies → Administrative Templates → System</strong>, and open a setting called <strong>Specify settings for optional component installation&#8230;</strong> on the right-side panel.</p>
<p><a href="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/04/Group-Policy-Specify-settings-for-optional-component-installation.png" data-rel="lightbox-image-0" data-rl_title="" data-rl_caption="" title=""><img data-recalc-dims="1" loading="lazy" decoding="async" class="alignnone size-large wp-image-2912" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/04/Group-Policy-Specify-settings-for-optional-component-installation-600x549.png?resize=600%2C549" alt="Group Policy - Specify settings for optional component installation" width="600" height="549" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/04/Group-Policy-Specify-settings-for-optional-component-installation.png?resize=600%2C549&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/04/Group-Policy-Specify-settings-for-optional-component-installation.png?resize=250%2C229&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/04/Group-Policy-Specify-settings-for-optional-component-installation.png?resize=450%2C412&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/04/Group-Policy-Specify-settings-for-optional-component-installation.png?w=700&amp;ssl=1 700w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/04/Group-Policy-Specify-settings-for-optional-component-installation.png?resize=520%2C476&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/04/Group-Policy-Specify-settings-for-optional-component-installation.png?resize=360%2C330&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/04/Group-Policy-Specify-settings-for-optional-component-installation.png?resize=100%2C92&amp;ssl=1 100w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a></p>
<p>Then select <strong>Enabled</strong>, and check the option &#8220;<strong>Contact Windows Update directly to download repair content instead of WSUS</strong>&#8221;</p>
<p><a href="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/04/Group-Policy-Specify-settings-for-optional-component-installation.png" data-rel="lightbox-image-0" data-rl_title="" data-rl_caption="" title=""><img data-recalc-dims="1" loading="lazy" decoding="async" class="alignnone size-large wp-image-2912" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/04/Group-Policy-Specify-settings-for-optional-component-installation-600x549.png?resize=600%2C549" alt="Group Policy - Specify settings for optional component installation" width="600" height="549" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/04/Group-Policy-Specify-settings-for-optional-component-installation.png?resize=600%2C549&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/04/Group-Policy-Specify-settings-for-optional-component-installation.png?resize=250%2C229&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/04/Group-Policy-Specify-settings-for-optional-component-installation.png?resize=450%2C412&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/04/Group-Policy-Specify-settings-for-optional-component-installation.png?w=700&amp;ssl=1 700w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/04/Group-Policy-Specify-settings-for-optional-component-installation.png?resize=520%2C476&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/04/Group-Policy-Specify-settings-for-optional-component-installation.png?resize=360%2C330&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/04/Group-Policy-Specify-settings-for-optional-component-installation.png?resize=100%2C92&amp;ssl=1 100w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a></p>
<p>Click OK and done. Run &#8220;gpupdate /force&#8221; to update the changes on the workstations to avoid the reboot.</p>The post <a href="https://www.kjctech.net/install-net-framework-3-5-on-windows-8-1-10-with-wsus/">Install .Net Framework 3.5 on Windows 8.1 & 10 with WSUS</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/install-net-framework-3-5-on-windows-8-1-10-with-wsus/feed/</wfw:commentRss>
			<slash:comments>10</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2910</post-id>	</item>
	</channel>
</rss>
