<?xml version="1.0"?>
<rss version="2.0"><channel><title>Windows News Latest Topics</title><link>https://www.windows-noob.com/forums/forum/7-windows-news/</link><description>Windows News Latest Topics</description><language>en</language><item><title>Fixing: &#x201C;Total identified Windows installations: 0&#x201D;</title><link>https://www.windows-noob.com/forums/topic/23946-fixing-%E2%80%9Ctotal-identified-windows-installations-0%E2%80%9D/</link><description><![CDATA[<h1>
	Introduction
</h1>

<p>
	I bought a second hand replacement laptop for a mis-behaving Surface Pro 4 (jittery screen) and to save my time (the computer wasn’t mine) I decided to image it. Anyway, long story short, after I restored 82GB of data on the target laptop (HP 830 G5), I tried to boot it but got a HP bios error stating something like no operating system found, please reinstall the operating system.
</p>

<p>
	So I booted from some usb based Windows installation media and checked the partitions, all the data was there, Windows was there, it all looked good but obviously the boot loader was broken.
</p>

<p>
	I googled and found the following suggestions.
</p>

<pre class="ipsCode prettyprint lang-sql prettyprinted" id="ips_uid_2400_5" style=""><span class="typ">Bootrec</span><span class="pln"> </span><span class="pun">/</span><span class="pln">fixmbr

</span><span class="typ">Bootrec</span><span class="pln"> </span><span class="pun">/</span><span class="pln">fixboot </span><span class="pun">(</span><span class="typ">Note</span><span class="pun">:</span><span class="pln"> </span><span class="typ">If</span><span class="pln"> </span><span class="kwd">this</span><span class="pln"> fails </span><span class="kwd">with</span><span class="pln"> access denied </span><span class="kwd">try</span><span class="pln"> BOOTSECT </span><span class="pun">/</span><span class="pln">NT60 SYS </span><span class="kwd">and</span><span class="pln"> </span><span class="kwd">then</span><span class="pln"> issue the command again</span><span class="pun">)</span><span class="pln">

</span><span class="typ">Bootrec</span><span class="pln"> </span><span class="pun">/</span><span class="pln">scanos

</span><span class="typ">Bootrec</span><span class="pln"> </span><span class="pun">/</span><span class="pln">rebuildbcd</span></pre>

<p>
	The problem however, is that after issuing <strong>Bootrec /rebuildbcd</strong> it stated
</p>

<blockquote>
	<h3>
		“Total identified Windows installations: 0”
	</h3>
</blockquote>

<p>
	which of course, didn’t leave me feeling super confident that this would work. The value should be 1 at a minimum.
</p>

<p>
	Another quick google and the advice out there all stated something like the following…
</p>

<pre class="ipsCode prettyprint lang-sql prettyprinted" id="ips_uid_2400_7" style=""><span class="pln">bcdedit </span><span class="pun">/</span><span class="kwd">export</span><span class="pln"> C</span><span class="pun">:</span><span class="pln">\BCD_Backup

C</span><span class="pun">:</span><span class="pln">

cd boot</span></pre>

<p>
	But that gave me the following error
</p>

<blockquote>
	<h3>
		“The system cannot find the path specified”
	</h3>
</blockquote>

<p>
	because there was no <strong>C:\boot</strong> folder. This folder doesn’t exist as this computer (Windows 10) is UEFI based and not legacy based as I guess the gazillion guides out there assumed.
</p>

<p>
	Due to the format change (legacy versus UEFI) this computer uses an EFI partition to store the boot files, but that partition doesn’t have a drive letter and the path to the BCD is different to all the guides out there, so how do you fix that ?
</p>

<p>
	To find the efi partition, boot from the Windows installation disc, and select <strong>Install. </strong>Next click on <strong>Repair your computer</strong> then select -&gt;<strong>Advanced Options</strong> -&gt;<strong>Troubleshoot</strong> -&gt;<strong>Command Prompt</strong>.
</p>

<p>
	Once done, launch diskpart and then select the disk on your computer (most likely disk 0) like so
</p>

<pre class="ipsCode prettyprint lang-sql prettyprinted" id="ips_uid_2400_9" style=""><span class="pln">diskpart
sel disk </span><span class="lit">0</span><span class="pln">
list vol</span></pre>

<p>
	that will show you the partitions on your computer. Then I selected each of the two SYSTEM partitions, and assigned a drive letter to them so I could view the files on them using
</p>

<pre class="ipsCode prettyprint lang-sql prettyprinted" id="ips_uid_2400_11" style=""><span class="pln">sel vol x </span><span class="pun">(</span><span class="kwd">where</span><span class="pln"> x </span><span class="kwd">is</span><span class="pln"> the volume number</span><span class="pun">)</span><span class="pln">

assign</span></pre>

<p>
	After assigning a drive letter and exiting diskpart I could browse to that drive <strong>in another command prompt</strong> by typing it’s drive letter, for example:
</p>

<pre class="ipsCode prettyprint lang-sql prettyprinted" id="ips_uid_2400_13" style=""><span class="pln">D</span><span class="pun">:</span></pre>

<p>
	and view the files on it using:
</p>

<pre class="ipsCode prettyprint lang-sql prettyprinted" id="ips_uid_2400_15" style=""><span class="pln"> DIR</span></pre>

<p>
	I did this a few times to identify the correct drive, after I was done with that drive I removed the drive letter in the<strong> diskpart command prompt</strong> using:
</p>

<pre class="ipsCode prettyprint lang-sql prettyprinted" id="ips_uid_2400_17" style=""><span class="kwd">remove</span></pre>

<p>
	Once I identified the EFI partition I navigated to where the bcd files were located using:
</p>

<pre class="ipsCode prettyprint lang-sql prettyprinted" id="ips_uid_2400_19" style=""><span class="pln">cd D</span><span class="pun">:</span><span class="pln">\EFI\Microsoft\Boot</span></pre>

<p>
	and that path was <strong>D:\EFI\Microsoft\Boot</strong> as shown below, note your EFI partition may end up on a different drive letter using the ASSIGN command.
</p>

<p>
	 
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://www.windows-noob.com/forums/uploads/monthly_2026_05/bcd-files-on-EFI-system.jpg.4ccff5b6fd4e9a62edddfa57650b2dd6.jpg" data-fileid="24515" data-fileext="jpg" rel=""><img class="ipsImage ipsImage_thumbnailed" data-fileid="24515" data-ratio="75.00" data-unique="casbpiug9" width="1000" alt="bcd-files-on-EFI-system.jpg" src="https://www.windows-noob.com/forums/uploads/monthly_2026_05/bcd-files-on-EFI-system.thumb.jpg.c1fdc0ba6fb5eb3b2ee619ae3ea58927.jpg"></a>
</p>

<p>
	Now that I found the BCD, shown above, I removed the SYSTEM, READ ONLY and HIDDEN attributes from it before renaming it to <strong>bcd.old</strong> and then rebuilt the BCD.
</p>

<pre class="ipsCode prettyprint lang-sql prettyprinted" id="ips_uid_2400_21" style=""><span class="pln">attrib bcd </span><span class="pun">-</span><span class="pln">s </span><span class="pun">-</span><span class="pln">h </span><span class="pun">-</span><span class="pln">r
ren bcd bcd</span><span class="pun">.</span><span class="pln">old
bootrec </span><span class="pun">/</span><span class="typ">RebuildBcd</span></pre>

<p>
	And that was it ,
</p>

<p>
	all I had to do before rebooting was to un-assign the drive letter using the <strong>remove</strong> command.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://www.windows-noob.com/forums/uploads/monthly_2026_05/unnamed1.jpg.a2cf9d1a38052029315b3c6a6c06876f.jpg" data-fileid="24516" data-fileext="jpg" rel=""><img class="ipsImage ipsImage_thumbnailed" data-fileid="24516" data-ratio="75.00" data-unique="6keaa22yk" width="1000" alt="unnamed1.jpg" src="https://www.windows-noob.com/forums/uploads/monthly_2026_05/unnamed1.thumb.jpg.3422193880897e5996f2df65d81bc0a8.jpg"></a>
</p>

<p>
	 
</p>

<p>
	and finally, reboot the computer cleanly using
</p>

<pre class="ipsCode prettyprint lang-sql prettyprinted" id="ips_uid_2400_23" style=""><span class="pln">wpeutil reboot</span></pre>

<p>
	I hope you found this useful, if you do please leave a comment and share this with others
</p>

<p>
	cheers
</p>

<p>
	niall
</p>
]]></description><guid isPermaLink="false">23946</guid><pubDate>Thu, 14 May 2026 20:25:06 +0000</pubDate></item><item><title>Quick Assist is being replaced with a Microsoft Store version (requiring local admin permissions to install)</title><link>https://www.windows-noob.com/forums/topic/22841-quick-assist-is-being-replaced-with-a-microsoft-store-version-requiring-local-admin-permissions-to-install/</link><description><![CDATA[<p>
	If you (like me) have used Quick Assist in the past you might be disappointed to know that the built in Windows 10/11 app is going to be killed off in the coming days and replaced with Quick Assist from the Microsoft Store.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" data-fileext="png" data-fileid="23089" href="https://www.windows-noob.com/forums/uploads/monthly_2022_05/image.png.bf2bd7becb5de531d639693e8d6ce2cf.png" rel=""><img alt="image.png" class="ipsImage ipsImage_thumbnailed" data-fileid="23089" data-ratio="86.91" data-unique="7zydzp4ou" width="863" src="https://www.windows-noob.com/forums/uploads/monthly_2022_05/image.thumb.png.9787b40f18e066c6ff1f06c74e066fb5.png"></a>
</p>

<p>
	 
</p>

<p>
	If you start the Quick Assist app today you'll see something like this (taken from my Windows 11 computer).
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" data-fileext="png" data-fileid="23088" href="https://www.windows-noob.com/forums/uploads/monthly_2022_05/image.png.3a758808341daccabe9ead2ff6840724.png" rel=""><img alt="image.png" class="ipsImage ipsImage_thumbnailed" data-fileid="23088" data-ratio="148.51" data-unique="j6cuq42c0" width="505" src="https://www.windows-noob.com/forums/uploads/monthly_2022_05/image.thumb.png.7973546bd7dd29e4f4e19abf8ba048da.png"></a>
</p>

<p>
	the text below is taken from the <a href="https://insider.office.com/en-us/blog/remote-assistance-with-quick-assist-is-changing" rel="external nofollow">official announcement</a>.
</p>

<h3>
	 
</h3>

<blockquote class="ipsQuote" data-gramm="false" data-ipsquote="">
	<div class="ipsQuote_citation">
		Quote
	</div>

	<div class="ipsQuote_contents ipsClearfix" data-gramm="false">
		<p>
			 
		</p>

		<h3>
			Remote assistance with Quick Assist
		</h3>

		<p>
			Quick Assist is an app in Windows 10 and Windows 11 that enables you to receive or provide assistance with your PC over a remote connection. The current built-in Quick Assist app is reaching end of service. 
		</p>

		<p>
			To keep your remote assistance sessions secure, you will need to download the new Quick Assist from the <a href="https://www.microsoft.com/en-us/p/quick-assist/9p7bp5vnwkx5#activetab=pivot:overviewtab" rel="external nofollow">Microsoft Store</a>.
		</p>

		<p>
			 
		</p>
	</div>
</blockquote>

<p>
	 
</p>

<p>
	<span style="font-size:24px;">Why is this a big deal ? </span>
</p>

<p>
	Well for a couple of reasons namely...
</p>

<ul><li>
		If you were supporting users in Windows Autopilot using <strong>CTRL+Windows key + Q</strong>, then that built in ability will be gone.
	</li>
	<li>
		If your users are <strong>Standard Users </strong>(and they should be) then they won't be able to install the app from the Store as it requires local admin permissions. Below screenshot is from a Windows 10 vm running as a standard user.
	</li>
</ul><p>
	<a class="ipsAttachLink ipsAttachLink_image" data-fileext="png" data-fileid="23091" href="https://www.windows-noob.com/forums/uploads/monthly_2022_05/image.png.4c09fb10e946fa95d2619154c6158063.png" rel=""><img alt="image.png" class="ipsImage ipsImage_thumbnailed" data-fileid="23091" data-ratio="75.00" data-unique="douo0uttt" width="1000" src="https://www.windows-noob.com/forums/uploads/monthly_2022_05/image.thumb.png.77d9f20495fd6bff7f1fa5f66fab6642.png"></a>
</p>

<ul><li>
		If the computer you are supporting has Store app issues (and that's a common problem, for example store apps not working after a Cumulative update was installed and waiting on a reboot).
	</li>
	<li>
		The new app uses characters as well as numbers, and that might confuse some people
	</li>
</ul><p>
	 
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" data-fileext="png" data-fileid="23090" href="https://www.windows-noob.com/forums/uploads/monthly_2022_05/image.png.77bd81caf9251a2ab1527bb3345357bb.png" rel=""><img alt="image.png" class="ipsImage ipsImage_thumbnailed" data-fileid="23090" data-ratio="158.56" data-unique="xwxb50cku" width="473" src="https://www.windows-noob.com/forums/uploads/monthly_2022_05/image.thumb.png.b0e497b968b14cd4ad4797476ec0d2b7.png"></a>
</p>

<p>
	Ironically, the new Store apps provided instructions say nothing about the fact that the user has to download the Store app to get support.
</p>

<div class="spacer-20-bottom instruction-step" ng-repeat="step in model.additionalInfo track by $index" style='box-sizing: border-box; outline: 0px; margin-bottom: 16px !important; display: table; color: rgb(0, 0, 0); font-family: "Segoe UI", "Segoe UI Web", "Segoe UI Symbol", "Helvetica Neue", "BBAlpha Sans", "S60 Sans", Arial, sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	<p class="instruction-step-text" focus-item="" style="box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; outline: 0px; font-size: 0.9375rem; line-height: 1.33333; font-weight: 400; display: table-cell;" tabindex="0">
		 
	</p>

	<blockquote class="ipsQuote" data-gramm="false" data-ipsquote="">
		<div class="ipsQuote_citation">
			Quote
		</div>

		<div class="ipsQuote_contents ipsClearfix" data-gramm="false">
			<p>
				 
			</p>

			<div class="spacer-20-bottom instruction-step" ng-repeat="step in model.additionalInfo track by $index" style='box-sizing: border-box; outline: 0px; margin-bottom: 16px !important; display: table; color: rgb(0, 0, 0); font-family: "Segoe UI", "Segoe UI Web", "Segoe UI Symbol", "Helvetica Neue", "BBAlpha Sans", "S60 Sans", Arial, sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
				<p class="instruction-step-text" focus-item="" style="box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; outline: 0px; font-size: 0.9375rem; line-height: 1.33333; font-weight: 400; display: table-cell;" tabindex="0">
					Give the security code to the person you’re helping and tell them to follow these steps:
				</p>
			</div>

			<div class="spacer-20-bottom instruction-step" ng-repeat="step in model.additionalInfo track by $index" style='box-sizing: border-box; outline: 0px; margin-bottom: 16px !important; display: table; color: rgb(0, 0, 0); font-family: "Segoe UI", "Segoe UI Web", "Segoe UI Symbol", "Helvetica Neue", "BBAlpha Sans", "S60 Sans", Arial, sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
				<span class="instruction-step-index" ng-if="step | isListItem" style="box-sizing: border-box; outline: 0px; display: table-cell; padding-right: 4px;">1.</span>

				<p class="instruction-step-text" focus-item="" style="box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; outline: 0px; font-size: 0.9375rem; line-height: 1.33333; font-weight: 400; display: table-cell;" tabindex="0">
					Open the Start menu go to Windows Accessories -&gt; Quick Assist or type Quick Assist in the search bar and select the Quick Assist app to launch it.
				</p>
			</div>

			<div class="spacer-20-bottom instruction-step" ng-repeat="step in model.additionalInfo track by $index" style='box-sizing: border-box; outline: 0px; margin-bottom: 16px !important; display: table; color: rgb(0, 0, 0); font-family: "Segoe UI", "Segoe UI Web", "Segoe UI Symbol", "Helvetica Neue", "BBAlpha Sans", "S60 Sans", Arial, sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
				<span class="instruction-step-index" ng-if="step | isListItem" style="box-sizing: border-box; outline: 0px; display: table-cell; padding-right: 4px;">2.</span>

				<p class="instruction-step-text" focus-item="" style="box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; outline: 0px; font-size: 0.9375rem; line-height: 1.33333; font-weight: 400; display: table-cell;" tabindex="0">
					Accept the privacy policy, if prompted.
				</p>
			</div>

			<div class="spacer-20-bottom instruction-step" ng-repeat="step in model.additionalInfo track by $index" style='box-sizing: border-box; outline: 0px; margin-bottom: 16px !important; display: table; color: rgb(0, 0, 0); font-family: "Segoe UI", "Segoe UI Web", "Segoe UI Symbol", "Helvetica Neue", "BBAlpha Sans", "S60 Sans", Arial, sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
				<span class="instruction-step-index" ng-if="step | isListItem" style="box-sizing: border-box; outline: 0px; display: table-cell; padding-right: 4px;">3.</span>

				<p class="instruction-step-text" focus-item="" style="box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; outline: 0px; font-size: 0.9375rem; line-height: 1.33333; font-weight: 400; display: table-cell;" tabindex="0">
					Enter the code provided in Code from assistant and click Share screen.
				</p>
			</div>

			<div class="spacer-20-bottom instruction-step" ng-repeat="step in model.additionalInfo track by $index" style='box-sizing: border-box; outline: 0px; margin-bottom: 16px !important; display: table; color: rgb(0, 0, 0); font-family: "Segoe UI", "Segoe UI Web", "Segoe UI Symbol", "Helvetica Neue", "BBAlpha Sans", "S60 Sans", Arial, sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
				<span class="instruction-step-index" ng-if="step | isListItem" style="box-sizing: border-box; outline: 0px; display: table-cell; padding-right: 4px;">4.</span>

				<p class="instruction-step-text" focus-item="" style="box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; outline: 0px; font-size: 0.9375rem; line-height: 1.33333; font-weight: 400; display: table-cell;" tabindex="0">
					Verify that the person trying to help you is who you expected and accept the request.
				</p>
			</div>

			<div class="spacer-20-bottom instruction-step" ng-repeat="step in model.additionalInfo track by $index" style='box-sizing: border-box; outline: 0px; margin-bottom: 16px !important; display: table; color: rgb(0, 0, 0); font-family: "Segoe UI", "Segoe UI Web", "Segoe UI Symbol", "Helvetica Neue", "BBAlpha Sans", "S60 Sans", Arial, sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
				<p class="instruction-step-text" focus-item="" style="box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; outline: 0px; font-size: 0.9375rem; line-height: 1.33333; font-weight: 400; display: table-cell;" tabindex="0">
					Wait for your devices to connect.
				</p>
			</div>

			<p>
				 
			</p>
		</div>
	</blockquote>

	<p class="instruction-step-text" focus-item="" style="box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; outline: 0px; font-size: 0.9375rem; line-height: 1.33333; font-weight: 400; display: table-cell;" tabindex="0">
		 
	</p>
</div>

<p>
	Some think this is a good thing as it means only admins can install the remote assistance app, but I think it'll just push people towards alternatives
</p>

<p>
	What are your thoughts on this ?
</p>
]]></description><guid isPermaLink="false">22841</guid><pubDate>Tue, 17 May 2022 17:28:19 +0000</pubDate></item><item><title>Update now to protect yourself from the next WannaCry</title><link>https://www.windows-noob.com/forums/topic/16699-update-now-to-protect-yourself-from-the-next-wannacry/</link><description><![CDATA[<p>
	WannaCry was a disaster that could have been prevented if people took notice. If you didn’t hear about it you must have been asleep, here is a <a href="https://en.wikipedia.org/wiki/WannaCry_ransomware_attack" rel="external nofollow">refresher</a>.
</p>

<p style="text-align: center;">
	<a href="https://www.niallbrady.com/wp-content/uploads/2019/05/Wana_Decrypt0r_screenshot.png" rel="external"><img alt="Wana_Decrypt0r_screenshot.png" class="aligncenter size-full wp-image-5084" data-ratio="75.50" height="453" sizes="(max-width: 600px) 100vw, 600px" srcset="https://www.niallbrady.com/wp-content/uploads/2019/05/Wana_Decrypt0r_screenshot.png, https://www.niallbrady.com/wp-content/uploads/2019/05/Wana_Decrypt0r_screenshot-300x227.png" width="600" src="https://www.niallbrady.com/wp-content/uploads/2019/05/Wana_Decrypt0r_screenshot.png"></a>
</p>

<p>
	 
</p>

<p>
	After WannaCry, most businesses took notice and updated their operating systems, patched them and took measures to avoid a further outbreak. But today, May 14th, 2019, Microsoft has released information that warns of yet another WannaCry-like worm.
</p>

<p>
	<span style="color:#e74c3c;"><strong>Note</strong>: If you are using Windows 10, you are OK, you are not vulnerable to this CVE. If not, and if you are still on Windows 7 then start upgrading to Windows 10 by using the Inplace Upgrade Task Sequence I explain about </span><a href="https://www.niallbrady.com/2019/01/06/forcefully-upgrading-windows-7-or-windows-10-to-a-newer-version-of-windows-10/" rel="external"><span style="color:#e74c3c;">here</span></a><span style="color:#e74c3c;"> or if you cannot upgrade immediately, then patch Windows 7 to protect it from this vulnerability.</span>
</p>

<blockquote>
	<p>
		<em>Vulnerable in-support systems include Windows 7, Windows Server 2008 R2, and Windows Server 2008. Downloads for in-support versions of Windows can be found in the <a href="https://portal.msrc.microsoft.com/en-US/security-guidance/advisory/CVE-2019-0708" rel="external nofollow">Microsoft Security Update Guide</a>. Customers who use an in-support version of Windows and have automatic updates enabled are automatically protected.</em>
	</p>

	<p>
		<em>Out-of-support systems include Windows 2003 and Windows XP. If you are on an out-of-support version, the best way to address this vulnerability is to upgrade to the latest version of Windows. Even so, we are making fixes available for these out-of-support versions of Windows in <a href="https://support.microsoft.com/help/4500705" rel="external nofollow">KB4500705</a>.</em>
	</p>
</blockquote>

<p>
	If however you are running Windows XP, yes…. that old unsupported operating system then take warning !
</p>

<p>
	Today, Microsoft has warned against the wormable capabilities from this CVE (critical Remote Code Execution vulnerability) and they blogged about what to do to avoid it happening to you.
</p>

<p style="text-align: center;">
	<a href="https://www.niallbrady.com/wp-content/uploads/2019/05/Virus_Blaster.jpg" rel="external"><img alt="Virus_Blaster.jpg" class="aligncenter size-full wp-image-5083" data-ratio="59.76" height="251" sizes="(max-width: 420px) 100vw, 420px" srcset="https://www.niallbrady.com/wp-content/uploads/2019/05/Virus_Blaster.jpg, https://www.niallbrady.com/wp-content/uploads/2019/05/Virus_Blaster-300x179.jpg" width="420" src="https://www.niallbrady.com/wp-content/uploads/2019/05/Virus_Blaster.jpg"></a>
</p>

<p>
	Read that blog post here: <a href="https://blogs.technet.microsoft.com/msrc/2019/05/14/prevent-a-worm-by-updating-remote-desktop-services-cve-2019-0708/" ipsnoembed="true" rel="external nofollow">https://blogs.technet.microsoft.com/msrc/2019/05/14/prevent-a-worm-by-updating-remote-desktop-services-cve-2019-0708/</a>
</p>

<p>
	It’s very clear from their text that this is all about protecting customers from the next worm, <strong>so pay attention</strong> and if you have old operating systems that are in support and affected, then update immediately.
</p>

<p>
	<span style="color: #ff0000;">Note: This is so serious that even <strong>Windows XP</strong> and <strong>Windows Server 2003</strong> are getting updates from Microsoft for this vulnerability. You can download those updates from Microsoft Catalog here.</span>
</p>

<p>
	<a href="https://support.microsoft.com/en-ca/help/4500705/customer-guidance-for-cve-2019-0708" ipsnoembed="true" rel="external nofollow">https://support.microsoft.com/en-ca/help/4500705/customer-guidance-for-cve-2019-0708</a>
</p>]]></description><guid isPermaLink="false">16699</guid><pubDate>Wed, 15 May 2019 08:26:53 +0000</pubDate></item><item><title>Windows 10 Enterprise, version 1809 (updated Sept &#x2019;18) is released, and Windows Server 2019 is Generally Available !</title><link>https://www.windows-noob.com/forums/topic/16395-windows-10-enterprise-version-1809-updated-sept-%E2%80%9918-is-released-and-windows-server-2019-is-generally-available/</link><description><![CDATA[<div class="entry-content">
	<p>
		It’s finally released, the long awaited Windows 10 Enterprise, version 1809 (otherwise known as <strong>The Windows 10 October 2018 Update</strong>) is available for download on Microsoft’s MSDN site, also to note, the Windows 10 Enterprise LTSC 2019 version is released.
	</p>

	<p>
		<a href="https://www.niallbrady.com/wp-content/uploads/2018/10/windows-10-1809.png" rel="external"><img alt="windows-10-1809-1024x684.png" class="alignnone size-large wp-image-4654" height="428" sizes="(max-width: 640px) 100vw, 640px" src="https://www.niallbrady.com/wp-content/uploads/2018/10/windows-10-1809-1024x684.png" srcset="https://www.niallbrady.com/wp-content/uploads/2018/10/windows-10-1809-1024x684.png, https://www.niallbrady.com/wp-content/uploads/2018/10/windows-10-1809-300x200.png, https://www.niallbrady.com/wp-content/uploads/2018/10/windows-10-1809-768x513.png, https://www.niallbrady.com/wp-content/uploads/2018/10/windows-10-1809.png" width="640"></a>
	</p>

	<p>
		There is a corresponding download for Windows 10 Enterprise version 1809 also on VLSC however it’s for ARM Architecture only (64bit), so probably not of much use to you and me…
	</p>

	<p>
		<a href="https://www.niallbrady.com/wp-content/uploads/2018/10/1809-out.png" rel="external"><img alt="1809-out.png" class="alignnone size-full wp-image-4653" height="687" sizes="(max-width: 947px) 100vw, 947px" src="https://www.niallbrady.com/wp-content/uploads/2018/10/1809-out.png" srcset="https://www.niallbrady.com/wp-content/uploads/2018/10/1809-out.png, https://www.niallbrady.com/wp-content/uploads/2018/10/1809-out-300x218.png, https://www.niallbrady.com/wp-content/uploads/2018/10/1809-out-768x557.png" width="947"></a>
	</p>

	<p>
		This release is packed with lots of interesting new features detailed <a href="https://blogs.windows.com/windowsexperience/2018/10/02/how-to-get-the-windows-10-october-2018-update/" rel="external nofollow">here</a>.
	</p>

	<p>
		Also released is the Windows ADK version 1809 <a href="https://docs.microsoft.com/en-us/windows-hardware/get-started/adk-install" rel="external nofollow">here.</a>
	</p>

	<p>
		And if that wasn’t enough, Windows Server 2019 is finally Generally Available (on MSDN),
	</p>

	<p>
		<a href="https://www.niallbrady.com/wp-content/uploads/2018/10/windows-Server-2019.png" rel="external"><img alt="windows-Server-2019-1024x221.png" class="alignnone size-large wp-image-4655" height="138" sizes="(max-width: 640px) 100vw, 640px" src="https://www.niallbrady.com/wp-content/uploads/2018/10/windows-Server-2019-1024x221.png" srcset="https://www.niallbrady.com/wp-content/uploads/2018/10/windows-Server-2019-1024x221.png, https://www.niallbrady.com/wp-content/uploads/2018/10/windows-Server-2019-300x65.png, https://www.niallbrady.com/wp-content/uploads/2018/10/windows-Server-2019-768x166.png, https://www.niallbrady.com/wp-content/uploads/2018/10/windows-Server-2019.png" width="640"></a>
	</p>

	<p>
		time to start downloading !
	</p>

	<p>
		For more info about the new release, please read this:
	</p>

	<p>
		<a href="https://techcommunity.microsoft.com/t5/Windows-IT-Pro-Blog/What-s-new-for-IT-pros-in-Windows-10-version-1809/ba-p/263909#www.windows-noob.com" rel="external nofollow">https://techcommunity.microsoft.com/t5/Windows-IT-Pro-Blog/What-s-new-for-IT-pros-in-Windows-10-version-1809/ba-p/263909</a>
	</p>

	<p>
		cheers
	</p>

	<p>
		niall
	</p>
</div>]]></description><guid isPermaLink="false">16395</guid><pubDate>Wed, 03 Oct 2018 07:05:02 +0000</pubDate></item><item><title>Introducing Web Authentication in Microsoft Edge</title><link>https://www.windows-noob.com/forums/topic/16313-introducing-web-authentication-in-microsoft-edge/</link><description><![CDATA[<p>
	Microsoft has introduced support for the <a href="https://w3c.github.io/webauthn/" rel="external nofollow">Web Authentication specification</a> in Microsoft Edge, enabling better, more secure user experiences and a passwordless experience on the web.
</p>

<p>
	With Web Authentication, Microsoft Edge users can sign in with their face, fingerprint, PIN, or portable <a href="https://fidoalliance.org/fido2/" rel="external nofollow">FIDO2</a> devices, leveraging strong public-key credentials instead of passwords.
</p>

<h1>
	A web without passwords
</h1>

<p>
	Staying secure on the web is more important than ever. We trust web sites to process credit card numbers, save addresses and personal information, and even to handle sensitive records like medical information. All this data is protected by an ancient security model—the password. But passwords are difficult to remember, and are fundamentally insecure—often re-used, and vulnerable to phishing and cracking.
</p>

<p>
	For these reasons, Microsoft has been leading the charge towards <a href="https://cloudblogs.microsoft.com/microsoftsecure/2018/05/01/building-a-world-without-passwords/" rel="external nofollow">a world without passwords</a>, with innovations like Windows Hello biometrics and pioneering work with the <a href="http://fidoalliance.org" rel="external nofollow">FIDO Alliance</a> to create an open standard for passwordless authentication – <a href="https://w3c.github.io/webauthn/" rel="external nofollow">Web Authentication</a>.
</p>

<p>
	We started this journey in 2016, when we shipped the industry’s <a href="https://blogs.windows.com/msedgedev/2016/04/12/a-world-without-passwords-windows-hello-in-microsoft-edge/" rel="external nofollow">first preview implementation of the Web Authentication API</a> in Microsoft Edge. Since then, we have been updating our implementation to as we worked with other vendors and the FIDO alliance to develop the standard. In March, the FIDO Alliance announced that the <a href="https://www.w3.org/blog/webauthn/2018/03/20/candidate-recommendation/" rel="external nofollow">Web Authentication APIs have reached Candidate Recommendation (CR)</a> status in the W3C, a major milestone for the maturity and interoperability of the specification.
</p>

<h1>
	Authenticators in Microsoft Edge
</h1>

<p>
	Beginning with <a href="https://blogs.windows.com/windowsexperience/2018/07/25/announcing-windows-10-insider-preview-build-17723-and-build-18204/" rel="external nofollow">build 17723</a>, Microsoft Edge supports the CR version of Web Authentication. Our implementation provides the most complete support for Web Authentication to date, with support for a wider variety of authenticators than other browsers.
</p>

<p>
	<a href="https://www.microsoft.com/en-us/windows/windows-hello" rel="external nofollow"><strong>Windows Hello</strong></a> allows users to authenticate without a password on any Windows 10 device, using biometrics—face and fingerprint recognition—or a PIN number to sign in to web sites. With Windows Hello face recognition, users can log in to sites that support Web Authentication in seconds, with just a glance.
</p>

<p>
	<img alt="Animation showing a purchase using Web Authentication via Windows Hello" class="aligncenter wp-image-23472 size-full" height="720" scale="0" src="https://blogs.windows.com/uploads/mswbprod/sites/33/2018/07/c7713645b5b01a02496d86be63adede2.gif" width="1080"></p>

<p>
	Users can also use external <a href="https://fidoalliance.org/fido2/" rel="external nofollow"><strong>FIDO2 security keys</strong></a> to authenticate with a removable device and your biometrics or PIN. For websites that are not ready to move to a completely passwordless model, backwards compatibility with <strong>FIDO U2F</strong> devices can provide a strong second factor in addition to a password.
</p>

<p>
	 
</p>

<p>
	via &gt; <a href="https://blogs.windows.com/msedgedev/2018/07/30/introducing-web-authentication-microsoft-edge/#windows-noob.com" rel="external nofollow">https://blogs.windows.com/msedgedev/2018/07/30/introducing-web-authentication-microsoft-edge</a>
</p>]]></description><guid isPermaLink="false">16313</guid><pubDate>Tue, 31 Jul 2018 20:12:24 +0000</pubDate></item><item><title>Windows 10 version 1803 is available for download</title><link>https://www.windows-noob.com/forums/topic/16171-windows-10-version-1803-is-available-for-download/</link><description><![CDATA[
<p>
	Windows 10 (code named Redstone 4) version 1803, is finally available for download on MSDN. This is the successor to Windows 10 Fall Creators Update (version 1709).
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" data-fileid="19697" href="https://www.windows-noob.com/forums/uploads/monthly_2018_04/5ae74b86ad6e8_windows101803.png.b4e86abba2e6fcc43ee62b1be8a3bff6.png" rel=""><img alt="windows 10 1803.png" class="ipsImage ipsImage_thumbnailed" data-fileid="19697" data-unique="6vf8f09av" src="https://www.windows-noob.com/forums/uploads/monthly_2018_04/5ae74b8c59560_windows101803.thumb.png.d7202ca677d51381ab018e72ec9b2e7e.png" style=""></a>
</p>

<p>
	It is also available for download here.
</p>

<p>
	<a href="https://www.microsoft.com/en-us/software-download/windows10" ipsnoembed="true" rel="external nofollow">https://www.microsoft.com/en-us/software-download/windows10</a>
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" data-fileid="19698" href="https://www.windows-noob.com/forums/uploads/monthly_2018_04/5ae74c491f708_onmicrosoftdotcom.png.be70f5ee8e758e8e08f311ac042ae968.png" rel=""><img alt="on microsoft dot com.png" class="ipsImage ipsImage_thumbnailed" data-fileid="19698" data-unique="fih5iy47y" src="https://www.windows-noob.com/forums/uploads/monthly_2018_04/5ae74c4faca6c_onmicrosoftdotcom.thumb.png.653be8134a5408415e7890d68edb4b1f.png" style=""></a>
</p>

<p>
	Here's a video about the new TimeLine functionality incuded in Windows 10 April 2018 Update.
</p>

<div class="ipsEmbeddedVideo" contenteditable="false">
	<div>
		<iframe allow="autoplay; encrypted-media" allowfullscreen="true" frameborder="0" height="270" src="https://www.youtube.com/embed/nNdirfTlU4E?feature=oembed" width="480"></iframe>
	</div>
</div>

<p>
	and for details about <strong>what's new</strong>, see here:
</p>

<p>
	<a href="https://docs.microsoft.com/en-us/windows/whats-new/whats-new-windows-10-version-1803?WT.mc_id=twitter" ipsnoembed="true" rel="external nofollow">https://docs.microsoft.com/en-us/windows/whats-new/whats-new-windows-10-version-1803</a>
</p>

<p>
	To get the feature update via Microsoft Update see the following Blog Post:
</p>

<p>
	<a href="https://blogs.windows.com/windowsexperience/2018/04/30/how-to-get-the-windows-10-april-2018-update/#.WudkRA_6qwM.twitter" ipsnoembed="true" rel="external nofollow">https://blogs.windows.com/windowsexperience/2018/04/30/how-to-get-the-windows-10-april-2018-update/#.WudkRA_6qwM.twitter</a>
</p>

<p>
	and here is the Windows 10 release information for all releases of Windows so far:
</p>

<p>
	<a href="https://www.microsoft.com/en-us/itpro/windows-10/release-information" ipsnoembed="true" rel="external nofollow">https://www.microsoft.com/en-us/itpro/windows-10/release-information</a>
</p>
]]></description><guid isPermaLink="false">16171</guid><pubDate>Mon, 30 Apr 2018 17:00:25 +0000</pubDate></item><item><title>Windows 10 Fall Creators Update (version 1709) is now available</title><link>https://www.windows-noob.com/forums/topic/15770-windows-10-fall-creators-update-version-1709-is-now-available/</link><description><![CDATA[
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;&#13;
line-height:normal">
	<span style='font-size:12.0pt;font-family:"Times New Roman",serif;&#13;
mso-fareast-font-family:"Times New Roman"'>Windows 10 version 1709 (Fall Creators Update) is finally available on <a href="https://www.microsoft.com/Licensing/servicecenter/Downloads/DownloadsandKeys.aspx" rel="external nofollow"><span style="color:blue">Microsoft’s Volume Licensing Service Center</span></a> and <a href="https://www.msdn.com" rel="external nofollow">MSDN</a>.</span>
</p>

<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;&#13;
line-height:normal">
	<img alt="win10-1709.png" class="ipsImage ipsImage_thumbnailed" data-fileid="18979" data-unique="7j8ufolvz" src="https://www.windows-noob.com/forums/uploads/monthly_2017_10/win10-1709.png.fe6d79ea94181d247c0221978dbf5e28.png" style=""></p>

<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;&#13;
line-height:normal">
	<span style='font-size:12.0pt;font-family:"Times New Roman",serif;&#13;
mso-fareast-font-family:"Times New Roman"'>To see what’s new in Windows 10 1709 see the following post</span>
</p>

<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;&#13;
line-height:normal">
	<a href="https://blogs.technet.microsoft.com/windowsitpro/2017/10/10/see-whats-new-for-it-pros-in-windows-10-version-1709/" rel="external nofollow"><img alt="whatsnew1709_featured-300x139.png" class="ipsImage ipsImage_thumbnailed" data-fileid="18980" data-unique="cwz54u053" src="https://www.windows-noob.com/forums/uploads/monthly_2017_10/whatsnew1709_featured-300x139.png.fa735b54313821763a7fda67189aafe9.png" style="width: 296px; height: auto;"></a>
</p>

<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;&#13;
line-height:normal">
	<a href="https://blogs.technet.microsoft.com/windowsitpro/2017/10/10/see-whats-new-for-it-pros-in-windows-10-version-1709/" ipsnoembed="true" rel="external nofollow">https://blogs.technet.microsoft.com/windowsitpro/2017/10/10/see-whats-new-for-it-pros-in-windows-10-version-1709/</a>
</p>

<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;&#13;
line-height:normal">
	<span style='font-size:12.0pt;font-family:"Times New Roman",serif;&#13;
mso-fareast-font-family:"Times New Roman"'>To find out how to get it, see <a href="https://blogs.windows.com/windowsexperience/2017/10/17/get-windows-10-fall-creators-update/" rel="external nofollow"><span style="color:blue">https://blogs.windows.com/windowsexperience/2017/10/17/get-windows-10-fall-creators-update/</span></a></span>
</p>

<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;&#13;
line-height:normal">
	<span style="font-size:24px;"><span style="color: rgb(0, 0, 0);"><span style='font-family: "Times New Roman",serif;'>Windows 10 ADK version 1709</span></span></span>
</p>

<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;&#13;
line-height:normal">
	With the release of Windows 10 version 1709, along comes the Windows Assessment and Deployment Kit (ADK) version 1709. You can download it from: <a href="https://developer.microsoft.com/en-us/windows/hardware/windows-assessment-deployment-kit" rel="external nofollow" target="_blank">Windows 10 Assessment and Deployment Kit (ADK)</a>.
</p>

<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;&#13;
line-height:normal">
	<span style="font-size:24px;">RSAT for Windows 10 version 1709</span>
</p>

<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;&#13;
line-height:normal">
	<span style="font-size:14px;">You can download the Remote Server Administration tools for Windows 10 version 1709 here.</span>
</p>

<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;&#13;
line-height:normal">
	<a href="https://www.microsoft.com/en-au/download/details.aspx?id=45520" ipsnoembed="true" rel="external nofollow">https://www.microsoft.com/en-au/download/details.aspx?id=45520</a>
</p>

<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;&#13;
line-height:normal">
	<span style="font-size:24px;">Recommended reading</span>
</p>

<ul>
<li>
		What's new in Windows 10 version 1709 <a href="https://docs.microsoft.com/en-us/windows/whats-new/whats-new-windows-10-version-1709" rel="external nofollow">https://docs.microsoft.com/en-us/windows/whats-new/whats-new-windows-10-version-1709</a>
	</li>
	<li>
		Windows lifecycle facts page updated with Windows 10 1709, including tentative end of service date, March 2019 <a href="https://support.microsoft.com/en-us/help/13853/windows-lifecycle-fact-sheet" ipsnoembed="true" rel="external nofollow">https://support.microsoft.com/en-us/help/13853/windows-lifecycle-fact-sheet</a>
	</li>
	<li>
		Windows 10 version 1709 ADK <a href="https://developer.microsoft.com/en-us/windows/hardware/windows-assessment-deployment-kit" rel="external nofollow" target="_blank">Windows 10 Assessment and Deployment Kit (ADK)</a>
	</li>
</ul>
]]></description><guid isPermaLink="false">15770</guid><pubDate>Tue, 17 Oct 2017 18:52:12 +0000</pubDate></item><item><title>Windows 10 Fall Creators Update (RS3) coming October 17th</title><link>https://www.windows-noob.com/forums/topic/15680-windows-10-fall-creators-update-rs3-coming-october-17th/</link><description><![CDATA[<p>
	On Microsoft's blog, they announced that RS3 (Redstone 3) aka <strong>Fall Creators Update</strong> is coming October 17th 2017.
</p>

<p>
	<a href="https://blogs.windows.com/windowsexperience/2017/09/01/create-and-play-this-holiday-with-the-windows-10-fall-creators-update-coming-oct-17/#.WamH3lp0OKg.twitter" rel="external nofollow">"Create and play this holiday with the Windows 10 Fall Creators Update coming Oct. 17"</a>
</p>

<blockquote class="ipsQuote" data-ipsquote="">
	<div class="ipsQuote_citation">
		Quote
	</div>

	<div class="ipsQuote_contents ipsClearfix">
		<p>
			The next update of Windows 10, the Fall Creators Update, will be available worldwide October 17. With the Fall Creators Update we are introducing some fun, new ways to get creative. As part of the update we will deliver an evolution to the photos experience that will let you tell your story like never before using photos, videos, and 3D effects; enhancements in gaming, security, accessibility, and immersive new experiences made possible by Windows Mixed Reality. All of this innovation will be brought to life by a range of beautifully designed, and feature rich modern devices available from our hardware partners this holiday.
		</p>
	</div>
</blockquote>

<p>
	It offers the following new features
</p>

<h2 class="x-hidden-focus">
	Windows Inking
</h2>

<p>
	<img alt="Person holding a digital pen using Windows Ink on a PC." class="alignnone wp-image-152131" height="527" scale="0" src="https://winblogs.azureedge.net/win/2017/09/c56c3e4a26885bba4077404c06f29ef0.jpg" width="791"></p>

<p>
	Windows Inking keeps getting better, letting you ink directly onto PDF’s, making it easier and faster to comment and share with others, improving on what you could do with pen and paper alone. Smart Ink applies artificial intelligence to inking automatically making the squares you draw more perfect, or turning boxes into a table for you with no extra work. And you know how sometimes you can’t find your keys, wallet, and phone, sometimes it’s hard to find your pen to do the inking. Windows Find my Pen fixes that in the Fall Creators Update.
</p>

<h2>
	Photos and Videos
</h2>

<p>
	We have reimagined our Photos Application to deliver remixed experiences for telling your stories with photos, videos, music, 3D, and even inking.
</p>

<h2>
	OneDrive Files On-Demand
</h2>

<p>
	You can save all of your creations in OneDrive Files On-Demand, accessing your cloud files like any of your other files on your PC, without using up your local storage space.
</p>

<h2>
	Gaming
</h2>

<p>
	<img alt="Person sitting down gaming on a Windows 10 PC with an Xbox controller" class="alignnone wp-image-152119" height="528" scale="0" src="https://winblogs.azureedge.net/win/2017/09/794723df3663184fdedab4cc6873abba.jpg" width="793"></p>

<p>
	The fuel that often inspires creativity is play. With the Fall Creators Update, we’ve updated Game Mode, which allows your games to use the full processing power of your device as if it was an Xbox game console, right from a new button on the Game bar. And to take advantage of this power, we have a fantastic lineup of Xbox Play Anywhere games coming including, Cuphead, Forza Motorsport 7, Super Lucky’s Tale and Middle-earth: Shadow of War. And, if you love these Xbox play anywhere games, coming on November 7 you can play them on the most powerful console on the planet, <a href="http://www.xbox.com/en-US/xbox-one-x" rel="external nofollow">Xbox One X</a>.
</p>

<h2>
	Security
</h2>

<p>
	<img alt="Windows Defender" class="alignnone wp-image-152155" height="525" scale="0" src="https://winblogs.azureedge.net/win/2017/09/ef28f936cd6e7544b71b908318ca3759.jpg" width="788"></p>

<p>
	While you create and play, our goal is to keep you safe and secure. With the Fall Creators Update, Windows Defender is smarter and defends better than ever before. With behind the scenes cloud intelligence that enables new defenses against ransomware and exploits. I can’t talk about security without talking about <a href="https://blogs.windows.com/windowsexperience/2017/05/02/microsoft-education-empowering-students-teachers-today-create-world-tomorrow/" rel="external nofollow">Windows 10 S</a>. Introduced last May, Windows 10 S is specifically designed for simplicity and security, with significant breakthroughs in battery life and performance. It’s off to a great start, with some of our highest customer satisfaction results yet.
</p>

<p>
	This is the core of Fall Creators Update, it’s all about unleashing your creativity and having some fun while at the same time keeping you safe and secure.
</p>

<h2>
	Accessibility
</h2>

<p>
	<img alt="Eye control on a Windows 10 PC" class="alignnone wp-image-152116" height="373" scale="0" src="https://winblogs.azureedge.net/win/2017/09/92aea34268784df238868cc1ca64c29b.jpg" width="795"></p>

<p>
	I also want to share some exciting new technology that speaks to our mission at Microsoft to create products which are inclusive by design. With the Fall Creators Update, we are making <a href="https://blogs.msdn.microsoft.com/accessibility/2017/08/01/from-hack-to-product-microsoft-empowers-people-with-eye-control-for-windows-10/" rel="external nofollow">Windows more accessible</a> for those with Lou Gehrig’s disease, a progressive neurodegenerative disease that impacts the brain’s ability to control your muscles. The one muscle it doesn’t impact, are the eyes. A new feature Eye Control implements incredible eye tracking technology that lets you type, and operate a mouse just using your eyes, this is life changing technology for those with Lou Gehrig’s disease. This is real advancement in accessibility that we are introducing to the world with the Fall Creators Update.
</p>

<h2>
	Windows Mixed Reality
</h2>

<p>
	<img alt="Windows Mixed Reality - woman wearing a Mixed Reality headset and holding controllers" class="alignnone wp-image-152122" height="527" scale="0" src="https://winblogs.azureedge.net/win/2017/09/c82dc2a1ea4e89281b2afe30cb1e9f4b.jpg" width="791"></p>

<p>
	Lastly, with the Fall Creators Update, we are enabling you to immerse yourself in a new reality, the world of <a href="https://blogs.windows.com/windowsexperience/2017/08/28/windows-mixed-reality-holiday-update/" rel="external nofollow" target="_blank">Windows Mixed Reality</a>. By combining our physical and digital worlds, we believe mixed reality is the next step in the evolution of human computing. For the first time, we are talking about a mixed reality system that fully immerses you in the experience not limited to a mobile device screen size. One that is easy to setup, not requiring you to mount cameras around the room, just put the headset on your head, plug it into your PC and get started, leaving your hands free to interact with the mixed world. It’s available from a wide range of partners around the world, like Acer, ASUS, Dell, HP, and Lenovo with headsets starting as low as $299.
</p>

<p>
	I am thrilled to announce that Windows Mixed Reality headsets will start to become available on October 17 when the Fall Creators Update ships.
</p>

<p class="x-hidden-focus">
	And if you find yourself without a headset, we will also deliver mixed reality experiences through the PC. With Mixed Reality Viewer, you can see 3D objects – either from the Remix3D.com community or your own creation from Paint 3D – mixed into your actual surroundings through your PC’s camera – and snapped and shared – for powerful ways to tell your story.
</p>]]></description><guid isPermaLink="false">15680</guid><pubDate>Fri, 01 Sep 2017 21:07:53 +0000</pubDate></item><item><title>Windows as a service: Simplified and Aligned</title><link>https://www.windows-noob.com/forums/topic/15588-windows-as-a-service-simplified-and-aligned/</link><description><![CDATA[
<p>
	Microsoft has changed Windows As A Service and this was explained in a <a href="https://blogs.technet.microsoft.com/windowsitpro/2017/07/27/waas-simplified-and-aligned/" rel="external nofollow">blog post</a> by Michael Niehaus.
</p>

<p>
	<em>As we <a href="https://blogs.windows.com/business/2017/04/20/windows-office-align-feature-release-schedules-benefit-customers/" rel="external nofollow">announced back in April</a>, Microsoft is aligning our servicing models with twice-per-year feature update releases targeting March and September, and 18-month servicing timelines for each release.  While the first fully-aligned release will occur later this year with the Windows 10 Fall Creators Update release and a corresponding Office 365 ProPlus release, we got a head start with the Windows 10 1703 release (a.k.a. Creators Update):  It marks the first of our semi-annual releases, each of which will be serviced for 18 months.</em>
</p>

<p>
	<em>As part of the alignment with Windows 10 and Office 365 ProPlus, we are also adopting common terminology to make it as easy as possible to understand the servicing process.  The two most important terms to understand:</em>
</p>

<ul>
<li>
		<em><strong>Semi-Annual Channel</strong>. These are the twice-per-year feature update releases, targeting March and September, designed for the broad population of general-purpose PCs used throughout organizations.  Each of these releases will be serviced for 18 months from the date of release.  (The Semi-Annual Channel replaces the Current Branch [CB] and Current Branch for Business [CBB] concepts.)</em>
	</li>
	<li>
		<em><strong>Long-Term Servicing Channel</strong>. These are less frequent releases, expected every 2-3 years (with the next one expected in 2019), designed for special-purpose PCs such as those used in point-of-sale systems or controlling factory or medical equipment.  Each of these releases will be serviced for 10 years from the date of release.  (The Long-Term Servicing Channel replaces the Long-Term Servicing Branch [LTSB].)</em>
	</li>
</ul>
<p>
	<em>With each Semi-Annual Channel release, we begin deploying right away to targeted consumer devices and gradually ramp up to full deployment based on the telemetry that we receive.  As John Cable discussed on <a href="https://blogs.windows.com/windowsexperience/?p=150181" rel="external nofollow">the Windows Experience blog</a>, we recommend that enterprises follow the same approach. Start with targeted deployments to validate that apps, devices and infrastructure used by the organization works well with the new release.  When that validation is complete, begin broadly deploying.</em>
</p>

<p>
	<em>Windows 10 1703 is ready for that broad deployment, based on feedback that we’ve received from organizations, ISVs, partners, OEMs, and consumers that have already done it.  As a convenience to help organizations that haven’t yet begun this broad deployment, we are updating the Windows 10 1703 packages and ISOs on the <a href="http://www.microsoft.com/vlsc" rel="external nofollow">Volume License Servicing Center</a>, <a href="https://msdn.microsoft.com/en-us/subscriptions/aa336858.aspx" rel="external nofollow">MSDN</a>, Windows Update, Windows Update for Business, and Windows Server Update Services, integrating the <a href="https://support.microsoft.com/?kbid=4025342" rel="external nofollow">July cumulative update</a> into the original Windows 10 1703 packages.</em>
</p>

<p>
	<em>For more information on the common terminology, see the as well as the corresponding <a href="https://support.office.com/en-us/article/Overview-of-the-upcoming-changes-to-Office-365-ProPlus-update-management-78b33779-9356-4cdf-9d2c-08350ef05cca" rel="external nofollow">Office 365 ProPlus servicing guidance</a>.  Today we have also made available a new Microsoft Mechanics video to help explain the servicing process:</em>
</p>

<p>
	And here's the video explaining the changes:
</p>

<div class="ipsEmbeddedVideo" contenteditable="false">
	<div>
		<iframe allowfullscreen="true" frameborder="0" height="270" src="https://www.youtube.com/embed/qSAsiM01GOU?feature=oembed" width="480"></iframe>
	</div>
</div>

<p>
	 
</p>
]]></description><guid isPermaLink="false">15588</guid><pubDate>Fri, 28 Jul 2017 09:06:00 +0000</pubDate></item><item><title>Announcing Windows 10 Insider Preview Build 16251 for PC</title><link>https://www.windows-noob.com/forums/topic/15586-announcing-windows-10-insider-preview-build-16251-for-pc/</link><description><![CDATA[
<p class="x-hidden-focus">
	Microsoft is excited to release Windows 10 Insider Preview Build 16251 for PC to Windows Insiders in the Fast ring! The same build will be available for Insiders who opted in to Skip Ahead. We are also releasing Windows 10 Mobile Insider Preview Build 15235 to Insiders in the Fast ring. We won’t have a new Windows Server Insider Preview build for Windows Insiders this week.
</p>

<h1>
	<span style="font-size:36px;">What’s New in Build 16251 For PC</span>
</h1>

<h2>
	<span style="font-size:16px;">Windows lets you link your phone and PC</span>
</h2>

<p>
	You may remember at Build Microsoft talked about PCs and phones working better together. With Build 16251, they are introducing the first set of features that enable “linking” your phone to your PC. This build’s scenario is focused on cross-device web-browsing. Today, we’re asking for you Windows Insiders to help us test this experience out using your Android phones.  Support for iPhone is coming very soon, stay tuned.
</p>

<p class="x-hidden-focus">
	To get started, after installing today’s new build on your PC, go to <strong>Settings &gt; Phone </strong>and link your phone. Having you link your phone ensures that your sessions from your phone are continued only on to the PC that you’ve chosen. After adding your phone to be linked, you will receive an SMS from us directing you to install a test application called “Microsoft Apps” for Android that completes the link between your phone and PC and enables one of our first cross device browsing scenarios.
</p>

<p class="x-hidden-focus">
	<a class="ipsAttachLink ipsAttachLink_image" href="https://www.windows-noob.com/forums/uploads/monthly_2017_07/500b997f020621d701ce478b327f1bbd-1024x849.png.a492c270f5be78dcd17cb0bf7ea67195.png" data-fileid="18687" rel=""><img class="ipsImage ipsImage_thumbnailed" data-fileid="18687" data-unique="xz9twscex" src="https://www.windows-noob.com/forums/uploads/monthly_2017_07/500b997f020621d701ce478b327f1bbd-1024x849.thumb.png.68116e62a635513b28c6914c638726cc.png" style="" alt="500b997f020621d701ce478b327f1bbd-1024x849.png"></a>
</p>

<p class="x-hidden-focus">
	After you’ve linked your phone, just go to your phone and start browsing the web. When you are at a website you want to view on your PC, simply invoke the native share experience on your phone and share the website to the “Continue on PC” option. You might need to click the “…” or more to add this test app to your share menu. 
</p>

<p class="x-hidden-focus">
	Once invoked, it will first ask you to sign in with your Microsoft Account.  It is important you use the same account you are using on your PC.  Next it will ask you if you want to “Continue now” or “Continue later”. If you choose “Continue now”, the website will magically open on the linked PC.  If you choose to “Continue later”, the website will show up under Action Center for you to get to later when you’re ready. Try it out and let us to know of any issues you run into!
</p>

<p class="x-hidden-focus">
	read the full announcement here &gt; <a href="https://blogs.windows.com/windowsexperience/2017/07/26/announcing-windows-10-insider-preview-build-16251-pc-build-15235-mobile/#.WXjeEqpHELY.facebook#U7TAVtAtpCbuo0It.97" ipsnoembed="true" rel="external nofollow">https://blogs.windows.com/windowsexperience/2017/07/26/announcing-windows-10-insider-preview-build-16251-pc-build-15235-mobile/</a>
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">15586</guid><pubDate>Thu, 27 Jul 2017 16:28:34 +0000</pubDate></item><item><title>Yet another RansomWare attack leaves businesses with problems</title><link>https://www.windows-noob.com/forums/topic/15508-yet-another-ransomware-attack-leaves-businesses-with-problems/</link><description><![CDATA[
<p>
	<span style="font-size:24px;">The return of EternalBlue</span>
</p>

<p>
	On June 27th 2017, another RansomWare attack took hold targeting the same eternal blue (SMBv1) vulnerabilities as WannaCry before it. This attack however doesn't reach out to the internet like WannaCry did, it's an internal network attack.
</p>

<p>
	However, this attack seems to have deliberately targeted businesses in Ukraine, and as the email address used for encryption keys was disabled almost immediately, <a href="https://posteo.de/en/blog/info-on-the-petrwrappetya-ransomware-email-account-in-question-already-blocked-since-midday" rel="external nofollow">there's no point in anyone paying ransom if their files are encrypted as they'd never get a reply (with the decryption info).</a>
</p>

<p>
	<img alt="mbr-ransom-note.jpg" class="ipsImage ipsImage_thumbnailed" data-fileid="18587" data-unique="glir6l5lo" src="https://www.windows-noob.com/forums/uploads/monthly_2017_06/mbr-ransom-note.jpg.b47217696fd4da9fc970d1396a596e9c.jpg" style=""></p>

<p>
	<span style="font-size:24px;">Patch Patch Patch</span>
</p>

<p>
	<span style="font-size:14px;">If you haven't done it already (and if you have not, why not especially after WannaCry), head over to <a href="https://technet.microsoft.com/en-us/library/security/ms17-010.aspx?utm_campaign=windows-noob.com" rel="external nofollow">this Technet link</a> and apply the patches, do it.</span>
</p>

<p>
	<span style="font-size:24px;">Stopping the damage</span>
</p>

<p>
	That said, a <a href="https://twitter.com/0xAmit/status/879778335286452224" rel="external nofollow">security researcher</a> found a way of stopping the ransomware from encrypting machines affected by placing a read-only file called <strong>Perfc</strong> in the Windows directory, eg:
</p>

<p>
	C:\Windows\Perfc
</p>

<p>
	The presence of that file will be enough to stop the contents of the hard disc from being encrypted by this malware, however the reason this malware spread in the first place is down to vulnerabilities (unpatched) in the operating system. Those vulnerabilities include two from the leaked NSA exploits, so if you've patched your operating systems against those known vulnerabilities you should be safe.
</p>

<p>
	<span style="font-size:24px;">Protection against this new ransomware attack</span>
</p>

<p>
	Microsoft have <a href="https://blogs.technet.microsoft.com/mmpc/2017/06/27/new-ransomware-old-techniques-petya-adds-worm-capabilities/" rel="external nofollow">advised</a> the following to keep you protected against this (and similar) RansomWare attacks:
</p>

<p>
	<em>"We recommend customers that have not yet installed<strong> security update <a href="https://technet.microsoft.com/en-us/library/security/ms17-010.aspx" rel="external nofollow" target="_blank">MS17-010</a> to do so as soon as possible</strong>. Until you can apply the patch, we also recommend two possible workarounds to reduce the attack surface:</em>
</p>

<ul>
<li>
		<strong><em>Disable SMBv1 with the steps documented at <a href="https://support.microsoft.com/kb/2696547" rel="external nofollow" target="_blank">Microsoft Knowledge Base Article 2696547</a> and as <a href="https://blogs.technet.microsoft.com/filecab/2016/09/16/stop-using-smb1/" rel="external nofollow" target="_blank">recommended previously</a></em></strong>
	</li>
	<li>
		<strong><em>Consider adding a rule on your router or firewall to block incoming SMB traffic on port 445</em></strong>
	</li>
</ul>
<p>
	<em>As the threat targets ports 139 and 445, you customers can block any traffic on those ports to prevent propagation either into or out of machines in the network. You can also disable remote WMI and file sharing. These may have large impacts on the capability of your network, but may be suggested for a very short time period while you assess the impact and <a href="https://www.microsoft.com/security/portal/definitions/adl.aspx" rel="external nofollow" target="_blank">apply definition updates</a>.</em>
</p>

<p>
	<em>Windows Defender Antivirus detects this threat as <a href="https://www.microsoft.com/en-us/security/portal/threat/encyclopedia/entry.aspx?Name=Ransom:Win32/Petya" rel="external nofollow" target="_blank">Ransom:Win32/Petya</a> as of the <a href="https://www.microsoft.com/security/portal/definitions/adl.aspx" rel="external nofollow" target="_blank">1.247.197.0 update</a>. Windows Defender Antivirus uses cloud-based protection, helping to protect you from the latest threats.</em>
</p>

<p>
	<em>For enterprises, use <a href="https://technet.microsoft.com/itpro/windows/keep-secure/device-guard-deployment-guide" rel="external nofollow"><span>Device Guard</span></a> to lock down devices and provide kernel-level virtualization-based security, allowing only trusted applications to run, effectively preventing malware from running.</em>
</p>

<p>
	<em>Monitor networks with <a href="http://www.microsoft.com/en-us/WindowsForBusiness/windows-atp" rel="external nofollow"><span>Windows Defender Advanced Threat Protection</span></a>, which alerts security operations teams about suspicious activities. Download this playbook to see how you can leverage Windows Defender ATP to detect, investigate, and mitigate ransomware in networks: <a href="https://www.microsoft.com/en-us/download/details.aspx?id=55090" rel="external nofollow"><span>Windows Defender Advanced Threat Protection – Ransomware response playbook</span></a>."</em>
</p>

<p>
	<span style="font-size:24px;">Recommended Reading</span>
</p>

<ul>
<li>
		<a href="https://technet.microsoft.com/en-us/library/security/ms17-010.aspx?utm_campaign=windows-noob.com" ipsnoembed="true" rel="external nofollow">https://technet.microsoft.com/en-us/library/security/ms17-010.aspx?utm_campaign=windows-noob.com</a>
	</li>
	<li>
		<a href="https://www.theregister.co.uk/2017/06/28/petya_notpetya_ransomware/" ipsnoembed="true" rel="external nofollow">https://www.theregister.co.uk/2017/06/28/petya_notpetya_ransomware/</a>
	</li>
	<li>
		<a href="https://blogs.technet.microsoft.com/mmpc/2017/06/27/new-ransomware-old-techniques-petya-adds-worm-capabilities/" ipsnoembed="true" rel="external nofollow">https://blogs.technet.microsoft.com/mmpc/2017/06/27/new-ransomware-old-techniques-petya-adds-worm-capabilities/</a>
	</li>
	<li>
		<a href="https://www.binarydefense.com/petya-ransomware-without-fluff/" ipsnoembed="true" rel="external nofollow">https://www.binarydefense.com/petya-ransomware-without-fluff/</a>
	</li>
	<li>
		<a href="http://blog.coretech.dk/swo/petya-ransomware-the-attack-method-and-preventing-it/" ipsnoembed="true" rel="external nofollow">http://blog.coretech.dk/swo/petya-ransomware-the-attack-method-and-preventing-it/</a>
	</li>
	<li>
		<a href="https://azure.microsoft.com/en-us/blog/petya-ransomware-prevention-detection-in-azure-security-center/" ipsnoembed="true" rel="external nofollow">https://azure.microsoft.com/en-us/blog/petya-ransomware-prevention-detection-in-azure-security-center/</a>
	</li>
	<li>
		<a href="https://www.welivesecurity.com/2017/06/30/telebots-back-supply-chain-attacks-against-ukraine/" ipsnoembed="true" rel="external nofollow">https://www.welivesecurity.com/2017/06/30/telebots-back-supply-chain-attacks-against-ukraine/</a>
	</li>
	<li>
		<a href="http://blog.uk.fujitsu.com/information-security/petya-medoc-and-the-delivery-of-malicious-software/#.WVeKWCmxXD4" ipsnoembed="true" rel="external nofollow">http://blog.uk.fujitsu.com/information-security/petya-medoc-and-the-delivery-of-malicious-software/#.WVeKWCmxXD4</a>
	</li>
	<li>
		<a href="https://www.1e.com/blogs/2017/06/30/stop-future-petya-attacks/?utm_content=56869130&amp;utm_medium=social&amp;utm_source=windows-noob.com" rel="external nofollow">https://www.1e.com/blogs/2017/06/30/stop-future-petya-attacks/?utm_content=56869130&amp;utm_medium=social&amp;utm_source=windows-noob.com</a>
	</li>
</ul>
]]></description><guid isPermaLink="false">15508</guid><pubDate>Wed, 28 Jun 2017 10:16:48 +0000</pubDate></item><item><title>Microsoft releases new Windows XP security patches, warns of state-sponsored cyberattacks</title><link>https://www.windows-noob.com/forums/topic/15478-microsoft-releases-new-windows-xp-security-patches-warns-of-state-sponsored-cyberattacks/</link><description><![CDATA[
<p id="BU10gr">
	Microsoft issued a <a href="https://www.theverge.com/2017/5/13/15635006/microsoft-windows-xp-security-patch-wannacry-ransomware-attack" rel="external nofollow">“highly unusual” patch for Windows XP</a> last month to help prevent the spread of the massive <a href="https://www.theverge.com/2017/5/12/15630354/nhs-hospitals-ransomware-hack-wannacry-bitcoin" rel="external nofollow">WannaCry malware</a>. At least 75,000 computers in 99 countries were affected by the malware which encrypts a computer and demands a $300 ransom before unlocking it. Microsoft stopped supporting Windows XP in April 2014, but the software giant is now taking the unprecedented move of including it in the company’s Patch Tuesday round of <a href="https://portal.msrc.microsoft.com/en-us/security-guidance/summary" rel="external nofollow">security updates</a> today.
</p>

<div class="m-ad m-ad__mobile_leaderboard">
	<div class="dfp_ad" data-cb-ad-id="Mobile leaderboard" data-cb-dfp-id="unit=mobile_leaderboard" id="div-gpt-ad-mobile_leaderboard">
		<img class="ipsImage ipsImage_thumbnailed" data-fileid="18568" data-unique="z7tckg81r" src="https://www.windows-noob.com/forums/uploads/monthly_2017_06/Windows-xp-patch-1.png.3318b727ba76b40c7ca4c4af9cc00e17.png" style="" alt="Windows-xp-patch-1.png">
</div>
</div>

<p id="qQngY9">
	“In reviewing the updates for this month, some vulnerabilities were identified that pose elevated risk of cyberattacks by government organizations, sometimes referred to as nation-state actors, or other copycat organizations,” <a href="https://blogs.windows.com/windowsexperience/2017/06/13/microsoft-releases-additional-updates-protect-potential-nation-state-activity/#E8erdp3gdzA57ojW.97" rel="external nofollow">says</a> Adrienne Hall, general manager of crisis management at Microsoft. “To address this risk, today we are providing additional security updates along with our regular Update Tuesday service. These security updates are being made available to all customers, including those using older versions of Windows.”
</p>

<p>
	 
</p>

<p>
	read the story @ <a href="https://www.theverge.com/2017/6/13/15790030/microsoft-windows-xp-vista-security-updates-june-2017" rel="external nofollow">TheVerge</a>
</p>
]]></description><guid isPermaLink="false">15478</guid><pubDate>Sun, 18 Jun 2017 15:58:28 +0000</pubDate></item><item><title>Huge ransonware attack hits companies all over the world, Microsoft releases guidance and patches for unsupported operating systems</title><link>https://www.windows-noob.com/forums/topic/15353-huge-ransonware-attack-hits-companies-all-over-the-world-microsoft-releases-guidance-and-patches-for-unsupported-operating-systems/</link><description><![CDATA[
<p>
	Ransomware has been around for a few years now but up until yesterday, it wasn't that well known about. This latest RansomWare called <strong>WannaCry</strong> has changed that for ever.
</p>

<p>
	<img alt="_96034173_cryptor3.png.jpg" class="ipsImage ipsImage_thumbnailed" data-fileid="18430" data-unique="97vfkig36" src="https://www.windows-noob.com/forums/uploads/monthly_2017_05/_96034173_cryptor3.png.jpg.07f7d34e60c762b3d78fecd95f8e6583.jpg" style=""></p>

<p>
	<em>Ransomware encrypted data <a href="http://www.bbc.com/news/world-europe-39907965" rel="external nofollow">on at least 75,000 systems in 99 countries on Friday</a>. Payments were demanded for access to be restored. European countries, including Russia, were among the worst hit.</em>
</p>

<p>
	Companies around Europe were hit and investigations are underway to see who was responsible. This was such a big attack that Microsoft released patches for unsupported operating systems (such as Windows XP) to allow those businesses still running them, a chance to protect themselves.
</p>

<p>
	<span style="font-size:24px;">Guidance available</span>
</p>

<p>
	In addition to making patches available, Microsoft <a href="https://blogs.technet.microsoft.com/msrc/2017/05/12/customer-guidance-for-wannacrypt-attacks/?utm_source=windows-noob.com" rel="external nofollow">has published guidance</a> to explain what is necessary in protecting yourself against this Ransomware and any others based on the same vulnerabilities (<a href="https://technet.microsoft.com/en-us/library/security/ms17-010.aspx?f=255&amp;MSPPError=-2147217396" rel="external nofollow">SMBv1</a>). These vulnerabilities <a href="https://technet.microsoft.com/en-us/library/security/ms17-010.aspx?f=255&amp;MSPPError=-2147217396" rel="external nofollow">were patched by Microsoft in March</a> of this year, but of course there were no patches (at that time) for unsupported operating systems such as Windows XP.
</p>

<p>
	<span style="font-size:24px;">Download Patches for unsupported Operating Systems</span>
</p>

<p>
	To patch your unsupported operating systems, get over to <a href="http://www.catalog.update.microsoft.com/Search.aspx?q=KB4012598" rel="external nofollow">this url</a> and download the available patches.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" data-fileid="18431" href="https://www.windows-noob.com/forums/uploads/monthly_2017_05/patches.png.f8923fb9ef0c0d890526c5d4232f267c.png" rel=""><img alt="patches.png" class="ipsImage ipsImage_thumbnailed" data-fileid="18431" data-unique="488w6z4av" src="https://www.windows-noob.com/forums/uploads/monthly_2017_05/patches.thumb.png.da343429b15db1711cddf1f41665f72c.png" style=""></a>
</p>

<p>
	WannaCry has multiple vectors, but you should remove one vector, SMBv1. Do as follows
</p>

<p>
	1. Block 445 inbound
</p>

<p>
	2. Install <a href="https://technet.microsoft.com/en-us/library/security/ms17-010.aspx?f=255&amp;MSPPError=-2147217396" rel="external nofollow">MS17-010</a>
</p>

<p>
	3. Remove SMB1
</p>
]]></description><guid isPermaLink="false">15353</guid><pubDate>Sat, 13 May 2017 14:14:51 +0000</pubDate></item><item><title>Announcing the Windows ADK 10 Insider Preview Build 15021</title><link>https://www.windows-noob.com/forums/topic/15182-announcing-the-windows-adk-10-insider-preview-build-15021/</link><description><![CDATA[
<p>
	Finally!!
</p>

<p>
	The USMT release for Windows 10 version 1704 will have full support for migration to Office 2016.<br />
	Also the tool seems to have been thoroughly worked through in this release.<br /><br />
	There is <a href="https://medium.com/@BTNHD/windows-adk-10-insider-preview-build-15021-features-eebce1fdb91e#.60dw50kg8" rel="external nofollow">aditions to AppV </a>and also look into <a href="http://deploymentresearch.com/Research/Post/599/What-s-new-in-the-Windows-ADK-10-Insider-Preview-v15021" rel="external nofollow">Johan Arwidmarks walkthrough of the new ADK.</a>
</p>

<p>
	 
</p>

<p>
	You can download the Windows ADK 10 Insider Preview v15021 on the below link - log in with your insider account (create one if need be):
</p>

<p>
	<strong>Windows Insider Preview Downloads</strong><br /><a href="https://www.microsoft.com/en-us/software-download/windowsinsiderpreviewADK" rel="external nofollow">https://www.microsoft.com/en-us/software-download/windowsinsiderpreviewADK</a>
</p>
]]></description><guid isPermaLink="false">15182</guid><pubDate>Tue, 21 Mar 2017 20:11:27 +0000</pubDate></item><item><title>Announcing Windows 10 Insider Preview Build 15060 for PC</title><link>https://www.windows-noob.com/forums/topic/15172-announcing-windows-10-insider-preview-build-15060-for-pc/</link><description><![CDATA[
<p>
	Hello Windows Insiders!
</p>

<p>
	Today <a href="https://blogs.windows.com/windowsexperience/2017/03/16/announcing-windows-10-insider-preview-build-15060-pc/#AeDqYSh5ZCwBH9VI.97" rel="external nofollow">we are excited to be releasing Windows 10 Insider Preview Build 15060 for PC</a> to Windows Insiders in the Fast ring.
</p>

<p>
	<em>NOTE: The builds for Brazil (PT-BR) and Polish (PL-PL) are not yet available so Insiders will see the message “An update is being prepared for your device, but it’s not quite ready yet. We will keep trying or you can try again now.” when checking for updates. Windows 10 Home for 32-bit is also not yet available. </em>
</p>

<h1>
	<strong>Other changes, improvements, and fixes for PC</strong>
</h1>

<ul>
<li>
		We fixed an issue resulting in the Settings icon appearing plating in the taskbar. This issue also resulted in another issue now fixed, where if Settings had been pinned to Start, the tile would become greyed out after the first time it was clicked. Thank you all for your feedback on this.
	</li>
	<li>
		We fixed an issue resulting in 3rd party IMEs not showing up in Settings after being installed.
	</li>
	<li>
		We fixed an issue in Microsoft Edge where quickly typing and deleting characters into a website’s search box while using the MS Pinyin IME might result in the IME becoming stuck and the website showing “Not responding”.
	</li>
	<li>
		Surface Pro 3 and Surface 3 devices should no longer fail to update to new builds if a SD memory card is inserted if you have the latest Surface drivers and firmware installed.
	</li>
	<li>
		We fixed an issue where taskhost.exe might crash after pressing Tab while quickly typing in UWP app sign in fields, resulting in not being able to type for a few seconds.
	</li>
	<li>
		We fixed an issue for Insiders where, after a crash, Microsoft Edge might fail to launch again for a few minutes because previous instances were still suspended in the background.
	</li>
	<li>
		We fixed the issues occurring when exploring pages using the F12 Developer Tools in Microsoft Edge with cross-origin iframes (e.g. the DOM explorer shows only the iframe DOM, the Console frame selector doesn’t list the iframes, etc.).
	</li>
</ul>
<h1>
	<strong>Known issues for PC</strong>
</h1>

<ul>
<li>
		You will be unable to download new (additional) language packs on this build. Currently installed language packs will not be impacted.
	</li>
	<li>
		If your PC fails to install this build on reboot with the error 8024a112, reboot manually again. If your PC appears to hang during the reboot, power your PC off and back on and the install will proceed.
	</li>
	<li>
		Some Insiders have reported seeing this error “Some updates were cancelled. We’ll keep trying in case new updates become available” in Windows Update. If you encounter it, please try deleting the following registry key:
		<div>
			<div class="syntaxhighlighter  powershell" id="highlighter_85826">
				<table border="0" cellpadding="0" cellspacing="0"><tbody><tr>
<td class="gutter">
								<div class="line number1 index0 alt2">
									1
								</div>
							</td>
							<td class="code">
								<div class="container">
									<div class="line number1 index0 alt2">
										<code class="powershell plain">HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RequestedAppCategories\8b24b027-1dee-babb-9a95-3517dfb9c552</code>
									</div>
								</div>
							</td>
						</tr></tbody></table>
</div>
		</div>

		<p>
			<a href="http://aka.ms/suwc" rel="external nofollow">See this forum post for more details.</a>
		</p>
	</li>
</ul>
<ul>
<li>
		Some apps and games may crash due to a misconfiguration of advertising ID that happened in a prior build. Specifically, this issue affects new user accounts that were created on Build 15031. The misconfiguration can continue to persist after upgrading to later builds. The ACL on the registry key incorrectly denies access to the user and you can delete the following registry key to get out of this state:HKCU\Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo
	</li>
</ul>
<ul>
<li>
		There is a bug where if you need to restart your PC due to a pending update like with the latest Surface firmware updates, the restart reminder dialog doesn’t pop up. You should check <strong>Settings &gt; Update &amp; security &gt; Windows Update</strong> to see if a restart is required.
	</li>
	<li>
		[GAMING] Certain hardware configurations may cause the broadcast live review window in the Game bar to flash Green while you are Broadcasting. This does not affect the quality of your broadcast and is only visible to the Broadcaster.
	</li>
</ul>
]]></description><guid isPermaLink="false">15172</guid><pubDate>Thu, 16 Mar 2017 22:13:22 +0000</pubDate></item></channel></rss>
