<?xml version="1.0"?>
<rss version="2.0"><channel><title>News: Software News</title><link>https://nsaneforums.com/news/software-news/page/410/?d=2</link><description>News: Software News</description><language>en</language><item><title>ZFS fans, rejoice&#x2014;RAIDz expansion will be a thing very soon</title><link>https://nsaneforums.com/news/software-news/zfs-fans-rejoice%E2%80%94raidz-expansion-will-be-a-thing-very-soon-r613/</link><description><![CDATA[<header>
	<h1 itemprop="headline">
		ZFS fans, rejoice—RAIDz expansion will be a thing very soon
	</h1>

	<h2 itemprop="description">
		Founding OpenZFS dev Matthew Ahrens opened a pull request last week.
	</h2>
</header>

<section>
	<div itemprop="articleBody">
		<figure>
			<img alt="OpenZFS supports many complex disk topologies, but &quot;spiral stack sitting on a desk&quot; still isn't one of them." data-ratio="57.92" src="https://cdn.arstechnica.net/wp-content/uploads/2021/06/ironwolves-cropped-800x445.jpg">
			<figcaption>
				<div>
					<a data-height="417" data-width="760" href="https://cdn.arstechnica.net/wp-content/uploads/2021/06/ironwolves-cropped-800x445.jpg" rel="external nofollow">Enlarge</a> / OpenZFS supports many complex disk topologies, but "spiral stack sitting on a desk" still isn't one of them.
				</div>

				<div>
					Jim Salter<a href="https://arstechnica.com/gadgets/2021/06/raidz-expansion-code-lands-in-openzfs-master/?comments=1" title="26 posters participating, including story author" rel="external nofollow"> </a>
				</div>
			</figcaption>
		</figure>

		<p>
			OpenZFS founding developer Matthew Ahrens opened a PR for one of the most sought-after features in ZFS history—RAIDz expansion—last week. The new feature allows a ZFS user to expand the size of a single RAIDz vdev. For example, you can use the new feature to turn a three-disk RAIDz1 into a four, five, or six RAIDz1.
		</p>

		<p>
			 
		</p>
		OpenZFS is a complex filesystem, and things are necessarily going to get a bit chewy explaining how the feature works. So if you're a ZFS newbie, you may want to refer back to our comprehensive ZFS 101 <a href="https://arstechnica.com/information-technology/2020/05/zfs-101-understanding-zfs-storage-and-performance/" rel="external nofollow">introduction</a>.

		<h2>
			Expanding storage in ZFS
		</h2>

		<p>
			In addition to being a filesystem, ZFS is a storage array and volume manager, meaning that you can feed it a whole pile of disk devices, not just one. The heart of a ZFS storage system is the zpool—this is the most fundamental level of ZFS storage. The zpool in turn contains vdevs, and vdevs contain actual disks within them. Writes are split into units called records or blocks, which are then distributed semi-evenly among the vdevs.
		</p>

		<p>
			 
		</p>

		<p>
			A storage vdev can be one of five types—a single disk, mirror, RAIDz1, RAIDz2, or RAIDz3. You can add more vdevs to a zpool, and you can attach more disks to a single or mirror vdev. But managing storage this way requires some planning ahead and budgeting—which hobbyists and homelabbers frequently aren't too enthusiastic about.
		</p>

		<p>
			 
		</p>

		<p>
			Conventional RAID, which does not share the "pool" concept with ZFS, generally offers the ability to expand and/or reshape an array in place. For example, you might add a single disk to a six-disk RAID6 array, thereby turning it into a seven-disk RAID6 array. Undergoing a live reshaping can be pretty painful, especially on nearly full arrays; it's entirely possible that such a task might require a week or more, with array performance limited to a quarter or less of normal the entire time.
		</p>

		<p>
			 
		</p>

		<p>
			Historically, ZFS has eschewed this sort of expansion. ZFS was originally developed for business use, and live array re-shaping is generally a non-starter in the business world. Dropping your storage's performance to unusable levels for days on end generally costs more in payroll and overhead than buying an entirely new set of hardware would. Live expansion is also potentially very dangerous since it involves reading and re-writing all data and puts the array in a temporary and far less well-tested "half this, half that" condition until it completes.
		</p>

		<p>
			 
		</p>

		<p>
			For users with many disks, the new RAIDz expansion is unlikely to materially change how they use ZFS. It will still be both easier and more practical to manage vdevs as complete units rather than trying to muck about inside them. But hobbyists, homelabbers, and small users who run ZFS with a single vdev will likely get a lot of use out of the new feature.
		</p>

		<h2>
			How does it work?
		</h2>

		<figure>
			<a alt="In this slide, we see a four-disk RAIDz1 (left) expanded to a five-disk RAIDz1 (right). Note that the data is still written in four-wide stripes!" data-height="932" data-width="2040" href="https://cdn.arstechnica.net/wp-content/uploads/2021/06/raidz-expansion.png" rel="external nofollow"><img alt="In this slide, we see a four-disk RAIDz1 (left) expanded to a five-disk RAIDz1 (right). Note that the data is still written in four-wide stripes!" data-ratio="45.78" srcset="https://cdn.arstechnica.net/wp-content/uploads/2021/06/raidz-expansion-1280x585.png 2x" src="https://cdn.arstechnica.net/wp-content/uploads/2021/06/raidz-expansion-640x292.png"></a>

			<figcaption>
				<div>
					<a data-height="932" data-width="2040" href="https://cdn.arstechnica.net/wp-content/uploads/2021/06/raidz-expansion.png" rel="external nofollow">Enlarge</a> / In this slide, we see a four-disk RAIDz1 (left) expanded to a five-disk RAIDz1 (right). Note that the data is still written in four-wide stripes!
				</div>

				<div>
					<a href="https://youtu.be/3SUKJye54aI?t=5774" rel="external nofollow">Matthew Ahrens</a>
				</div>
			</figcaption>
		</figure>

		<p>
			From a practical perspective, Ahrens' new vdev expansion feature merely adds new capabilities to an existing command, namely, zpool attach, which is normally used to add a disk to a single-disk vdev (turning it into a mirror vdev) or add an extra disk to a mirror (for example, turning a two-disk mirror into a three-disk mirror).
		</p>

		<p>
			 
		</p>

		<p>
			With the new code, you'll be able to attach new disks to an existing RAIDz vdev as well. Doing so expands the vdev in width but does not change the vdev type, so you can turn a six-disk RAIDz2 vdev into a seven-disk RAIDz2 vdev, but you can't turn it into a seven-disk RAIDz3.
		</p>

		<p>
			 
		</p>

		<p>
			Upon issuing your zpool attach command, the expansion begins. During expansion, each block or record is read from the vdev being expanded and is then rewritten. The sectors of the rewritten block are distributed among all disks in the vdev, including the new disk(s), but the width of the stripe itself is not changed. So a RAIDz2 vdev expanded from six disks to ten will still be full of six-wide stripes after expansion completes.
		</p>

		<p>
			 
		</p>

		<p>
			So while the user will see the extra space made available by the new disks, the storage efficiency of the expanded data will not have improved due to the new disks. In the example above, we went from a six-disk RAIDz2 with a nominal storage efficiency of 67 percent (four of every six sectors are data) to a ten-disk RAIDz2. Data newly written to the ten-disk RAIDz2 has a nominal storage efficiency of 80 percent—eight of every ten sectors are data—but the old expanded data is still written in six-wide stripes, so it still has the old 67 percent storage efficiency.
		</p>

		<p>
			 
		</p>

		<p>
			It's worth noting that this isn't an unexpected or bizarre state for a vdev to be in—RAIDz already uses a dynamic, variable stripe width to account for blocks or records too small to stripe across all the disks in a single vdev.
		</p>

		<p>
			 
		</p>

		<p>
			For example, if you write a single metadata block—the data containing a file's name, permissions, and location on disk—it fits within a single sector on disk. If you write that metadata block to a ten-wide RAIDz2, you don't write a full ten-wide stripe—instead, you write an undersized block only three disks wide; a single data sector plus two parity sectors. So the "undersized" blocks in a newly expanded RAIDz vdev aren't anything for ZFS to get confused about. They're just another day at the office.
		</p>

		<h2>
			Is there any lasting performance impact?
		</h2>

		<p>
			As we discussed above, a newly expanded RAIDz vdev won't look quite like one designed that way from "birth"—at least, not at first. Although there are more disks in the mix, the internal structure of the data isn't changed.
		</p>

		<p>
			 
		</p>

		<p>
			Adding one or more new disks to the vdev means that it should be capable of somewhat higher throughput. Even though the legacy blocks don't span the entire width of the vdev, the added disks mean more spindles to distribute the work around. This probably won't make for a jaw-dropping speed increase, though—six-wide stripes on a seven-disk vdev mean that you still can't read or write two blocks simultaneously, so any speed improvements are likely to be minor.
		</p>

		<p>
			 
		</p>

		<p>
			The net impact to performance can be difficult to predict. If you are expanding from a six-disk RAIDz2 to a seven-disk RAIDz2, for example, your original six-disk configuration didn't need any padding. A 128KiB block can be cut evenly into four 32KiB data pieces, with two 32KiB parity pieces. The same record split among seven disks requires padding because 128KiB/five data pieces doesn't come out to an even number of sectors.
		</p>

		<p>
			 
		</p>

		<p>
			Similarly, in some cases—particularly with a small recordsize or volblocksize set—the workload per individual disk may be significantly less challenging in the older, narrower layout than in the newer, wider one. A 128KiB block split into 32KiB pieces for a six-wide RAIDz2 can be read or written more efficiently per disk than one split into 16KiB pieces for a ten-wide RAIDz2, for example—so it's a bit of a crapshoot whether more disks but smaller pieces will provide more throughput than fewer disks but larger pieces did.
		</p>

		<p>
			 
		</p>

		<p>
			The one thing you can be certain of is that the newly expanded configuration should typically perform as well as the original non-expanded version—and that once the majority of data is (re)written in the new width, the expanded vdev won't perform any differently, or be any less reliable, than one that was designed that way from the start.
		</p>

		<h2>
			Why not reshape records/blocks during expansion?
		</h2>

		<p>
			It might seem odd that the initial expansion process doesn't rewrite all existing blocks to the new width while it's running—after all, it's reading and re-writing the data anyway, right? We asked Ahrens why the original width was left as-is, and the answer boils down to "it's easier and safer that way."
		</p>

		<p>
			 
		</p>

		<p>
			One key factor to recognize is that technically, the expansion isn't moving blocks; it's just moving sectors. The way it's written, the expansion code doesn't need to know where ZFS' logical block boundaries are—the expansion routine has no idea whether an individual sector is parity or data, let alone which block it belongs to.
		</p>

		<p>
			 
		</p>

		<p>
			Expansion could traverse all the block pointers to locate block boundaries, and then it would know which sector belongs to what block and how to re-shape the block, but according to Ahrens, doing things that way would be extremely invasive to ZFS' on-disk format. The expansion would need to continually update spacemaps on metaslabs to account for changes in the on-disk size of each block—and if the block is part of a dataset rather than a zvol, update the per-dataset and per-file space accounting as well.
		</p>

		<p>
			 
		</p>

		<p>
			If it really makes your teeth itch knowing you have four-wide stripes on a freshly five-wide vdev, you can just read and re-write your data yourself after expansion completes. The simplest way to do this is to use zfs snapshot, zfs send, and zfs receive to replicate entire datasets and zvols. If you're not worried about ZFS properties, a simple mv operation will do the trick.
		</p>

		<p>
			 
		</p>

		<p>
			However, we'd recommend in most cases just relaxing and letting ZFS do its thing. Your undersized blocks from older data aren't really hurting anything, and as you naturally delete and/or alter data over the life of the vdev, most of them will get re-written naturally as necessary, without the need for admin intervention or long periods of high storage load due to obsessively reading and re-writing everything all at once.
		</p>

		<h2>
			When will RAIDz expansion hit production?
		</h2>

		<p>
			Ahrens' new code is not yet a part of any OpenZFS release, let alone added to anyone else's repositories. We asked Ahrens when we might expect to see the code in production, and unfortunately, it will be a while.
		</p>

		<p>
			 
		</p>

		<p>
			It's too late for RAIDz expansion to be included in the upcoming OpenZFS 2.1 release, expected very soon (2.1 release candidate 7 is available now). It should be included in the next major OpenZFS release; it's too early for concrete dates, but major releases typically happen about once per year.
		</p>

		<p>
			 
		</p>

		<p>
			Broadly speaking, we expect RAIDz expansion to hit production in the likes of Ubuntu and FreeBSD somewhere around August 2022, but that's just a guess. TrueNAS may very well put it into production sooner than that, since ixSystems tends to pull ZFS features from master before they officially hit release status.
		</p>

		<p>
			 
		</p>

		<div class="ipsEmbeddedVideo" contenteditable="false">
			<div>
				<iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" frameborder="0" height="113" src="https://nsaneforums.com/applications/core/interface/index.html" width="200" data-embed-src="https://www.youtube.com/embed/3SUKJye54aI?feature=oembed"></iframe>
			</div>
		</div>

		<figure>
			<figcaption>
				<div>
					Matt Ahrens presented RAIDz expansion at the FreeBSD Developer Summit—his talk begins at 1 hour 41 minutes in this video.
				</div>

				<div>
					 
				</div>
			</figcaption>
		</figure>
	</div>
</section>

<p>
	<a href="https://arstechnica.com/gadgets/2021/06/raidz-expansion-code-lands-in-openzfs-master/" rel="external nofollow">ZFS fans, rejoice—RAIDz expansion will be a thing very soon</a>
</p>
]]></description><guid isPermaLink="false">613</guid><pubDate>Tue, 15 Jun 2021 21:04:11 +0000</pubDate></item><item><title>Windows 11 Leaks! Borrows Design Elements from Windows 10X [Screenshots of Build 21996]</title><link>https://nsaneforums.com/news/software-news/windows-11-leaks-borrows-design-elements-from-windows-10x-screenshots-of-build-21996-r609/</link><description><![CDATA[<div style="border:0px;color:#333333;font-size:16px;padding:0px;vertical-align:baseline;">
	<div style="border:0px;font-size:16px;padding:0px;vertical-align:baseline;text-align:center;">
		<strong>Microsoft's highly anticipated event around the next generation of Windows is <a href="https://wccftech.com/microsoft-to-unveil-the-next-generation-of-windows-10-on-june-24th/" rel="external nofollow">scheduled</a> for next week. Up until now, we weren't even sure what Microsoft was going to call this next version. But, we don't need to wait for next week, because it appears "almost" everything has been leaked.</strong><br />
		 
	</div>
</div>

<p>
	The company is so far calling it Windows 11, which several rumors had already reported. While Microsoft could change things up until the launch, it's highly unlikely. Windows 11 <a href="https://wccftech.com/you-can-now-download-windows-11-wallpaper/" rel="external nofollow">wallpapers are already available to download</a>.
</p>

<p>
	<br />
	Today's Windows 11 leaks confirm that the company has indeed focused on design changes, focusing on a new Start and taskbar interface. The design is borrowing many improvements from Microsoft's now-shelved <a href="https://wccftech.com/microsoft-is-reportedly-shelving-windows-10x/" rel="external nofollow">Windows 10X</a>, but other changes are likely to be added as the operating system develops further. Here are the screenshots of Windows 11 OOBE.
</p>

<h2 style="border:0px;color:#333333;font-size:24px;padding:0px;vertical-align:baseline;">
	Windows 11 and Windows 11 Pro leaked screenshots
</h2>

<div style="border:0px;color:#333333;font-size:16px;padding:0px;vertical-align:baseline;">
	<div style="border:0px;font-size:16px;padding:0px;vertical-align:baseline;">
		<div style="border:0px;font-size:16px;padding:0px;vertical-align:baseline;">
			<ul style="border:0px;color:#404040;font-size:16px;padding:0px;vertical-align:baseline;">
				<li style="border:0px;font-size:16px;padding:0px;text-align:center;vertical-align:baseline;">
					<img alt="windows-11-file-explorer" data-ratio="75.10" style="border:0px;font-size:16px;padding:0px;vertical-align:baseline;" width="719" src="https://cdn.wccftech.com/wp-content/uploads/2021/06/windows-11-file-explorer.jpeg" />
				</li>
				<li style="border:0px;font-size:16px;padding:0px;text-align:center;vertical-align:baseline;">
					<img alt="windows-11-pro" data-ratio="75.10" style="border:0px;font-size:16px;padding:0px;vertical-align:baseline;" width="719" src="https://cdn.wccftech.com/wp-content/uploads/2021/06/windows-11-pro-1480x1113.png" />
				</li>
				<li style="border:0px;font-size:16px;padding:0px;text-align:center;vertical-align:baseline;">
					<img alt="windows 11" data-ratio="75.10" style="border:0px;font-size:16px;padding:0px;vertical-align:baseline;" width="719" src="https://cdn.wccftech.com/wp-content/uploads/2021/06/windows-11.jpeg" />
				</li>
				<li style="border:0px;font-size:16px;padding:0px;text-align:center;vertical-align:baseline;">
					<img alt="windows-11-setup" data-ratio="75.10" style="border:0px;font-size:16px;padding:0px;vertical-align:baseline;" width="719" src="https://cdn.wccftech.com/wp-content/uploads/2021/06/windows-11-setup.jpeg" />
				</li>
				<li style="border:0px;font-size:16px;padding:0px;text-align:center;vertical-align:baseline;">
					<img alt="windows-11-oobe" data-ratio="75.10" style="border:0px;font-size:16px;padding:0px;vertical-align:baseline;" width="719" src="https://cdn.wccftech.com/wp-content/uploads/2021/06/windows-11-oobe.jpeg" />
				</li>
				<li style="border:0px;font-size:16px;padding:0px;text-align:center;vertical-align:baseline;">
					<img alt="windows 11 setup" data-ratio="75.10" style="border:0px;font-size:16px;padding:0px;vertical-align:baseline;" width="719" src="https://cdn.wccftech.com/wp-content/uploads/2021/06/windows-11-leak.jpeg" />
				</li>
				<li style="border:0px;font-size:16px;padding:0px;text-align:center;vertical-align:baseline;">
					<img alt="download-windows-11" data-ratio="75.10" style="border:0px;font-size:16px;padding:0px;vertical-align:baseline;" width="719" src="https://cdn.wccftech.com/wp-content/uploads/2021/06/download-windows-11.jpeg" />
				</li>
				<li style="border:0px;font-size:16px;padding:0px;text-align:center;vertical-align:baseline;">
					<img alt="windows 11 leak" data-ratio="75.10" style="border:0px;font-size:16px;padding:0px;vertical-align:baseline;" width="719" src="https://cdn.wccftech.com/wp-content/uploads/2021/06/windows-11-design.jpeg" />
				</li>
				<li style="border:0px;font-size:16px;padding:0px;text-align:center;vertical-align:baseline;">
					<img alt="windows-11-file-explorer" data-ratio="75.10" style="border:0px;font-size:16px;padding:0px;vertical-align:baseline;" width="719" src="https://cdn.wccftech.com/wp-content/uploads/2021/06/windows-11-file-explorer.jpeg" />
				</li>
				<li style="border:0px;font-size:16px;padding:0px;vertical-align:baseline;text-align:center;">
					<img alt="windows-11-pro" data-ratio="75.10" style="border:0px;font-size:16px;padding:0px;vertical-align:baseline;" width="719" src="https://cdn.wccftech.com/wp-content/uploads/2021/06/windows-11-pro-1480x1113.png" /><br />
					<br />
					<br />
					<br />
					<strong><a href="https://wccftech.com/windows-11-leaks-full-of-design-improvements/" rel="external nofollow">Source</a></strong>
				</li>
			</ul>
		</div>
	</div>
</div>
]]></description><guid isPermaLink="false">609</guid><pubDate>Tue, 15 Jun 2021 18:48:36 +0000</pubDate></item><item><title>French search firm Qwant seeks &#x20AC;8M Huawei bailout loan</title><link>https://nsaneforums.com/news/software-news/french-search-firm-qwant-seeks-%E2%82%AC8m-huawei-bailout-loan-r605/</link><description><![CDATA[<p>
	<span style="font-size:28px;"><strong>French search firm Qwant seeks €8M Huawei bailout loan</strong></span>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:18px;"><strong>Qwant has been held up as a digital champion by President Emmanuel Macron.</strong></span>
</p>

<p>
	 
</p>

<p>
	PARIS — French search engine Qwant is seeking €8 million from Chinese telecom giant Huawei in an effort to stay afloat, according to documents seen by POLITICO.
</p>

<p>
	 
</p>

<p>
	Qwant CEO Jean-Claude Ghinozzi asked shareholders on May 18 to accept €8 million in funding via convertible bonds from Hubble, Huawei’s venture capital arm based in Hong Kong, the documents show.
</p>

<p>
	 
</p>

<p>
	The move comes as Qwant, which is partly funded by French public money, aims to shore up its finances. Launched in 2013 and soon backed by French President Emmanuel Macron and European Commission Vice President Margrethe Vestager, Qwant was designed to become a rival to U.S. search giant Google and bolster the EU's tech sector amid wider efforts to wean the Continent off dependence on foreign companies.
</p>

<p>
	 
</p>

<p>
	Financial backing could mean the Chinese player gains a say over the company's operations, at a time when Huawei stands accused by several governments of spying and has been pushed out of key markets.
</p>

<p>
	 
</p>

<p>
	Despite geopolitical tensions surrounding Huawei, the French state-owned bank Caisse des Dépôts — a Qwant shareholder — voted in favor of the financial operation, according to one of the people who attended the May 18 meeting.
</p>

<p>
	 
</p>

<p>
	The Caisse des Dépôts declined to comment. A person involved in the matter said the bank had been reassured by the fact that Huawei did not have the power to convert its bonds as it wanted.
</p>

<p>
	 
</p>

<p>
	This type of financial operation, which is quite common in the startup world, aims to bail out Qwant after years of losses via a three-year loan at a 4.5 percent interest rate. The company lost €13 million in 2020, €23 million in 2019 and €11.2 million in 2018 for revenues that amount respectively for €7.5 million, €5.8 million and €3 million. 
</p>

<p>
	 
</p>

<p>
	But the mechanism also makes it possible for investors like Huawei to turn its bonds into shares under strict conditions. As a shareholder, the company could potentially gain visibility or influence on the company's strategy.
</p>

<p>
	 
</p>

<p>
	Among other conditions, the company needs to obtain “administrative authorizations,” before asking for a conversion in two years and become a shareholder owning only “between 5 and 7.5 percent” of Qwant, the document reads. The parties declined to comment on who would issue such an authorization.
</p>

<p>
	 
</p>

<p>
	A spokesperson for Qwant said the bond financing was a continuation of an existing partnership with Huawei, which did not mean the Chinese firm would take an equity stake.
</p>

<p>
	 
</p>

<p>
	"This is an investment via a bond. It is not an entry into Qwant's capital. It is a vehicle to finance our expansion, and importantly it's with a crucial global player that recognizes the solidity of our technology and the reality of our project."
</p>

<p>
	 
</p>

<p>
	"Concretely, with its bond investment, Huawei is helping Qwant to develop and gain scale on a European level for all of the brand's smartphones that will be put on the market in France, Germany and Italy," the spokesperson added.
</p>

<p>
	 
</p>

<p>
	Huawei did not immediately respond to a request for comment. A spokesperson for Axel Springer, which is also an investor in Qwant via Axel Springer Digital Ventures, declined to comment. Axel Springer is a co-owner of POLITICO Europe.
</p>

<p>
	 
</p>

<p>
	Huawei's partnership with Qwant dates back to March 2020 when the two companies announced they would cooperate on mobile devices, with Qwant being installed by default on Huawei’s P40 smartphones in some European countries. Huawei has been deprived of Google’s products because of a conflict with the American administration. 
</p>

<p>
	 
</p>

<p>
	The Qwant-Huawei partnership had been in the pipeline since November 2018, several insiders told POLITICO.
</p>

<p>
	 
</p>

<p>
	Financial details of the deal have not been disclosed, but they included sharing advertising revenue that P40 users would generate on Qwant’s search engine.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.politico.eu/article/french-search-engine-qwant-huawei-bailout-loan/" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">605</guid><pubDate>Tue, 15 Jun 2021 15:27:42 +0000</pubDate></item><item><title>Europe's Software Problem</title><link>https://nsaneforums.com/news/software-news/europes-software-problem-r604/</link><description><![CDATA[<p>
	<strong><span style="font-size:48px;">Europe's Software Problem</span></strong>
</p>

<p>
	 
</p>

<p>
	Europe’s communication needs are currently almost exclusively delivered by Chinese hardware that connects us to US-based platforms. For a variety of reasons, this is not a good idea.
</p>

<p>
	 
</p>

<p>
	As stated recently by Charles Michel, President of the European Council, “<em><u>Interdependence is natural, even desirable. Over-dependence, however, is not</u></em>”.
</p>

<p>
	 
</p>

<p>
	At the core, the problem is that almost no consumer-oriented platforms or software products are being created in Europe, or more precisely, by European companies.
</p>

<p>
	 
</p>

<p>
	Almost all software and (communication) services these days are provided (nearly) for free. The software comes with your computer, the service comes with the phone, or perhaps it is an app that costs a few euros at most.
</p>

<p>
	 
</p>

<p>
	There are of course exceptions, gaming is one, but in general software and services aimed at consumers are made available without explicit payment. This includes browsers and almost all our modes of communication (email, chat, video) or collaboration (file exchange, calendaring, document editing).
</p>

<p>
	 
</p>

<p>
	So why would anyone develop such free platforms? Programmers and hardware are still pretty expensive. There must be a plan.
</p>

<p>
	 
</p>

<p>
	In many countries there is a deeply held belief that it will always be possible to eventually exploit users in order to make money, even if you currently aren’t yet sure how you’ll do that.
</p>

<p>
	 
</p>

<p>
	Possibilities include monetizing users' behaviour, or more nefariously, once a platform is dominant, abuse its position to make other people pay up if they want to do business with your users (or simply reach them). This is called rent-seeking.
</p>

<p>
	 
</p>

<p>
	As an example, Apple and Google have recently booted a large gaming company from their platform to make sure they get their 30% cut. To access Android and Apple users, you’ll have to get out your wallet.
</p>

<p>
	 
</p>

<p>
	Over the past two decades, giving away free software (or running it for users as a platform) has proven to be profitable in the long run, mostly by extracting money indirectly, often through unkind or exclusionary means.
</p>

<p>
	 
</p>

<p>
	<strong style="font-size:24px;">Enter Europe</strong>
</p>

<p>
	 
</p>

<p>
	European companies generally do not operate like this. For one, we lack the imagination and vision to launch something without knowing how it might eventually make money. This may be good or bad depending how you look at it.
</p>

<p>
	 
</p>

<p>
	European investors specifically are much more interested in traditional business plans than US venture capitalists. “Data is the new oil” does not translate well into German, French or Spanish.
</p>

<p>
	 
</p>

<p>
	In addition, with the GDPR, NIS (2) Directive &amp; other regulations, data in Europe is definitely more “the new toxic waste”. It is in any case not a business plan.
</p>

<p>
	 
</p>

<p>
	So not only do we lack the imagination to launch free platforms, the path to one day making money with them is blocked by regulation.
</p>

<p>
	 
</p>

<p>
	<span style="font-size:24px;"><strong>The result</strong></span>
</p>

<p>
	 
</p>

<p>
	Europe gets its “free” services from the US (and the hardware from China), and both of these countries now operate our consumer communication platforms.
</p>

<p>
	 
</p>

<p>
	In addition, US companies have taken the economies of scale from consumer communications and have turned these into highly affordable business communication tooling as well (G-suite/Google Workplace, Office 365, Teams).
</p>

<p>
	 
</p>

<p>
	For various reasons, handing over the vast majority of your communications to people far away is a bad idea. Notably Chinese and US laws offer no meaningful privacy protections for European citizens.
</p>

<p>
	 
</p>

<p>
	<span style="font-size:24px;"><strong>Attempted solutions</strong></span>
</p>

<p>
	<br />
	Through various kinds of regulations it has been attempted to make transferring data to countries with inadequate privacy regimes illegal. Both in theory and practice this has not worked. US stuff simply is more inviting to use - as it should be, money is being made by us using it.
</p>

<p>
	 
</p>

<p>
	In earlier times, software (and communications) were far more interoperable than today. This made it possible for projects from different countries and companies to interoperate, which allowed for some competition. You could at least attempt to (re)join the party. Try “interoperating” with WhatsApp one day.
</p>

<p>
	 
</p>

<p>
	Around 2007, telecommunications companies made one last attempt to take this standards based world to the Internet.
</p>

<p>
	 
</p>

<p>
	The functionalities now delivered by WhatsApp, WeChat, iMessage etc were packaged up in the “Rich Communication Services” protocol suite, also known as Joyn.
</p>

<p>
	 
</p>

<p>
	When launched in 2007 however, such standardised communications turned out not to be competitive with free services (for many reasons, including regulatory). So all communications are now on proprietary or exclusionary platforms – it is for example getting hard to deliver email from your own mail infrastructure without ending up in a spam folder over at Gmail.
</p>

<p>
	 
</p>

<p>
	So in effect, outlawing selling our data to the US has not worked, and neither has a program of going for interoperable standards based communications – the results simply aren’t compelling enough.
</p>

<p>
	 
</p>

<p>
	Something big will have to happen before we’ll be able to compete with “free” platforms from other countries.
</p>

<p>
	 
</p>

<p>
	<span style="font-size:24px;"><strong>The inevitable solution</strong></span>
</p>

<p>
	<br />
	If Europe wants to have its citizens (and companies) rely significantly on European-operated software, it has no choice but to develop better software, and to also offer that for free. The good news is: we have the talent. Tens of thousands of Europeans work for US tech companies, often from Europe even.
</p>

<p>
	 
</p>

<p>
	Another problem we should not have is funding.
</p>

<p>
	 
</p>

<p>
	The amounts of money involved in software development are trivial on an EU-wide scale. The EU spends several billions every year on worthy infrastructure projects like Copernicus (Climate satellites) and navigation (Galileo). Hundreds of billions are spent on research.
</p>

<p>
	 
</p>

<p>
	There is definitely enough money to author things like a web browser, chat, email and video conferencing facilities. This would only require the equivalent of a few days of Corona recovery fund money. It will still cost real money though – we don’t need “government-grade” or typical clunky open source software, we need very compelling apps and services that can compete on quality.
</p>

<p>
	 
</p>

<p>
	It is amazing what a billion euros could get you, with only a two-euro tax on every EU citizen! But it would deliver great things – free communication platforms that we do run ourselves, and that do not track our citizens for the benefit of foreign companies and advertisers.
</p>

<p>
	 
</p>

<p>
	<span style="font-size:24px;"><strong>The remaining challenge</strong></span>
</p>

<p>
	<br />
	Although the money can definitely be found, it is not easy for any government to support/fund innovative projects, specifically software. Public procurement is a terrible way to spend money. Otherwise useful programs like Horizon Europe are also not set up to deliver this. Consumer-facing software needs to change at a rapid clip, with several major releases every year. Current government procurement for billion euro projects would be happy to buy anything at all in a three year timeframe. H2020 funding also does not work well if you want to be dynamic about your goals.
</p>

<p>
	 
</p>

<p>
	With enough political will however, it should be possible to find structures to fund European programmers to write compelling software for Europeans. Some of the recent Corona App programs may prove instructive. This might also involve things like contests or other non-traditional constructions.
</p>

<p>
	 
</p>

<p style="margin-left:40px;">
	<em>In this context I am particularly fond of the German Federal agency for disruptive innovation, SPRIND (“A home for people with radical new ideas”), headed by my friend Rafael Laguna.</em>
</p>

<p>
	 
</p>

<p>
	But it won’t be easy - stimulating innovation with money is extremely hard. Chances are you’ll only be stimulating existing big companies, who might not even be European.
</p>

<p>
	 
</p>

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

<p>
	<br />
	Europe nearly exclusively communicates through US platforms, using Chinese hardware. Interdependence is good, but this is over-dependence.
</p>

<p>
	 
</p>

<p>
	The world is dominated by “free” software and platforms, for which we pay by other means (like rent-seeking and surveillance). European software companies can’t (and won’t) fund themselves this way. Our attempt to forbid foreign software from funding itself with data is worthy, but has failed to foster attractive European software.
</p>

<p>
	 
</p>

<p>
	Since all communication platforms are now free, the only way to get people to use competitive European software and services is to also offer these for free, and to make sure this technology is very good and compelling. A very minor EU contribution could pay for all this.
</p>

<p>
	 
</p>

<p>
	The remaining non-trivial challenge is how to turn such EU funding into quality software – existing mechanisms like public procurement and Horizon Europe are not up to the job.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://berthub.eu/articles/posts/europes-software-problem/" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">604</guid><pubDate>Tue, 15 Jun 2021 15:21:38 +0000</pubDate></item><item><title>At one point Microsoft was considering directional lighting effects for Windows 7 UI</title><link>https://nsaneforums.com/news/software-news/at-one-point-microsoft-was-considering-directional-lighting-effects-for-windows-7-ui-r596/</link><description><![CDATA[<h1 class="entry-title">
	At one point Microsoft was considering directional lighting effects for Windows 7 UI
</h1>

<p>
	 
</p>

<p>
	For many, the journey from Windows Vista’s Aero Glass to the Metro UI in Windows 8 and Windows 10 was a major step backwards, but I think few could have imagined just how radical some of Microsoft’s UI ideas were in the past.
</p>

<p>
	 
</p>

<p>
	Stephan Chapman has been posting historical mockups, pictures and video from the history of Windows, and today posted a short clip showing how Microsoft was considering adding ray-traced-like lighting animation effects to Windows 7.
</p>

<div class="wp-video" style="width: 640px;">
	<p>
		 
	</p>

	<div class="ipsEmbeddedOther" contenteditable="false">
		<iframe __idm_frm__="587" allowfullscreen="" class="ipsEmbed_finishedLoading" data-controller="core.front.core.autosizeiframe" data-embedid="embed974244295" scrolling="no" src="https://nsaneforums.com/index.php?app=core&amp;module=system&amp;controller=embed&amp;url=https://twitter.com/beta_collector/status/1404494456808747013?ref_src=twsrc%255Etfw%257Ctwcamp%255Etweetembed%257Ctwterm%255E1404494456808747013%257Ctwgr%255E%257Ctwcon%255Es1_%26ref_url=https://malwaretips.com/threads/early-windows-7-prototype-ui-shows-off-directional-lighting-effects.108680/" style="overflow: hidden; height: 704px;"></iframe>
	</div>
</div>

<p>
	<a href="https://twitter.com/beta_collector/status/1404494456808747013" rel="external nofollow" target="_blank">He said:</a>
</p>

<blockquote>
	<p>
		Here’s a snippet from a fascinating, super-early Windows 7 prototype that really reimagines the desktop environment. I’d love to see something like this today taking advantage of raytracing to really accomplish some neat effects, interactions, etc.!
	</p>
</blockquote>

<p>
	Chapman appears to suggest Microsoft rapidly dropped the idea, but it seems the skeuomorphic pendulum is swinging the other direction again (just look at the new Windows 11 shell icons), so who knows, maybe this UI concept will make a comeback.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://mspoweruser.com/at-one-point-microsoft-was-considering-ray-traced-lighting-effects-for-windows-7-ui/" rel="external nofollow">At one point Microsoft was considering directional lighting effects for Windows 7 UI</a>
</p>

<p>
	 
</p>

<p>
	(tweet substituted for article video)
</p>
]]></description><guid isPermaLink="false">596</guid><pubDate>Tue, 15 Jun 2021 07:56:24 +0000</pubDate></item><item><title>Google&#x2019;s unified Gmail interface (and Google Chat) launches for everyone</title><link>https://nsaneforums.com/news/software-news/google%E2%80%99s-unified-gmail-interface-and-google-chat-launches-for-everyone-r592/</link><description><![CDATA[<header>
	<h1 itemprop="headline">
		Google’s unified Gmail interface (and Google Chat) launches for everyone
	</h1>

	<h2 itemprop="description">
		Gmail's new do-it-all interface is thankfully optional.
	</h2>
</header>

<section>
	<div itemprop="articleBody">
		<div>
			 
		</div>

		<div>
			<img alt="chrome_QDBGmaAxSE-980x590.png" class="ipsImage" data-ratio="75.10" height="433" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2021/06/chrome_QDBGmaAxSE-980x590.png">
		</div>

		<div>
			The new, unified Gmail rolling out to consumers today. In the sidebar, you get buttons for Gmail Inbox, Google Chat chats, Google Chat rooms, and Google Meet. You can also open this split-screen Google Docs view.
		</div>

		<div>
			<br>
			<img alt="chrome_fSXmLeesdg-980x593.png" class="ipsImage" data-ratio="75.10" height="435" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2021/06/chrome_fSXmLeesdg-980x593.png">
		</div>

		<div>
			The "Welcome to Chat in Gmail" message.
		</div>

		<div>
			<br>
			<img alt="56-980x2018.jpg" class="ipsImage" data-ratio="75.10" height="540" width="262" src="https://cdn.arstechnica.net/wp-content/uploads/2021/06/56-980x2018.jpg">
		</div>

		<div>
			The Gmail app, with new navigation buttons at the bottom. (This is just a test account, so it's full of spam.)
		</div>

		<div>
			<br>
			<img alt="chrome_NPjLaiEISG.png" class="ipsImage" data-ratio="64.11" height="293" width="457" src="https://cdn.arstechnica.net/wp-content/uploads/2021/06/chrome_NPjLaiEISG.png">
		</div>

		<div>
			This "Active" button is your Google Chat status. 
		</div>

		<div>
			<br>
			<img alt="chrome_T7EwQNt42Y.png" class="ipsImage" data-ratio="94.18" height="421" width="447" src="https://cdn.arstechnica.net/wp-content/uploads/2021/06/chrome_T7EwQNt42Y.png">
		</div>

		<div>
			The menu.
		</div>

		<div>
			 
		</div>

		<div>
			Google is moving <a href="https://blog.google/products/workspace/google-workspace-everyone" rel="external nofollow">two big features</a> from Google Workspace (Google's paid tier of business Google accounts, formerly called "G Suite") to free, consumer Google accounts. Google Chat, the company's latest messaging app, is now open to everyone. And Gmail's big merger with Google Chat, Google Docs, and Google Meet (Google's Zoom competitor) is also coming to consumer accounts.
		</div>
	</div>
</section>

<p>
	 
</p>

<p>
	Almost <a href="https://arstechnica.com/gadgets/2020/07/leaked-slides-show-gmail-merging-with-google-docs-meet-and-chat/" rel="external nofollow">a year ago</a>, Google announced a significant change for Gmail that would turn it from a simple email app into a "single, integrated experience" where you could send email, chat, work on a Google Doc, and make video calls, all from one browser-based super-app. In August, this change <a href="https://arstechnica.com/gadgets/2020/08/gmails-all-in-one-productivity-revamp-starts-rolling-out-to-gsuite-users/" rel="external nofollow">started rolling out</a> to paid Google Workspace accounts, and it has experimentally appeared on some consumer accounts. Today, though, Google is officially making the feature available to all Google users.
</p>

<p>
	 
</p>

<p>
	The "unified" Gmail UI mostly takes the form of a segmented sidebar design with all sorts of Google apps in it. Gmail has long featured a segmented sidebar that includes a chat program—first Google Talk (from 2005), then Google Hangouts (2013), and currently Google Chat (2018). With today's change, there are new sections with a spot for Google Chat "rooms" (or group chats, which are now separate from regular contacts) and a section for Google Meet (so you can make video calls).
</p>

<p>
	 
</p>

<p>
	Although it's not in the sidebar, Google Docs also have Gmail integration. If someone pastes a Google Docs link into Google Chat, you can mouse over the thumbnail and click "Open in Chat," which will open the Google Doc inside a new, multipane interface inside Gmail, with your navigation sidebar on the left. A split-screen interface with Google Chat on the left and the Google Doc on the right will also appear. "Open in Chat" seems like an odd name for this button since it's opening the document inside Gmail.com, but this split-screen interface does not actually work if you receive the link via email. The interface also doesn't work if you have Chat in a pop-up window. Chat has to be shown in a full-screen interface for the button to appear.
</p>

<p>
	 
</p>

<p>
	Another new widget you'll probably spot in the Gmail UI is the selectable Google Chat status in the top right corner. Normally, this status says "Active" and has a green dot next to it, but you can switch to "Do not disturb" or "Invisible" so you can get some work done.
</p>

<p>
	 
</p>

<p>
	"Starting today, you can enable the integrated experience in Google Workspace by <a data-analytics-onclick='{"event":"page interaction","category":"in-article links","action":"link click","label":"https://support.google.com/mail/answer/9341104"}' href="https://support.google.com/mail/answer/9341104" rel="external nofollow" target="_blank">turning on Google Chat</a>," Google says. Hiding the unified Gmail interface behind the "Google Chat" flag doesn't make a ton of sense, but you can check this box by going to settings -&gt; "Chat and Meet" and flipping the "Chat" setting from "Classic Hangouts" to "Google Chat." If you hate the idea of all this extra stuff inside Gmail, you can turn the "Chat" setting to "Off" and the Google Meet setting to "hide." That should give you regular Gmail.
</p>

<h2>
	Google Chat for everyone
</h2>

<figure>
	<a alt="Google Chat. It's fine." data-height="771" data-width="1118" href="https://cdn.arstechnica.net/wp-content/uploads/2021/06/54.jpg" rel="external nofollow"><img alt="Google Chat. It's fine." data-ratio="75.10" src="https://cdn.arstechnica.net/wp-content/uploads/2021/06/54-980x676.jpg"></a>

	<figcaption>
		<div>
			<a data-height="771" data-width="1118" href="https://cdn.arstechnica.net/wp-content/uploads/2021/06/54.jpg" rel="external nofollow">Enlarge</a> / Google Chat. It's fine.
		</div>

		<div>
			Ron Amadeo
		</div>
	</figcaption>
</figure>

<p>
	Also in today's batch of announcements: Google Chat, Google's latest messaging app, is rolling out for all consumer accounts. Google Chat has had a long and eventful life as a service. It was first announced <a href="https://arstechnica.com/gadgets/2017/03/google-is-turning-hangouts-into-a-slack-competitor/" rel="external nofollow">in 2017</a> as "Hangouts Chat" and was exclusive to Google Workspace/GSuite. It was Google's competitor to Slack, the <a href="https://arstechnica.com/gadgets/2020/12/salesforce-acquires-slack-for-27-7-billion/" rel="external nofollow">$27 billion</a> enterprise chat app, and was renamed three years later to "Google Chat." Starting today, Google Chat is also being drafted into service as a consumer chat app and will eventually replace Google Hangouts, Google's most popular chat product.
</p>

<p>
	 
</p>

<p>
	Google has launched (and shut down) many chat apps over the years—Google Talk, Voice, Buzz, Disco, Google+ Messenger, Hangouts, Spaces, Allo, etc.—but one user base has kept it all running throughout this chaos. The original Google Talk user base from 2005 was upgraded to Google Hangouts in 2013, and now those Google Hangouts users will be upgraded to Google Chat at some point. Google Chat is already cross-compatible with Google Hangouts—your contacts and messages in one app will show up in the other—Google just needs to kick users off the old Hangouts clients and get them running on the new Google Chat clients.
</p>

<p>
	 
</p>

<p>
	Rolling Google Chat out to everyone is the first step in that process. Presumably, we'll eventually see prompts in the old Hangouts clients to switch to Google Chat, while Google Hangouts will finally undergo the promised shutdown that has been delayed several times now.
</p>

<p>
	 
</p>

<p>
	I've had early access to Google Chat for a while now, and if you're wondering what the difference is between the old Google Hangouts and the new Google Chat, the answer is "not much." That's actually a good thing. Google's previous efforts to replace Hangouts, such as <a href="https://arstechnica.com/gadgets/2016/09/google-allo-is-incomplete-but-assistant-is-the-companys-future/" rel="external nofollow">Google Allo</a>, have been woefully inadequate in terms of missing features and client support. Google Chat is functionally the same as Hangouts. The two big differences are that chat rooms support @ mentions now, which will be great for bigger rooms, and rooms are separate from the individual contact list, just like in Slack. The result is neither a dramatic upgrade nor downgrade, but Google Chat does have more modern clients. Plus, unlike Hangouts, Google Chat will keep running for the foreseeable future.
</p>

<h2>
	Another new Gmail interface—and something called “Spaces”
</h2>

<figure>
	<a alt="Google's blog post shows a new Gmail interface with gray borders around a white content area." data-height="625" data-width="1000" href="https://cdn.arstechnica.net/wp-content/uploads/2021/06/Spaces_Consumer_Mock_-_Fam_Reunion.max-1000x1000.png" rel="external nofollow"><img alt="Google's blog post shows a new Gmail interface with gray borders around a white content area." data-ratio="75.10" src="https://cdn.arstechnica.net/wp-content/uploads/2021/06/Spaces_Consumer_Mock_-_Fam_Reunion.max-1000x1000-980x613.png"></a>

	<figcaption>
		<div>
			<a data-height="625" data-width="1000" href="https://cdn.arstechnica.net/wp-content/uploads/2021/06/Spaces_Consumer_Mock_-_Fam_Reunion.max-1000x1000.png" rel="external nofollow">Enlarge</a> / Google's blog post shows a new Gmail interface with gray borders around a white content area.
		</div>
	</figcaption>
</figure>

<p>
	The Gmail interface that is rolling out to everyone today was announced a year ago. Today (along with the announcement post), Google showed off another new Gmail interface and a new Google Chat feature called "Spaces." Meanwhile, Spaces gets a <a href="https://cloud.google.com/blog/products/workspace/helping-business-with-new-additions-to-google-workspace" rel="external nofollow">separate blog post all to itself</a>. The update sounds like a revamp to Google Chat's group chat feature, which used to be called "Rooms" and from now on will be called "Spaces." (Google already had a product <a href="https://web.archive.org/web/20170226213415/https://support.google.com/spaces/answer/7326586" rel="external nofollow">called "Spaces</a>"—it was a messaging app that launched in 2016 and was shut down eight months later.)
</p>

<p>
	 
</p>

<p>
	The blog post mentions that Google Chat Spaces will include "new features like in-line topic threading, presence indicators, custom statuses, expressive reactions, and a collapsible view." Google Chat already has reactions and presence indicators, so it's unclear what the blog post is talking about there, but in-line topic threading would make the service more Slack-like. Both of Google's blog posts today are so packed with flowery marketing language and devoid of specifics that readers will have a challenge parsing what is changing and what the new features are. One of the posts says:
</p>

<blockquote>
	<p>
		Spaces can provide a place to fuel knowledge sharing and community building for teams of all sizes, where all the relevant information, conversations, and files for a project can be organized, and where topics—even at the organization level—can be intelligently moderated. With the ability to pin messages where everyone can see them, Spaces will play a crucial role in helping people stay connected and informed as hybrid work evolves.
	</p>
</blockquote>

<p>
	Right. Sounds like a chat room to me.
</p>

<p>
	 
</p>

<p>
	What's more interesting is that the Spaces screenshots show a bunch of changes to the Gmail interface. Most of the navigational UI area is gray in these screenshots. The sidebar, the top search and settings area, and the right-side panel are all gray, while today, those spots are white and blend in with the main content area.
</p>

<p>
	 
</p>

<p>
	The sidebar buttons are all styled differently with icons and text; today, the buttons show icons when collapsed and text when moused over. The buttons also seem to be clickable navigation items in this screenshot, whereas the sidebar is presently only an accordion-style list—you can click on an arrow next to "Chat" to expand the chat list in the sidebar, but clicking on the "Chat" title doesn't do anything.
</p>

<p>
	 
</p>

<p>
	There are also three person-shaped icons in the lower left-hand corner. It's unclear what those are. The icons for the group-chat participants still live in the top right corner of this screenshot. If they are DMs, you would think the "Chat" icon would have a notification number next to them the way the "Mail" icon does. Strange. Google doesn't acknowledge this redesign in its blog post at all, so we'll need to wait until the redesign rolls out for more info.
</p>

<p>
	 
</p>

<p>
	Listing image by <a href="https://about.google/" rel="external nofollow">Google</a>
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/gadgets/2021/06/gmails-big-merger-with-google-chat-meet-and-docs-launches-for-everyone/" rel="external nofollow">Google’s unified Gmail interface (and Google Chat) launches for everyone</a>
</p>
]]></description><guid isPermaLink="false">592</guid><pubDate>Tue, 15 Jun 2021 00:12:52 +0000</pubDate></item><item><title>Microsoft Search will soon offer Actionable Items</title><link>https://nsaneforums.com/news/software-news/microsoft-search-will-soon-offer-actionable-items-r590/</link><description><![CDATA[<article>
	<h1>
		Microsoft Search will soon offer Actionable Items
	</h1>

	<p>
		 
	</p>

	<p>
		Microsoft is rolling out actionable items to Microsoft Search. After this change, search results will be supplemented with an assistive action menu.
	</p>

	<p>
		 
	</p>

	<p>
		The search box itself will also command the application where you are working. For example, begin typing “acc” in Word to get list of suggested actions such as Accept Revision or Accessibility Checker. Other options include opening results in the browser or client, download, share, or copy links to search results to help with task completion. You no longer need to hunt through toolbars to look for a command.
	</p>

	<p>
		 
	</p>

	<p>
		The feature will begin rolling this out in mid-June to Targeted Release and expect to complete rollout late June.
	</p>

	<p>
		 
	</p>

	<p>
		Standard release will begin rolling this out in late June and expect to complete rollout mid-July.
	</p>
</article>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://mspoweruser.com/microsoft-search-will-soon-offer-actionable-items/" rel="external nofollow">Microsoft Search will soon offer Actionable Items</a>
</p>
]]></description><guid isPermaLink="false">590</guid><pubDate>Tue, 15 Jun 2021 00:04:42 +0000</pubDate></item><item><title>Ubuntu Pro arrives in premium form on Google's Cloud</title><link>https://nsaneforums.com/news/software-news/ubuntu-pro-arrives-in-premium-form-on-googles-cloud-r584/</link><description><![CDATA[<p>
	<span style="font-size:28px;"><strong>Ubuntu Pro arrives in premium form on Google's Cloud</strong></span>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:18px;"><strong>Lengthy support for enterprises that prefer things just so</strong></span>
</p>

<p>
	 
</p>

<p>
	Ubuntu Pro is coming to Google Cloud, replete with an all-important 10-year maintenance commitment for corporate punters who like things stable.
</p>

<p>
	 
</p>

<p>
	While Canonical's Ubuntu is hardly new to Google's Cloud, the Pro edition joins other enterprise favourites in the premium category, such as Red Hat Enterprise Linux and SUSE Linux Enterprise Server.
</p>

<p>
	 
</p>

<p>
	The lengthy support window is based at least in part on Canonical's Extended Security Maintenance (ESM) programme. ESM means eight years for Ubuntu 16.04 LTS (to 2024), 10 years for 18.04 LTS (to 2028), and support until 2030 for 20.04 LTS.
</p>

<p>
	 
</p>

<p>
	During the support period, customers paying for Ubuntu Pro on Google Cloud will get live kernel patching as well as patching of high and critical CVEs for Ubuntu's repository (which includes the likes of Node.js, MongoDB, and Apache Kafka).
</p>

<p>
	 
</p>

<p>
	Canonical's wares can be found in a variety of clouds; Ubuntu Pro (replete with 10 years of support for recent LTS editions and live kernel patching) is available on Microsoft's Azure and AWS with FIPS 140-2 and Common Criteria EAL2 certified components. The latter is not due to arrive on Google Cloud until the second half of 2021.
</p>

<p>
	 
</p>

<p>
	The duo reckon that "Ubuntu Pro will be 3-4.5 per cent of your average computing cost." Similar savings are also claimed for Azure, which says: "Ubuntu Pro pricing tracks the underlying compute cost, starting at under $0.01 for the smallest B1 ls instance type, and ramping down to less than 1 per cent of hourly compute."
</p>

<p>
	 
</p>

<p>
	As with all "average" figures, your mileage may vary significantly.
</p>

<p>
	 
</p>

<p>
	For Google Cloud, the charge is based on licence cost for RAM per GB per hour, plus for vCPU per hour and per GPU per hour (if the latter is in use.) RAM weighs in at a flat rate of $0.000127 per GB/hour while CPU and GPU are on a sliding scale depending on quantity.
</p>

<p>
	 
</p>

<p>
	The cost is in addition to the regular cost of running the VM, meaning that some calculations will be needed to avoid an alarming invoice at the end of the month. ®
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.theregister.com/2021/06/14/ubuntu_pro_gcp/" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">584</guid><pubDate>Mon, 14 Jun 2021 23:45:48 +0000</pubDate></item><item><title>Microsoft announces the roll out Windows 10 Cumulative Update Build 21390.2025</title><link>https://nsaneforums.com/news/software-news/microsoft-announces-the-roll-out-windows-10-cumulative-update-build-213902025-r578/</link><description><![CDATA[<article>
	<h1 class="entry-title">
		Microsoft announces the roll out Windows 10 Cumulative Update Build 21390.2025
	</h1>

	<p>
		 
	</p>

	<p>
		Microsoft today announced the release of Windows 10 Cumulative Update Build 21390.2025 (KB5004123). This update does not include any new features and is designed to test Microsoft’s servicing pipeline. It is the third servicing test on build 21390.
	</p>

	<p>
		 
	</p>

	<p>
		What’s new in Windows 10 Build 21390:
	</p>

	<blockquote>
		<h2>
			Changes and Improvements
		</h2>

		<ul>
			<li>
				As part of our ongoing iconography improvements, Task Manager and MSI installers now have new Fluent icons.
			</li>
			<li>
				You can now set Windows Terminal Preview as your default terminal emulator on Windows – please see <a href="https://devblogs.microsoft.com/commandline/windows-terminal-preview-1-9-release/" rel="external nofollow" target="_blank">this blog post</a> for details. This requires Windows Terminal Preview version 1.9 (or higher).
			</li>
		</ul>

		<h2>
			Fixes
		</h2>

		<ul>
			<li>
				We fixed an issue causing the news and interests text on the taskbar to appear blurry on some resolutions and scaling factors.
			</li>
			<li>
				We fixed an issue resulting in certain punctuation not being displayed correctly when the display language was Chinese.
			</li>
			<li>
				We fixed a svchost.exe crash related to cdp.dll that some Insiders have been experiencing in recent builds.
			</li>
			<li>
				We fixed an issue impacting Start reliability in recent flights.
			</li>
			<li>
				We fixed an issue where when using dark mode, the text in the File Explorer search box would be black on a black background. Please note this only addresses this dark theme issue in File Explorer, we are continuing to investigate a second issue impacting dark theme when using Search in the taskbar.
			</li>
			<li>
				We fixed an issue in recent flights where a folder might not retain keyboard focus after being renamed in File Explorer.
			</li>
			<li>
				We fixed an issue resulting in Task Manager showing the incorrect icon for some processes.
			</li>
			<li>
				We fixed a second issue causing some devices to fail when updating to this build with error code 0xc1900101. If you continue to receive this error code when attempting to update, please file a new feedback item.
			</li>
			<li>
				[ADDED 5/27] We have re-enabled the functionality where if a folder under the Start menu’s all apps list only contains a single item, we will now display that item in place of the folder on the Start menu.
			</li>
		</ul>

		<h2>
			Known issues
		</h2>

		<ul>
			<li>
				The Windows Camera App currently does not respect the default brightness setting set via the new Camera Settings page.
			</li>
			<li>
				We’re investigating an issue where Search results are unexpectedly no longer following dark theme as of recent flights.
			</li>
			<li>
				[News and interests] We’re investigating an issue where the flyout may occasionally flash in the top left corner of your screen after clicking the button on your taskbar.
			</li>
		</ul>
	</blockquote>

	<p>
		Source: <a href="https://blogs.windows.com/windows-insider/2021/05/26/announcing-windows-10-insider-preview-build-21390/" rel="external nofollow" target="_blank">Microsoft</a>
	</p>
</article>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://mspoweruser.com/microsoft-announces-the-roll-out-windows-10-cumulative-update-build-21390-2025/" rel="external nofollow">Microsoft announces the roll out Windows 10 Cumulative Update Build 21390.2025</a>
</p>
]]></description><guid isPermaLink="false">578</guid><pubDate>Mon, 14 Jun 2021 21:41:42 +0000</pubDate></item><item><title>WinRAR 6.02 update includes security improvements</title><link>https://nsaneforums.com/news/software-news/winrar-602-update-includes-security-improvements-r577/</link><description><![CDATA[<h1>
	WinRAR 6.02 update includes security improvements
</h1>

<div>
	 
</div>

<div>
	<p>
		WinRAR is a popular commercial archive creation and extraction program, best known for supporting the RAR archive format.
	</p>

	<p>
		 
	</p>

	<p>
		WinRAR 6.02 was released earlier today and is available for download on the official website already. The update introduces important security improvements as well as other non-security related improvements and bug fixes.
	</p>

	<p>
		 
	</p>

	<p>
		A click on Help &gt; About WinRAR displays the installed version on the device.
	</p>

	<p>
		 
	</p>

	<p>
		<img alt="winrar 6.02" data-ratio="60.97" loading="lazy" style="width: 720px; height: 439px;" width="720" src="https://mk0ghacksnety2pjrgh8.kinstacdn.com/wp-content/uploads/2021/06/winrar-6.02.png">
	</p>

	<p>
		 
	</p>

	<p>
		The official WinRAR 6.02 changelog lists two security-related improvements. The application uses HTTPS instead of HTTP from now on for its web notification window, home page and themes links. Additional checks have been implemented to make the web notifier more robust against potential threats.
	</p>

	<p>
		 
	</p>

	<p>
		An attacker needed to use advanced attacks that involved spoofing or gaining control over the DNS settings of a device, but would be able to use malicious webpages to execute existing files on a user system, if executed correctly. The move to HTTPS prevents this attack scenario entirely.
	</p>

	<p>
		 
	</p>

	<p>
		The second security-related change improves the handling of malformed archives. WinRAR 6.01 prevented the extraction of contents already, but WinRAR 6.02 improves that by refusing to process SFX (self-extracting) commands stored in archive comments if the comments reside after the beginning of the Authenticode digital signature; this is done to prevent attacks that abuse the loophole.
	</p>

	<p>
		 
	</p>

	<p>
		On the usability side, improvements are found in several areas. Error messages thrown by SFX archives will provide users with additional information in WinRAR 6.02. Previously, errors stated "cannot create file" only, which did not reveal the reason for the error. In WinRAR 6.02, the error will provide details, such as "access denied" or "file in use" when possible.
	</p>

	<p>
		 
	</p>

	<p>
		WinRAR did support the information for regular archives previously, but not for SFX archives; this changes with the release of WinRAR 6.02. Another useful addition is that the name of the unpacked file is now included in error messages related to incorrect passwords.
	</p>

	<p>
		 
	</p>

	<p>
		The release addresses two bugs. One fixes an issue that would see the error "The specified password is incorrect" thrown, despite that operations would complete successfully.
	</p>

	<p>
		 
	</p>

	<p>
		You can check the <a data-wpel-link="external" href="https://www.rarlab.com/rarnew.htm" rel="external nofollow" target="_blank">full changelog</a> to find out about the second bug fix and several improvements to command line switches.
	</p>

	<p>
		 
	</p>

	<p>
		Now You: do you use WinRAR or another archiver?
	</p>
</div>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.ghacks.net/2021/06/14/winrar-6-02-update-includes-security-improvements/" rel="external nofollow">WinRAR 6.02 update includes security improvements</a>
</p>

<p>
	 
</p>

<p>
	Frontpaged: <a href="https://nsaneforums.com/topic/413064-winrar-602" rel="">WinRAR 6.02</a>
</p>
]]></description><guid isPermaLink="false">577</guid><pubDate>Mon, 14 Jun 2021 21:38:55 +0000</pubDate></item><item><title>Microsoft is hiring engineers to &#x201C;modernizing existing parts of the Windows&#x201D;</title><link>https://nsaneforums.com/news/software-news/microsoft-is-hiring-engineers-to-%E2%80%9Cmodernizing-existing-parts-of-the-windows%E2%80%9D-r576/</link><description><![CDATA[<div>
	<div>
		<h1>
			Microsoft is hiring engineers to “modernizing existing parts of the Windows”
		</h1>
	</div>
</div>

<div>
	 
</div>

<div>
	<article>
		<p>
			Microsoft originally planned to create a whole new version of Windows free from the 30+ year legacy of the operating system, but some time earlier this year the company scrapped the plans, and instead decided to improve Windows 10.
		</p>

		<p>
			 
		</p>

		<p>
			We can see that decision reflected in an <a href="https://careers.microsoft.com/us/en/job/1019115/Senior-Program-Manager" rel="external nofollow" target="_blank">April 2021 job posting</a> where Microsoft was looking for an engineer in the Windows shell team (which is responsible for things like the “Start &amp; Taskbar to the touch, voice, and pen+ink interaction models, as well as features like snap and windowing“) to build “new parts and modernizing existing parts of the Windows UX“.
		</p>

		<p>
			 
		</p>

		<p>
			The senior program manager would conduct “user research to understand users’ needs” and test their new solutions.
		</p>

		<p>
			 
		</p>

		<p>
			Microsoft says its goal is to “unlock the creative and productive potential of customers” and we expect to see the early fruits of their work when Windows 11 is announced next week on the 24th June.
		</p>

		<p>
			 
		</p>

		<p>
			via <a href="https://www.windowslatest.com/2021/06/14/microsoft-wants-to-modernize-existing-parts-of-windows-10-ux/" rel="external nofollow" target="_blank">WindowsLatest</a>
		</p>
	</article>
</div>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://mspoweruser.com/microsoft-is-hiring-engineers-to-modernizing-existing-parts-of-the-windows/" rel="external nofollow">Microsoft is hiring engineers to “modernizing existing parts of the Windows”</a>
</p>
]]></description><guid isPermaLink="false">576</guid><pubDate>Mon, 14 Jun 2021 21:34:42 +0000</pubDate></item><item><title>Windows 10 has an optional update problem, and it's annoying</title><link>https://nsaneforums.com/news/software-news/windows-10-has-an-optional-update-problem-and-its-annoying-r564/</link><description><![CDATA[<h1>
	Windows 10 has an optional update problem, and it's annoying
</h1>

<div>
	<p>
		 
	</p>

	<p>
		Windows 10 has a frustrating and annoying problem where Windows Update will only offer one optional update at a time.
	</p>

	<p>
		 
	</p>

	<p>
		Microsoft commonly releases new updates that are considered optional that won't be installed automatically by Windows Update.
	</p>

	<p>
		 
	</p>

	<p>
		Optional updates include new Windows 10 feature updates, Windows 10 preview cumulative updates, feature experience packs, and some out-of-band fixes that target a specific bug in the operating system.
	</p>

	<p>
		 
	</p>

	<p>
		However, for over a year now, Windows 10 will only offer one optional update at a time, even if there are multiple optional updates available for your version of Windows 10.
	</p>

	<p>
		 
	</p>

	<p>
		For example, the recently released Windows 10 21H1 update has preferential treatment in Windows Update and is offered regardless of other available optional updates.
	</p>

	<div>
		<figure>
			<img alt="Windows 10 21H1 feature update offered as an optional update" data-ratio="71.94" style="width: 720px; height: 518px;" width="720" src="https://www.bleepstatic.com/images/news/Microsoft/Windows-10/optional-updates/windows-10-21h1-optional-update.jpg">
			<figcaption>
				Windows 10 21H1 feature update offered as an optional update
			</figcaption>
		</figure>
	</div>

	<p>
		This week, Microsoft released the out-of-band (OOB) <a href="https://www.bleepingcomputer.com/news/microsoft/microsoft-pushes-emergency-update-for-windows-10-xbox-game-pass-bug/" target="_blank" rel="external nofollow">KB5004476 Windows 10 update</a> to fix an Xbox Game Pass bug preventing users from installing or launching games.
	</p>

	<p>
		 
	</p>

	<p>
		What is frustrating is that even though this update applies to Windows 10 20H2, Windows Update refused to offer it to my devices until I first installed the Windows 10 21H1 update.
	</p>

	<p>
		 
	</p>

	<p>
		Microsoft introduced a new "<a href="https://www.bleepingcomputer.com/news/microsoft/windows-10-is-getting-a-new-optional-update-experience/" target="_blank" rel="external nofollow">Optional Update Experience</a>" to Windows 10 in 2019 that was supposed to resolve this issue and allow you to pick and choose what optional updates you wish to install.
	</p>

	<p>
		 
	</p>

	<p>
		This feature is clearly not working, as before we installed the Windows 10 21H1 feature update, we were still not offered the optional KB5004476 update in the Optional Updates screen, as shown below.
	</p>

	<div>
		<figure>
			<img alt="Windows 10 Optional Updates screen" data-ratio="71.94" style="width: 720px; height: 518px;" width="720" src="https://www.bleepstatic.com/images/news/Microsoft/Windows-10/optional-updates/optional-updates.jpg">
			<figcaption>
				Windows 10 Optional Updates screen
			</figcaption>
		</figure>
	</div>

	<p>
		Once we installed the optional Windows 10 21H1 feature update, Windows Update gladly offered us the new optional KB5004476 OOB update.
	</p>

	<div>
		<figure>
			<img alt="Windows 10 KB5004476 OOB update shown after installing Windows 10 21H1" data-ratio="70.83" style="width: 720px; height: auto;" width="720" src="https://www.bleepstatic.com/images/news/Microsoft/Windows-10/optional-updates/KB5004476-update.jpg">
			<figcaption>
				Windows 10 KB5004476 OOB update shown after installing Windows 10 21H1
			</figcaption>
		</figure>
	</div>

	<p>
		BleepingComputer tried these same steps on multiple devices, and Windows 10 demonstrated the same behavior on all of them.
	</p>

	<p>
		 
	</p>

	<p>
		While some of these optional updates are available from the Microsoft Catalog, many people are unfamiliar with <a href="http://BleepingComputer%20tried%20these%20same%20steps%20on%C2%A0multiple%20devices%20and%20Windows%2010%20demonstrated%20the%20same%20behavior%20on%20all%20of%20them." rel="external nofollow" target="_blank">manually installing Windows updates</a>.
	</p>

	<p>
		 
	</p>

	<p>
		It is not clear why Microsoft is not offering all optional updates under the 'Optional updates' feature. However, in its current form users are unnecessarily forced to install feature updates before they can get access to the actual updates that they want.
	</p>
</div>

<p>
	 
</p>

<p>
	 
</p>

<p>
	 <a href="https://www.bleepingcomputer.com/news/microsoft/windows-10-has-an-optional-update-problem-and-its-annoying/" rel="external nofollow">Windows 10 has an optional update problem, and it's annoying</a>
</p>
]]></description><guid isPermaLink="false">564</guid><pubDate>Mon, 14 Jun 2021 02:57:48 +0000</pubDate></item><item><title>Microsoft's next generation of Windows &#x2014; What we know so far</title><link>https://nsaneforums.com/news/software-news/microsofts-next-generation-of-windows-%E2%80%94-what-we-know-so-far-r560/</link><description><![CDATA[<h1>
	Microsoft's next generation of Windows — What we know so far
</h1>

<div>
	<p>
		 
	</p>

	<p>
		Microsoft will soon reveal their next generation of Windows at an upcoming press event later this month. Here is what we know so far about Microsoft's new version of Windows.
	</p>

	<p>
		 
	</p>

	<p>
		The upcoming press event is scheduled for June 24th and coincides with a <a href="https://www.microsoft.com/en-us/windows/event" rel="external nofollow" target="_blank">public webcast of the live Windows reveal</a> at 11 AM EST.
	</p>

	<p>
		 
	</p>

	<p>
		Way back in 2015, Microsoft's developer evangelist Jerry Nixon stated that Windows 10 is the last version of Windows:
	</p>

	<p>
		 
	</p>

	<p>
		"Right now we're releasing Windows 10, and because Windows 10 is the last version of Windows, we're all still working on Windows 10." - Jerry Nixon.
	</p>

	<p>
		 
	</p>

	<p>
		However, as pointed out by Microsoft watcher Mary Jo Foley and <a href="https://twitter.com/TheRichWoods/status/1403401225232605186" rel="external nofollow" target="_blank">highlighted</a> by Rich Woods on Twitter, Microsoft has never publicly said in plain words that Windows 10 is the last version of the Windows operating system.
	</p>

	<p>
		 
	</p>

	<p>
		Only one developer evangelist only gave the statement. However, the Microsoft PR team never denied it.
	</p>

	<p>
		 
	</p>

	<p>
		In fact, Microsoft is slowly dropping hints that suggest Windows 11 is around the corner. For example, the company recently uploaded 11 minutes long relaxing music video on YouTube, which shows off sunlight passing through the Windows logo to form the number '11' on the surface.
	</p>

	<p>
		 
	</p>

	<p>
		At the moment, we don't know what the company has in store for us and whether the update is going to be called "Windows 11", but it's safe to assume that it will be based on the long rumoured Windows Sun Valley design, which was <a href="https://www.bleepingcomputer.com/news/microsoft/not-windows-11-new-windows-10-name-scheme-hinted-in-microsoft-docs/" target="_blank" rel="external nofollow">recently confirmed in a Microsoft documentation</a>.
	</p>

	<p>
		 
	</p>

	<p>
		It's also possible that Microsoft will drop the numbers and start using geographic location names like Sun Valley for Windows updates.
	</p>

	<h2>
		Windows 11 features
	</h2>

	<p>
		Here's a list of rumoured and expected features, arriving later this year with Windows 11 "Sun Valley" update:
	</p>

	<h3>
		Design improvements
	</h3>

	<p>
		Windows 11 update will improve the legacy apps and features of the operating system. On the surface, we're expecting Windows to appear more modern with consistent design language, at least for first-party apps. For example, Microsoft will update file Explorer with dark mode support for the popup menus (properties tab, etc.).
	</p>

	<p>
		 
	</p>

	<p>
		However, it appears that the company will not replace File Explorer with a modern version. Instead, the plan is to service the existing Explorer and update it with new icons, rounded corners, and dark mode.
	</p>

	<p>
		 
	</p>

	<p>
		Microsoft is using WinUI, modern controls, styles to improve the overall experience. WinUI is not a replacement for Fluent Design, and it is supposed to enhance the overall experience by enabling support for the same UI elements everywhere (legacy and modern).
	</p>

	<p>
		 
	</p>

	<p>
		Windows Sun Valley update is built on top of the Fluent Design, which means Fluent Design is not going away.
	</p>

	<p>
		 
	</p>

	<p>
		On <a href="https://github.com/microsoft/microsoft-ui-xaml/issues/3544" rel="external nofollow" target="_blank">Github</a>, we've already seen new design ideas for app buttons, elements, ListView, buttons, sliders, etc.
	</p>

	<h3>
		New animations, gestures
	</h3>

	<div>
		<figure>
			<img alt="New Windows 10 animations" data-ratio="75.10" style="width: 720px; height: auto;" width="719" src="https://www.bleepstatic.com/images/news/u/1097497/Windows-10/Windows10-animation.gif">
			<figcaption>
				New Windows 10 animations
			</figcaption>
		</figure>
	</div>

	<p>
		As you can see in the above GIF, Microsoft has been working on a new animation for closing/opening windows. This new animation will apply to all apps and windows by default.
	</p>

	<h2>
		File Explorer
	</h2>

	<p>
		<a href="https://www.bleepingcomputer.com/news/microsoft/the-windows-10-sun-valley-design-refresh-heres-whats-coming/" target="_blank" rel="external nofollow">Windows Sun Valley</a> will update File Explorer with new icons, rounded corners, and dark mode improvements.
	</p>

	<p>
		 
	</p>

	<p>
		As you can see in the below GIF, Microsoft is spacing out the items, columns, and rows in File Explorer. These changes will help users with touchscreen, and they can easily interact with files without switching to tablet mode.
	</p>

	<p>
		 
	</p>

	<p>
		Microsoft previously said that the new File Explorer is designed for better consistency with modern (XAML) experiences, and it doesn't require tablet mode. At the moment, it appears that the tablet experience will be enabled by default, which means you can try out the new layout when you're using the desktop mode (normal experience).
	</p>

	<div>
		<figure>
			<img alt="New File Explorer compact mode" data-ratio="64.03" src="https://www.bleepstatic.com/images/news/u/1097497/Windows-10/File-Explorer(1).gif">
			<figcaption>
				New File Explorer compact mode
			</figcaption>
		</figure>
	</div>

	<p>
		Users can always switch to the old layout called "Compact mode."
	</p>

	<p>
		 
	</p>

	<p>
		In addition, there'll be some nifty improvements. For example, the Extract All option for OneDrive files is being introduced. This option shows up when you right-click on a zipped OneDrive file that was set to online-only.
	</p>

	<div>
		<figure>
			<img alt="New extract all option for OneDrive" data-ratio="75.56" style="width: 712px; height: auto;" width="712" src="https://www.bleepstatic.com/images/news/u/1097497/Windows-10/File-Explorer.jpg">
			<figcaption>
				New extract all option for OneDrive
			</figcaption>
		</figure>
	</div>

	<p>
		The second new nifty addition is support for CTRL + Left / Right arrow when renaming files. This lets you move your cursor between words in the file name, as well as CTRL + Delete and CTRL + Backspace to delete words at a time, like other apps and tools in Windows.
	</p>

	<h2>
		Windows Camera Settings
	</h2>

	<p>
		Microsoft is introducing a new Camera Settings page for advanced users to help them manage the existing cameras, add/remove cameras and configure the default image settings of each one.
	</p>

	<div>
		<figure>
			<img alt="New Camera settings page" data-ratio="75.10" src="https://www.bleepstatic.com/images/news/u/1097497/Windows-10/Camera.png">
			<figcaption>
				New Camera settings page
			</figcaption>
		</figure>
	</div>

	<p>
		This new Settings page can be found at Settings &gt; Devices &gt; Camera, and users can use it to configure the default image settings,
	</p>

	<p>
		 
	</p>

	<p>
		As you can see in the above screenshot, this page can be used to change the brightness and contrast.
	</p>

	<h2>
		Display Settings
	</h2>

	<p>
		Microsoft is adding a new option to the Settings app that will allow you to turn off the content-adaptive brightness control (CABC) feature. For those unaware, the CABC feature is used by OEMs like Dell and Lenovo to improve battery performance on PCs, but it comes at the cost of image quality.
	</p>

	<p>
		 
	</p>

	<p>
		In some configurations, it can result in distracting brightness changes.
	</p>

	<div>
		<figure>
			<img alt="New Windows display settings" data-ratio="75.10" src="https://www.bleepstatic.com/images/news/u/1097497/Windows-10/Display-Settings.png">
			<figcaption>
				New Windows display settings
			</figcaption>
		</figure>
	</div>

	<p>
		Starting with the Sun Valley update, you can turn off the feature by navigating to the Display Settings page.
	</p>

	<h2>
		Battery usage
	</h2>

	<p>
		Windows Sun Valley also includes a redesigned 'Battery' settings page with detailed graphs to help users understand how their laptop/notebook uses the battery.
	</p>

	<p>
		 
	</p>

	<p>
		Once enabled, the graphs will appear within the same settings app and users can see their laptop's battery level throughout the day.
	</p>

	<figure>
		<div>
			<figure>
				<img alt="New battery level and usage graphs" data-ratio="78.15" style="width: 691px; height: auto;" width="691" src="https://www.bleepstatic.com/images/news/Microsoft/Windows-10/s/settings/battery-settings-improvement/battery-level.jpg">
				<figcaption>
					New battery level and usage graphs<br>
					Source: Albacore
				</figcaption>
			</figure>
		</div>
	</figure>

	<p>
		Likewise, you can also open the bar graph view to better understand the battery usage over the past seven days.
	</p>

	<h2>
		HDR support for color managed apps
	</h2>

	<p>
		Microsoft is enabling support for HDR mode in apps creative and artistic apps that use International Color Consortium (ICC) display color profiles. This includes  Adobe Photoshop, Adobe Lightroom Classic, and CorelDraw.
	</p>

	<p>
		 
	</p>

	<p>
		This feature will allow your favorite apps to get accurate color and access the full gamut of your HDR display.
	</p>

	<h2>
		New system font
	</h2>

	<p>
		Microsoft is also working on a new Segoe UI Variable that includes an optical axis and allows the font outlines to scale seamlessly from small to larger display sizes. The feature is called "Segoe UI Variable," and Microsoft says it is a refreshed take on the classic Segoe.
	</p>

	<p>
		 
	</p>

	<p>
		In theory, it comes with improved legibility for small sizes and much improved outlines at display sizes. It also fixes issues on different form factors and resolutions by enabling support for a new feature that can dynamically offer excellent legibility at very small sizes and style at large sizes.
	</p>

	<div>
		<figure>
			<img alt="New Segoe UI Variable font" data-ratio="50.00" style="width: 720px; height: auto;" width="720" src="https://www.bleepstatic.com/images/news/Microsoft/Windows-10/segoe-variable%5B1%5D.png">
			<figcaption>
				New Segoe UI Variable font
			</figcaption>
		</figure>
	</div>

	<h2>
		A new option under the Power menu on the Start menu
	</h2>

	<p>
		Microsoft has enabled support for a new option within the Power menu on the Start menu to help you restart apps after signing in when you reboot your device.
	</p>

	<p>
		 
	</p>

	<p>
		This setting is based on the existing "Restart apps" feature, so it's technically not a new feature. This option is currently offered under Settings &gt; Accounts &gt; Sign-in options &gt; Restart apps in Windows 10 May 2020 Update (20H1) or newer.
	</p>

	<h2>
		Virtual desktops
	</h2>

	<p>
		Sun Valley will also ship with some much-needed multitasking improvements. Microsoft is also on new features for Windows 10's virtual desktop to keep your open apps and projects organized in their own desktops.
	</p>

	<p>
		 
	</p>

	<p>
		The problem with virtual desktops is that we cannot reorganize the order of virtual desktops or use unique wallpapers for each virtual desktops. Likewise, it's also not possible to maintain different virtual desktops for two monitors.
	</p>

	<p>
		 
	</p>

	<p>
		With the Sun Valley update, Microsoft is introducing three new features for virtual desktops - the ability to reorder (change the position of each virtual desktop), customize the backgrounds for all your virtual desktops, and support for multi-monitor setup.
	</p>

	<div>
		<figure>
			<img alt="Virtual Desktop customizations" data-ratio="65.83" src="https://www.bleepstatic.com/images/news/u/1097497/Windows-10/Virtual-desktops.gif">
			<figcaption>
				Virtual Desktop customizations
			</figcaption>
		</figure>
	</div>

	<p>
		To reorder the desktops, follow these steps:
	</p>

	<p>
		 
	</p>

	<ol>
		<li>
			Create multiple new Virtual Desktops.
		</li>
		<li>
			Drag and drop a Virtual Desktop to another position.
		</li>
		<li>
			Right-click a Virtual Desktop thumbnail in task view and select “Move left” or “Move right” in the context menu. This will change the order of all virtual desktops.
		</li>
	</ol>

	<p>
		 
	</p>

	<p>
		If you want to change the background of the virtual desktops, follow these steps:
	</p>

	<p>
		 
	</p>

	<ol>
		<li>
			Open Settings &gt; Personalization &gt; Background.
		</li>
		<li>
			Right-click a background and apply it to a specific Virtual Desktop.
		</li>
	</ol>

	<p>
		 
	</p>

	<p>
		Once you’ve selected the background, changes will apply instantly, and you’ll see your new background when you switch to the virtual desktop.
	</p>

	<h2>
		New Clipboard
	</h2>

	<p>
		You can now use the clipboard history manager (Win + V) to insert emojis and GIFs.
	</p>

	<div>
		<figure>
			<img alt="New Windows clipboard" data-ratio="77.14" src="https://www.bleepstatic.com/images/news/u/1109292/2021/Clipboard%20history%20plain%20text.png">
			<figcaption>
				New Windows clipboard
			</figcaption>
		</figure>
	</div>

	<p>
		In addition to these new fancy features, you will now see a “Paste as plain text” option alongside pin and delete. This will allow you to paste the text content of the clipboard without its original formatting (font, color, size etc.), 
	</p>

	<h2>
		New DNS over HTTPS (DoH) feature
	</h2>

	<p>
		DNS over HTTPS (DoH) is a new feature that will allow DNS resolution over encrypted HTTPS connections, and it aims to protect your browsing privacy from outsiders. 
	</p>

	<p>
		 
	</p>

	<p>
		"If you haven’t been waiting for it, and are wondering what DoH is all about, then be aware this feature will change how your device connects to the Internet and is in an early testing stage so only proceed if you’re sure you’re ready," Microsoft explained DoH in a blog post published last year.
	</p>

	<p>
		 
	</p>

	<p>
		In preview, you can test the feature and configure DoH for ethernet connections by following these steps:
	</p>

	<p>
		 
	</p>

	<ol>
		<li>
			Open Settings &gt; Network &amp; Internet &gt; Status.
		</li>
		<li>
			Click Properties.
		</li>
		<li>
			Select Edit IP assignment or Edit DNS server assignment.
			<figure>
				<div>
					<figure>
						<img alt="New DNS over HTTPS (DoH) feature" data-ratio="75.10" src="https://www.bleepstatic.com/images/news/u/1097497/Windows-10/DoH.jpg">
						<figcaption>
							New DNS over HTTPS (DoH) feature
						</figcaption>
					</figure>
				</div>
			</figure>
		</li>
		<li>
			Enable DoH in the popup.
		</li>
	</ol>

	<p>
		 
	</p>

	<p>
		To configure DoH for Wi-Fi connections, follow these steps:
	</p>

	<p>
		 
	</p>

	<ol>
		<li>
			Open Settings &gt; Network &amp; Internet &gt; Wi-Fi.
		</li>
		<li>
			Click the adapter properties link.
		</li>
		<li>
			Select Edit IP assignment or Edit DNS server assignment.
		</li>
		<li>
			Enable DoH in the popup.
		</li>
	</ol>

	<p>
		 
	</p>

	<p>
		For more detailed information, see our article on how <a href="https://www.bleepingcomputer.com/news/security/microsoft-adds-windows-10-dns-over-https-settings-section/" target="_blank" rel="external nofollow">DoH works on Windows 10</a>.
	</p>

	<h2>
		Modern disk management in Settings
	</h2>

	<p>
		Microsoft is migrating legacy apps or tools into modern versions found in the Settings. For example, the Settings app is getting the new Disk Management tool, which aims to simplify the disk management process and manage your disks and volumes without using the legacy tool.
	</p>

	<figure>
		<div>
			<figure>
				<img alt="New modern Disk Management settings" data-ratio="75.10" src="https://www.bleepstatic.com/images/news/Microsoft/Windows-10/d/disk-management-settings/new-disk-management.jpg">
				<figcaption>
					New modern Disk Management settings
				</figcaption>
			</figure>
		</div>
	</figure>

	<p>
		'Manage Disks and Volumes' utility supports better integration with the Storage Spaces and Storage Settings. The disk management tool has been rewritten, and it will initially allow you to view disk information, create and format volumes, and assign drive letters.
	</p>

	<p>
		 
	</p>

	<p>
		To access this new tool, you need to go to Settings &gt; System &gt; Storage and click Manage Disks and Volumes.
	</p>

	<p>
		 
	</p>

	<p>
		For more detailed information, see our article on the <a href="https://www.bleepingcomputer.com/news/microsoft/windows-10-settings-gets-a-modern-disk-management-tool/" target="_blank" rel="external nofollow">new Disk Management tool</a>.
	</p>

	<h2>
		Improved GPU performance
	</h2>

	<p>
		Microsoft is giving users greater control over multiple GPUs when running apps in Windows 10.
	</p>

	<p>
		 
	</p>

	<p>
		On devices with two GPUs, Windows 10 will use integrated one as a power-saving GPU and the discrete graphics card as a high-performance GPU. This setting will be configured automatically based on your device.
	</p>

	<figure>
		<div>
			<figure>
				<img alt="Select a specific GPU to use with an application" data-ratio="88.36" style="width: 610px; height: auto;" width="610" src="https://www.bleepstatic.com/images/news/Microsoft/Windows-10/new-gpu-settings/specify-specific-gpu.jpg">
				<figcaption>
					Select a specific GPU to use with an application
				</figcaption>
			</figure>
		</div>
	</figure>

	<p>
		You can also go to the Graphics settings under Settings &gt; Display &gt; Graphics Settings and specify whether an app should use the high-performance or power-saving GPU.
	</p>

	<p>
		 
	</p>

	<p>
		For more information, please read our article on <a href="https://www.bleepingcomputer.com/news/microsoft/windows-10-to-give-power-users-more-control-over-their-gpus/" target="_blank" rel="external nofollow">GPU controls in Windows 10</a>.
	</p>

	<h2>
		Improved Sound Device Settings
	</h2>

	<p>
		You can now set default speakers by navigating to Settings &gt; System &gt; Sound. The same page has been updated with a link to the per-app sound screen in the classic Volume Mixer.
	</p>

	<h2>
		Other changes in this update
	</h2>

	<p>
		Sun Valley update will also classify more apps as 'Inbox apps,'. Apps like Windows Terminal will be automatically installed in Windows 10.
	</p>

	<p>
		 
	</p>

	<p>
		After the update, users will find Windows Terminal and Power Automate Desktop installed automatically. In fact, users can soon replace their command-line tool with Terminal on Windows 10.
	</p>

	<p>
		 
	</p>

	<p>
		Furthermore, Notepad and these apps will be updated via the Microsoft Store, outside the normal Windows updates.
	</p>

	<h2>
		How to test these new features now
	</h2>

	<p>
		If you're a member of the Windows Insider Program (join it from Microsoft's <a href="https://insider.windows.com/en-us/" rel="external nofollow" target="_blank">website</a>), you can try some of the Sun Valley or Windows 11 features by joining the Dev Channel:
	</p>

	<p>
		 
	</p>

	<ol>
		<li>
			Open Start menu.
		</li>
		<li>
			Click on Cog icon to access Settings.
		</li>
		<li>
			Navigate to  Update &amp; Security &gt; Windows Insider Program or simply search 'Windows Insider program settings' on Cortana to skip the navigation steps.
		</li>
		<li>
			Click Get Started on Windows Insider page.
		</li>
		<li>
			Link your Microsoft account (Email should be the one that you used earlier to sign up for Insider program).
		</li>
		<li>
			Select "Dev Channel".
		</li>
		<li>
			Reboot.
		</li>
		<li>
			Check for updates and download the update.
		</li>
	</ol>
</div>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/microsoft/microsofts-next-generation-of-windows-what-we-know-so-far/" rel="external nofollow">Microsoft's next generation of Windows — What we know so far</a>
</p>
]]></description><guid isPermaLink="false">560</guid><pubDate>Sun, 13 Jun 2021 20:08:34 +0000</pubDate></item><item><title>Google is added submenus for Tab Groups in the Chrome History menu</title><link>https://nsaneforums.com/news/software-news/google-is-added-submenus-for-tab-groups-in-the-chrome-history-menu-r559/</link><description><![CDATA[<h1>
	Google is added submenus for Tab Groups in the Chrome History menu
</h1>

<p>
	 
</p>

<p>
	Tab groups is one of Chrome’s greatest UI innovations, but the company has been moving rather slowly on rounding out the needed feature set for the feature.
</p>

<p>
	 
</p>

<p>
	<img alt="tab-groups-example.png" class="ipsImage" data-ratio="75.10" height="141" width="720" src="https://mspoweruser.com/wp-content/uploads/2021/06/tab-groups-example.png">
</p>

<p>
	 
</p>

<p>
	The latest feature the company is working on is saving the names and organization of your closed tabs, allowing you to easily find and re-open individual and whole tab groups you have closed earlier.
</p>

<p>
	 
</p>

<p>
	<img alt="chrome-remember-tab-groups.gif" class="ipsImage" data-ratio="75.10" height="404" width="720" src="https://mspoweruser.com/wp-content/uploads/2021/04/chrome-remember-tab-groups.gif">
</p>

<p>
	 
</p>

<p>
	This feature is available in Chrome Canary under the Show app menu history sub menus flag.
</p>

<p>
	 
</p>

<p>
	<img alt="show-app-menu-history-sub-menu.png" class="ipsImage" data-ratio="26.94" height="125" width="720" src="https://mspoweruser.com/wp-content/uploads/2021/06/show-app-menu-history-sub-menu.png">
</p>

<p>
	 
</p>

<p>
	Google is also working on another new feature, as revealed on <a href="https://chromium-review.googlesource.com/c/chromium/src/+/2957470" rel="external nofollow" target="_blank">the Chromium Gerrit.</a>
</p>

<p>
	 
</p>

<p>
	The feature lets you save your tab groups when you Bookmark all tabs:
</p>

<blockquote>
	<p>
		Add folders for Tab groups on Bookmark All Tabs.
	</p>

	<p>
		When the user has one or more Tab groups open and selects “Bookmark All Tabs”, instead of getting a folder with a flat list of tabs, they will now see nested folders for any Tab groups, with naming aligned with the Tab group title. The order of URLs and nested folders will match the tabstrip order. If multiple Tab groups share the same title, their tabs will get combined into a single folder at the index of the first group.
	</p>
</blockquote>

<p>
	All these features are of course sensible and pretty basic, and I do wonder why Google did not debut with all these features at launch.
</p>

<p>
	 
</p>

<p>
	Source: <a href="https://www.reddit.com/r/chrome/comments/ny6f45/google_has_added_submenus_to_each_of_the_windows/?context=3" rel="external nofollow" target="_blank">Leo Varela</a>
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://mspoweruser.com/google-is-added-submenus-for-tab-groups-in-the-history-menu/" rel="external nofollow">Google is added submenus for Tab Groups in the Chrome History menu</a>
</p>
]]></description><guid isPermaLink="false">559</guid><pubDate>Sun, 13 Jun 2021 20:04:41 +0000</pubDate></item><item><title>Microsoft pushes Windows 10 KB4023057 again to fix update issues</title><link>https://nsaneforums.com/news/software-news/microsoft-pushes-windows-10-kb4023057-again-to-fix-update-issues-r541/</link><description><![CDATA[<h1>
	Microsoft pushes Windows 10 KB4023057 again to fix update issues
</h1>

<div>
	<p>
		 
	</p>

	<p>
		Microsoft is rolling out the KB4023057 update again to all versions of Windows 10 to ensure that devices can successfully install new updates as they are released.
	</p>

	<p>
		 
	</p>

	<p>
		KB4023057 is being released to offer "reliability improvements to Windows Update Service components" in Windows 10 1507, 1511, 1607, 1703, 1709, 1803, 1909, 2004, 20H2, and 21H1.
	</p>

	<div>
		<figure>
			<img alt="Windows 10 KB4023057 update offered in Windows Update" data-ratio="75.10" src="https://www.bleepstatic.com/images/news/Microsoft/Windows-10/w/windows-update/KB4023057/windows-update-KB4023057.jpg">
			<figcaption>
				Windows 10 KB4023057 update offered in Windows Update
			</figcaption>
		</figure>
	</div>

	<p>
		Microsoft routinely re-releases the KB4023057 to improve the reliability of the Windows Update process.
	</p>

	<p>
		 
	</p>

	<p>
		"This update includes files and resources that address issues that affect the update processes in Windows 10 that may prevent important Windows updates from being installed," explains the <a href="https://support.microsoft.com/en-us/topic/kb4023057-update-for-windows-10-update-service-components-fccad0ca-dc10-2e46-9ed1-7e392450fb3a" rel="external nofollow" target="_blank">KB4023057 support bulletin</a>.
	</p>

	<p>
		 
	</p>

	<p>
		"These improvements help make sure that updates are installed seamlessly on your device, and they help improve the reliability and security of devices that are running Windows 10."
	</p>

	<p>
		 
	</p>

	<p>
		As part of the installation, the update may free up disk space by compressing files in the User Profile directory so Windows 10 can properly install future updates.
	</p>

	<p>
		 
	</p>

	<p>
		When files are compressed, they will be displayed with two blue arrows overlaid on the file's icon, as shown below.
	</p>

	<div>
		<figure>
			<img alt="Compressed files in Windows 10" data-ratio="66.90" src="https://www.bleepstatic.com/images/news/Microsoft/Windows-10/w/windows-update/KB4023057/compressed-files.jpg">
			<figcaption>
				Compressed files in Windows 10
			</figcaption>
		</figure>
	</div>

	<p>
		After the update has finished installing, the files will be uncompressed, and the arrows will disappear.
	</p>

	<p>
		 
	</p>

	<p>
		Microsoft states the KB4023057 update may perform the following when installed:
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			<p>
				This update may request your device to stay awake longer to enable the installation of updates.
			</p>

			<p>
				Note The installation will respect any user-configured sleep configurations and also your "active hours" when you use your device the most.
			</p>
		</li>
		<li>
			<p>
				This update may try to reset network settings if problems are detected, and it will clean up registry keys that may be preventing updates from being installed successfully.
			</p>
		</li>
		<li>
			<p>
				This update may repair disabled or corrupted Windows operating system components that determine the applicability of updates to your version of Windows 10.
			</p>
		</li>
		<li>
			<p>
				This update may compress files in your user profile directory to help free up enough disk space to install important updates.
			</p>
		</li>
		<li>
			<p>
				This update may reset the Windows Update database to repair the problems that could prevent updates from installing successfully. Therefore, you may see that your Windows Update history was cleared.
			</p>
		</li>
	</ul>

	<p>
		 
	</p>

	<p>
		This update will be automatically installed via Windows Update and is only available from the Microsoft Update Catalog for Windows 10, versions 1507, 1511, 1607, 1703, 1709, and 1803.
	</p>
</div>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/microsoft/microsoft-pushes-windows-10-kb4023057-again-to-fix-update-issues/" rel="external nofollow">Microsoft pushes Windows 10 KB4023057 again to fix update issues</a>
</p>
]]></description><guid isPermaLink="false">541</guid><pubDate>Sat, 12 Jun 2021 22:31:12 +0000</pubDate></item><item><title>Nvidia to drop Game Ready Driver updates for Windows 7, 8, and 8.1 starting this October</title><link>https://nsaneforums.com/news/software-news/nvidia-to-drop-game-ready-driver-updates-for-windows-7-8-and-81-starting-this-october-r528/</link><description><![CDATA[<header class="article-header">
	<h1 class="article-title">
		Nvidia to drop Game Ready Driver updates for Windows 7, 8, and 8.1 starting this October<span class="meta-comments"> </span>
	</h1>
</header>

<div class="article-content" itemprop="articleBody">
	<p>
		 
	</p>

	<p>
		Nvidia today detailed its plans for Game Ready Drivers upgrade support for Windows 7, Windows 8, and Windows 8.1. The <a href="https://nvidia.custhelp.com/app/answers/detail/a_id/5201/related/1" rel="external nofollow">company posted a support article</a> that states that it will cease to provide Game Ready Driver updates for its graphic cards for the mentioned versions starting October 2021. However, it does note that it will continue to serve “critical security updates” for systems running those operating systems until September 2024.
	</p>

	<p>
		 
	</p>

	<p>
		Microsoft <a href="https://www.neowin.net/news/windows-7-is-no-longer-supported-beginning-today/" rel="external nofollow">ended support for Windows 7</a> in January 2020, while Windows 8 <a href="https://www.neowin.net/news/windows-80-support-ends-today-users-instructed-to-upgrade-to-stay-secure/" rel="external nofollow">lost its support in January 2016</a> – a short life span for the OS thanks to Windows 8.1 and the debacle that Windows 8 was. However, while Windows 8.1 <a href="https://docs.microsoft.com/en-us/lifecycle/faq/windows#:~:text=Windows%208.1%20reached%20the%20end,Support%20on%20January%2010%2C%202023." rel="external nofollow">reached the end of mainstream support</a> back in 2018, the OS is still being serviced with security updates and will be till January 2023.
	</p>

	<p>
		 
	</p>

	<p>
		Nvidia, says that a “vast majority” of its GeForce customers have migrated to Windows 10 and that it aims to provide the “best possible security, support, and functionality” for those users, which is why it is focusing on Windows 10 alone. In the FAQ section, it adds that it will ship the last Game Ready Driver that supports the three operating system on August 31, with the first drivers to drop support for the versions completely expected to ship in October.
	</p>

	<p>
		 
	</p>

	<p>
		The change might not be a major one considering that <a href="https://www.neowin.net/news/windows-10-is-now-on-over-13-billion-active-devices/" rel="external nofollow">most users are running the latest offering from the Redmond giant</a>. However, for those that are still on older versions, they can rest assured that their GPUs will be served with updates to address any critical vulnerabilities. However, they will lose out on upgrades with performance enhancements, new features, and bug fixes, Nvidia says.
	</p>
</div>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/nvidia-to-drop-game-ready-driver-updates-for-windows-7-8-and-81-starting-this-october/" rel="external nofollow">Nvidia to drop Game Ready Driver updates for Windows 7, 8, and 8.1 starting this October</a>
</p>
]]></description><guid isPermaLink="false">528</guid><pubDate>Sat, 12 Jun 2021 06:02:21 +0000</pubDate></item><item><title>Microsoft Edge gets a silly update that procrastinators and time-wasters will love</title><link>https://nsaneforums.com/news/software-news/microsoft-edge-gets-a-silly-update-that-procrastinators-and-time-wasters-will-love-r527/</link><description><![CDATA[<header>
	<h1>
		Microsoft Edge gets a silly update that procrastinators and time-wasters will love
	</h1>

	<div>
		<p>
			<strong>Microsoft Edge browser game receives host of upgrades</strong>
		</p>

		<p>
			 
		</p>
	</div>
</header>

<section>
	<div itemprop="image" itemscope="" itemtype="https://schema.org/ImageObject">
		<div>
			<div>
				<div>
					<picture><source alt="Edge Surf" data-original-mos="https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ.jpg" onerror="if(this.src &amp;&amp; this.src.indexOf('missing-image.svg') !== -1){return true;};this.parentNode.replaceChild(window.missingImage(),this)" sizes="(min-width: 1000px) 970px, calc(100vw - 40px)" srcset="https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ-320-80.jpg.webp 320w, https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ-480-80.jpg.webp 480w, https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ-650-80.jpg.webp 650w, https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ-970-80.jpg.webp 970w, https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ-1024-80.jpg.webp 1024w" type="image/webp"><source alt="Edge Surf" data-original-mos="https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ.jpg" onerror="if(this.src &amp;&amp; this.src.indexOf('missing-image.svg') !== -1){return true;};this.parentNode.replaceChild(window.missingImage(),this)" sizes="(min-width: 1000px) 970px, calc(100vw - 40px)" srcset="https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ-320-80.jpg 320w, https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ-480-80.jpg 480w, https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ-650-80.jpg 650w, https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ-970-80.jpg 970w, https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ-1024-80.jpg 1024w" type="image/jpeg"><img alt="Edge Surf" data-original-mos="https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ.jpg" data-ratio="71.67" onerror="if(this.src &amp;&amp; this.src.indexOf('missing-image.svg') !== -1){return true;};this.parentNode.replaceChild(window.missingImage(),this)" sizes="(min-width: 1000px) 970px, calc(100vw - 40px)" srcset="https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ-320-80.jpg 320w, https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ-480-80.jpg 480w, https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ-650-80.jpg 650w, https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ-970-80.jpg 970w, https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ-1024-80.jpg 1024w" src="https://cdn.mos.cms.futurecdn.net/uS4UYkGpxzHMEwMgBWn3aJ-320-80.jpg"></source></source></picture>
				</div>
			</div>
		</div>
	</div>
</section>

<p>
	(Image credit: Microsoft)
</p>

<div>
	 
</div>

<div id="article-body">
	<p>
		It’s a little-known fact that Microsoft Edge has an in-built tool designed specifically for the hardcore procrastinators and time-wasters among us, called <a data-component-tracked="1" data-url="https://blogs.windows.com/msedgedev/2020/05/26/surf-game-edge-stable/" href="https://blogs.windows.com/msedgedev/2020/05/26/surf-game-edge-stable/" target="_blank" rel="external nofollow">Surf</a>.
	</p>

	<p>
		 
	</p>

	<p>
		The <a data-component-tracked="1" href="https://www.techradar.com/best/browser" target="_blank" rel="external nofollow">browser</a> game, which challenges players to surf as great a distance as possible without colliding with obstacles or falling prey to a sea monster, has received a host of upgrades with the latest early-access Edge build.
	</p>

	<p>
		 
	</p>

	<p>
		According to William Devereux, Senior Program Manager for Edge, Surf now boasts a new set of obstacles, a streamlined character selection menu, a way to share scores with friends, as well as a number of bug fixes that improve performance.
	</p>

	<div data-feat-ref="bordeaux-feat-id-75" id="bordeaux-static-slot-5">
		 
	</div>

	<figure data-bordeaux-image-check="">
		<div>
			<div>
				<p>
					<picture><source alt="Edge Surf" data-normal="https://vanilla.futurecdn.net/techradar/media/img/missing-image.svg" data-original-mos="https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ.jpg" data-srcset="https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ-320-80.jpg.webp 320w, https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ-650-80.jpg.webp 650w, https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ-970-80.jpg.webp 970w" onerror="if(this.src &amp;&amp; this.src.indexOf('missing-image.svg') !== -1){return true;};this.parentNode.replaceChild(window.missingImage(),this)" sizes="(min-width: 1000px) 970px, calc(100vw - 40px)" srcset="https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ-320-80.jpg.webp 320w, https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ-650-80.jpg.webp 650w, https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ-970-80.jpg.webp 970w" type="image/webp"><source alt="Edge Surf" data-normal="https://vanilla.futurecdn.net/techradar/media/img/missing-image.svg" data-original-mos="https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ.jpg" data-srcset="https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ-320-80.jpg 320w, https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ-650-80.jpg 650w, https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ-970-80.jpg 970w" onerror="if(this.src &amp;&amp; this.src.indexOf('missing-image.svg') !== -1){return true;};this.parentNode.replaceChild(window.missingImage(),this)" sizes="(min-width: 1000px) 970px, calc(100vw - 40px)" srcset="https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ-320-80.jpg 320w, https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ-650-80.jpg 650w, https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ-970-80.jpg 970w" type="image/jpeg"><img alt="Edge Surf" data-ll-status="loaded" data-normal="https://vanilla.futurecdn.net/techradar/media/img/missing-image.svg" data-original-mos="https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ.jpg" data-ratio="75.10" data-srcset="https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ-320-80.jpg 320w, https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ-650-80.jpg 650w, https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ-970-80.jpg 970w" loading="lazy" onerror="if(this.src &amp;&amp; this.src.indexOf('missing-image.svg') !== -1){return true;};this.parentNode.replaceChild(window.missingImage(),this)" sizes="(min-width: 1000px) 970px, calc(100vw - 40px)" srcset="https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ-320-80.jpg 320w, https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ-650-80.jpg 650w, https://cdn.mos.cms.futurecdn.net/DqL3Hzt3DPHbkX5F8VgBWJ-970-80.jpg 970w" src="https://vanilla.futurecdn.net/techradar/media/img/missing-image.svg"></source></source></picture>
				</p>
			</div>
		</div>

		<figcaption itemprop="caption description">
			The TechRadar Pro team isn't very good at Surf (Image credit: Microsoft)
		</figcaption>
	</figure>

	<h2 id="microsoft-edge-game">
		Microsoft Edge game
	</h2>

	<p>
		Although the latest iteration is currently available to members of the early-access program only, via the Canary channel, Surf can be played by all Edge users simply by typing “edge://surf” into the URL bar.
	</p>

	<p>
		 
	</p>

	<p>
		Inspired by the 1991 classic SkiFree, the Edge surfing game continues an honorable tradition started by Google with Dino Run, an on-the-rails side-scrolling platformer playable whenever Chrome loses connection to the internet.
	</p>

	<p>
		 
	</p>

	<p>
		In a blatant act of one-upmanship, Microsoft has taken the concept of a hidden browser game to a whole new level with Surf, which features multiple playable characters, charming pixel art visuals and a power-up system.
	</p>

	<p>
		 
	</p>

	<p>
		The game also has three distinct game modes - Endless, Time Trial and Zig Zag - and can be controlled via keyboard, mouse, touch and, incredibly, Xbox or PlayStation controller.
	</p>

	<p>
		 
	</p>

	<p>
		“Surf as far as possible in an endless ocean, compete for the shortest time, or zig zag through as many gates as you can in a row,” reads the official blurb. “Who knows? There might even be a few secrets just waiting to be found.”
	</p>

	<p>
		 
	</p>

	<p>
		The latest Surf update will no doubt leave users asking one question: is this the arena in which the browser wars will finally be decided?
	</p>
</div>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.techradar.com/news/microsoft-edge-gets-a-silly-update-that-procrastinators-and-time-wasters-will-love" rel="external nofollow">Microsoft Edge gets a silly update that procrastinators and time-wasters will love</a>
</p>
]]></description><guid isPermaLink="false">527</guid><pubDate>Sat, 12 Jun 2021 05:57:44 +0000</pubDate></item><item><title>How to disable the Weather widget from the Windows 10 Taskbar</title><link>https://nsaneforums.com/news/software-news/how-to-disable-the-weather-widget-from-the-windows-10-taskbar-r525/</link><description><![CDATA[<h1>
	How to disable the Weather widget from the Windows 10 Taskbar
</h1>

<div>
	<p>
		Microsoft released the <a data-wpel-link="internal" href="https://www.ghacks.net/2021/06/08/microsoft-windows-security-updates-june-2021-overview/" rel="external nofollow" target="_blank">KB5003637 Windows Update</a> on Tuesday. It brings various security fixes, which you can read about in Martin's article.
	</p>

	<p>
		 
	</p>

	<p>
		<img alt="How to disable the Weather widget from the Windows 10 Taskbar" data-ratio="75.10" loading="lazy" width="719" src="https://mk0ghacksnety2pjrgh8.kinstacdn.com/wp-content/uploads/2021/06/How-to-disable-the-Weather-widget-from-the-Windows-10-Taskbar.jpg">
	</p>

	<p>
		 
	</p>

	<p>
		I let my computer update to the latest patch yesterday before shutting down. When I turned it on this morning, I was greeted by something new. There was this weather widget on the taskbar. For a moment I was confused about where it came from, before I remembered that Windows had been updated. Surely, this can't be a coincidence.
	</p>

	<p>
		 
	</p>

	<p>
		<img alt="Windows Updates June 2021" data-ratio="75.10" loading="lazy" width="719" src="https://mk0ghacksnety2pjrgh8.kinstacdn.com/wp-content/uploads/2021/06/Windows-Updates-June-2021.jpg">
	</p>

	<p>
		 
	</p>

	<p>
		This wasn't a sudden change, if you're wondering. Microsoft <a data-wpel-link="external" href="https://blogs.windows.com/windowsexperience/2021/04/22/personalized-content-at-a-glance-introducing-news-and-interests-on-the-windows-10-taskbar/" rel="external nofollow" target="_blank">announced</a> the feature in April 2021, and released it in the May Update.  But for some reason, many users are only getting the widget after the June update. This isn't the first annoyance we have seen, you may have come across the infamous "<a data-wpel-link="internal" href="https://www.ghacks.net/2021/06/02/you-can-disable-the-annoying-use-recommended-browser-settings-popup-in-microsoft-edge-for-now/" rel="external nofollow" target="_blank">Use Microsoft Edge</a>" screen pop-up after a reboot. I saw it a few weeks ago.
	</p>

	<p>
		 
	</p>

	<p>
		You're probably thinking I don't want that weather info on the taskbar. And I agree, it is quite long and takes up a lot of space. Well, the good news is that you can get rid of the weather panel in just 2 clicks.
	</p>

	<h4>
		How to disable the Weather widget from the Windows 10 Taskbar
	</h4>

	<p>
		Right-click anywhere on the taskbar. Mouse over the News and Interests menu, and then on its sub-menu. Select the Turn off option. That's it.
	</p>

	<p>
		 
	</p>

	<p>
		<img alt="How to disable the Weather widget from Windows 10 Taskbar" data-ratio="76.60" loading="lazy" src="https://mk0ghacksnety2pjrgh8.kinstacdn.com/wp-content/uploads/2021/06/How-to-disable-the-Weather-widget-from-Windows-10-Taskbar.jpg">
	</p>

	<p>
		 
	</p>

	<p>
		If you changed your mind and want it back, repeat the steps.
	</p>

	<p>
		 
	</p>

	<p>
		Tip: check out <a data-wpel-link="internal" href="https://www.ghacks.net/2021/02/24/how-to-turn-off-the-news-and-interests-feature-of-windows-10/" rel="external nofollow">Martin's detailed guide on hiding the News and Interests widget</a> for additional information, including how to disable the feature in the Registry.
	</p>

	<h4>
		A brief overview of the News and Interests panel
	</h4>

	<p>
		While we are here, let's take a look at the other options that are available in News and Interests. If you don't like the long version of the widget, but find the information useful, you can switch to the Icon-only version. This removes the temperature reading and the text, so you're literally left with the icon. Oddly, the icon does not have a tool-tip to indicate the temperature level. The open on hover setting, which is enabled by default, doesn't do anything.
	</p>

	<p>
		 
	</p>

	<p>
		Left-click on the weather widget and a big panel pops-up. This is the News and Weather app window. In addition to displaying the weather information, it also shows you top stories from news websites, stock prices, and traffic updates. To customizing your news feed, click the Manage Interests button at the top of the pop-up. It takes you to your MSN settings page where you can pick the news categories that you like.
	</p>

	<p>
		 
	</p>

	<p>
		Each card in the News and Weather panel has a three-dot button, which you can click to customize its settings. The weather card, for example, will always detect your location. I have disabled location usage from Windows' settings, but the weather app seems to have picked it up. It's not accurate because it doesn't use GPS,  and instead relies on your internet connection. You can manually enter the zip code or City name in the weather card's settings to specify the location. The Traffic card's settings are similar. You may hide each card if you don't find it useful.
	</p>

	<p>
		 
	</p>

	<p>
		I'm not sure if you can tell from the screenshot, but the text in the weather widget is blurry. I don't have this problem with other programs.
	</p>

	<p>
		 
	</p>

	<p>
		So, what do you think about the weather widget? Do you like it, or do you consider it bloatware?
	</p>
</div>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.ghacks.net/2021/06/11/how-to-disable-the-weather-widget-from-the-windows-10-taskbar/" rel="external nofollow">How to disable the Weather widget from the Windows 10 Taskbar</a>
</p>
]]></description><guid isPermaLink="false">525</guid><pubDate>Fri, 11 Jun 2021 22:16:25 +0000</pubDate></item><item><title>Google will skip the release of Chrome 95 to adjust to the new four-week release schedule</title><link>https://nsaneforums.com/news/software-news/google-will-skip-the-release-of-chrome-95-to-adjust-to-the-new-four-week-release-schedule-r524/</link><description><![CDATA[<header>
	<h1>
		Google will skip the release of Chrome 95 to adjust to the new four-week release schedule  
	</h1>
</header>

<div itemprop="articleBody">
	<p>
		 
	</p>

	<p>
		Earlier this year, Google announced that it was <a href="https://www.neowin.net/news/google-chrome-will-shift-to-a-four-week-release-cycle/" rel="external nofollow">moving to a four-week release cycle</a> for Chrome, shortening the duration between releases for consumers. The change is slated to be made with Chrome version 94. Today, the <a href="https://blog.chromium.org/2021/06/changes-to-chrome-oss-release-cycle.html" rel="external nofollow">company announced</a> its plans for Chrome OS and the release schedule changes coming to it.
	</p>

	<p>
		 
	</p>

	<p>
		The company says that it will be moving Chrome OS to the four-week release cycle starting with version 96, which is <a href="https://chromiumdash.appspot.com/schedule" rel="external nofollow">expected to make it to users</a> sometime in late November. Chrome version 94, on the other hand, is expected to roll out in the stable channel in the third week of September, with the corresponding Chrome OS version slated to release in the week of October 14. Keeping in mind these schedules, the search giant says that it will be skipping Chrome version 95 completely to “bridge the gap” between version 94 and 96.
	</p>

	<p>
		 
	</p>

	<p>
		The firm also revealed that it will be introducing a new six-month update cadence for enterprise and educations users of the OS. This is likely aimed at focusing more on stability and security, and less on feature additions. The firm, however, has not provided much information in this regard. A similar eight-week Extended stable option is also planned for the browser.
	</p>

	<p>
		 
	</p>

	<p>
		Google’s Marina Kazatcker adds:
	</p>

	<blockquote>
		<p>
			As we head into our next decade, these changes enable us to evolve Chrome OS to keep helping people get things done and to provide more helpful and secure experiences.
		</p>
	</blockquote>

	<p>
		It will not be surprising to see other Chromium-based browsers – such as Microsoft’s Edge – skip version 95 as well, coinciding with Chrome’s release schedule. However, <a href="https://docs.microsoft.com/en-us/deployedge/microsoft-edge-release-schedule" rel="external nofollow">Edge’s release schedule page</a> is yet to mention any changes to the schedule.
	</p>
</div>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/google-will-skip-the-release-of-chrome-95-to-adjust-to-the-new-four-week-release-schedule/" rel="external nofollow">Google will skip the release of Chrome 95 to adjust to the new four-week release schedule</a>
</p>
]]></description><guid isPermaLink="false">524</guid><pubDate>Fri, 11 Jun 2021 22:12:59 +0000</pubDate></item><item><title>EdgeDeflector v1.2.2.0 release cleans up unused code</title><link>https://nsaneforums.com/news/software-news/edgedeflector-v1220-release-cleans-up-unused-code-r523/</link><description><![CDATA[<header>
	<h1>
		EdgeDeflector v1.2.2.0 release cleans up unused code
	</h1>
</header>

<div itemprop="articleBody">
	<p>
		 
	</p>

	<p>
		EdgeDeflector <a href="https://www.neowin.net/news/how-to-force-news-and-interests-to-use-your-default-browser/" rel="external nofollow">changes the behavior of the new News and Interests widget</a> which is now <a href="https://www.neowin.net/news/windows-7-and-81-patch-tuesday-updates-are-now-out-here039s-the-complete-changelog" rel="external nofollow">forced on everyone by default</a>, and ignores using your default browser when links are opened from it. This little tool changes how Windows 10 stubbornly defaults to the Edge browser to open links from Help dialogs, Cortana and News and Interests, and instead forces it to respect what you chose in the Default apps &gt; Web browser settings of Windows.
	</p>

	<p>
		 
	</p>

	<p>
		The developer of EdgeDeflector has released a new version on GitHub bringing it up to version 1.2.2.0 just over a week <a href="https://www.neowin.net/news/edgedeflector-1200-released-allows-setting-default-browser-for-news-and-interests" rel="external nofollow">after releasing 1.2.1.0</a> which resolved links not opening in the weather widget of Windows 10 version 21H1 (May 2021 Update). In this version there's just one change in the release notes:
	</p>

	<blockquote>
		<ul>
			<li>
				<p>
					Remove unused code. (Optimization contributed by @voltura.)
				</p>
			</li>
		</ul>
	</blockquote>

	<p>
		As a reminder, below is the release notes from the more recent 1.2.1.0 version and the major 1.2.0.0 version, which was released <a href="https://github.com/da2x/EdgeDeflector/releases" rel="external nofollow">after a three and a half years hiatus</a>, to address changes in the way Windows 10 blocks automation of setting some features during installation; much in the same way that it is no longer possible for software installations to set App defaults, this must now be done manually.
	</p>

	<p>
		 
	</p>

	<p>
		Here are those release notes:
	</p>

	<blockquote>
		<ul>
			<li>
				Resolved an issue where weather links on the task bar would not open.<br>
				(New in Windows 10 21H1.) (1.2.1.0)
			</li>
			<li>
				New post-installation greeting page helps user through manual installation steps.<br>
				(Changes in Windows 10 prevents automation during installation.) (1.2.0.0)
			</li>
			<li>
				Now installs per-user.<br>
				(No longer requires administrative permissions to install.) (1.2.0.0)
			</li>
			<li>
				Resolved issues that caused anti-virus programs to consider the installer and program suspicious. (1.2.0.0)
			</li>
			<li>
				Resolved potential localization issue. (1.2.0.0)
			</li>
		</ul>
	</blockquote>

	<p>
		The developer warns that any old versions prior to 1.2.0.0 must be uninstalled before installing the newer versions. If you're upgrading from 1.2.x.x to 1.2.2.0 you will not need to uninstall it first. To use, follow the steps below:
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			Download and install <a href="https://github.com/da2x/EdgeDeflector/releases/tag/v1.2.2.0" rel="external nofollow">EdgeDeflector v1.2.2.0</a> from the Releases page on GitHub,
		</li>
		<li>
			Go to All settings &gt; Apps &gt; Default apps,
		</li>
		<li>
			Scroll to the bottom and click Choose default apps by protocol,
		</li>
		<li>
			Locate MICROSOFT-EDGE in the list and click on the program icon to the right of it,
		</li>
		<li>
			Select EdgeDeflector from the list. Confirm the change if asked to.
		</li>
	</ul>

	<p>
		 
	</p>

	<p>
		The above process is also <a href="https://www.daniel.priv.no/tools/edgedeflector/post-install.html" rel="external nofollow">detailed here</a>, which also lets you reverse the above steps, if needed. If you want to learn more about how EdgeDeflector works and why it was created, you can visit the <a href="https://www.ctrl.blog/entry/edgedeflector-default-browser.html" rel="external nofollow">developer's blog post on it, here</a>.
	</p>

	<p>
		 
	</p>

	<p>
		Source: <a href="https://github.com/da2x/EdgeDeflector" rel="external nofollow">EdgeDeflector on GitHub</a>
	</p>
</div>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/edgedeflector-v1220-release-cleans-up-unused-code/" rel="external nofollow">EdgeDeflector v1.2.2.0 release cleans up unused code</a>
</p>
]]></description><guid isPermaLink="false">523</guid><pubDate>Fri, 11 Jun 2021 22:10:48 +0000</pubDate></item><item><title>Official Twitter app for Windows 10 devices updated with several new features</title><link>https://nsaneforums.com/news/software-news/official-twitter-app-for-windows-10-devices-updated-with-several-new-features-r522/</link><description><![CDATA[<header>
	<h1>
		Official Twitter app for Windows 10 devices updated with several new features
	</h1>

	<div>
		<div>
			<div>
				<p>
					<img alt="Twitter-Windows-10-app.jpg" class="ipsImage" data-ratio="75.10" height="490" width="720" src="https://mspoweruser.com/wp-content/uploads/2021/06/Twitter-Windows-10-app.jpg">
				</p>

				<div>
					 
				</div>
			</div>
		</div>
	</div>
</header>

<p>
	A new Twitter update is available in Microsoft Store for Windows 10 devices. This updated Twitter app is based on Microsoft’s Chromium Edge-based web view offering new features and better performance. Twitter app now supports shortcuts, web share target, taskbar badging, notifications, jump lists, and dark/light theme sync with OS settings.
</p>

<p>
	 
</p>

<p>
	You can download the updated Twitter app <a href="https://click.linksynergy.com/deeplink?id=RsMnYVFRqXk&amp;mid=24542&amp;murl=https%3A%2F%2Fwww.microsoft.com%2Fen-us%2Fp%2Ftwitter%2F9wzdncrfj140" rel="external nofollow" target="_blank">here from Microsoft Store</a>.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://mspoweruser.com/twitter-app-for-windows-10-devices-features/" rel="external nofollow">Official Twitter app for Windows 10 devices updated with several new features</a>
</p>
]]></description><guid isPermaLink="false">522</guid><pubDate>Fri, 11 Jun 2021 22:08:31 +0000</pubDate></item><item><title>Microsoft releases new Office Insider Build 14204.20006 for Windows users</title><link>https://nsaneforums.com/news/software-news/microsoft-releases-new-office-insider-build-1420420006-for-windows-users-r521/</link><description><![CDATA[<h1>
	Microsoft releases new Office Insider Build 14204.20006 for Windows users
</h1>

<article>
	<p>
		Microsoft has released a new Office Insider Preview <a href="https://insider.office.com/en-us/releasenotes/windows/fast" rel="external nofollow" target="_blank">Build 14204.20006</a>(Beta Channel) for Windows users. The new Office Insider Preview build adds no new features, instead, you get a ton of fixes for issues found in Word, Excel, OneNote. You can read the full official changelog below.
	</p>

	<h2>
		Changelog
	</h2>

	<blockquote>
		<h4 id="word">
			Word
		</h4>

		<h5 id="notable-fixes">
			Notable fixes
		</h5>

		<ul>
			<li aria-setsize="-1" data-aria-level="1" data-aria-posinset="1" data-font="Symbol" data-leveltext="?" data-listid="4">
				We fixed an issue in which squares appeared when using the Microsoft Word Manuscript Paper Add-in. 
			</li>
			<li aria-setsize="-1" data-aria-level="1" data-aria-posinset="2" data-font="Symbol" data-leveltext="?" data-listid="4">
				We fixed an issue in which some pages in print preview were blank. 
			</li>
		</ul>

		<h4 id="excel">
			Excel
		</h4>

		<h5 id="notable-fixes">
			Notable Fixes
		</h5>

		<ul>
			<li aria-setsize="-1" data-aria-level="1" data-aria-posinset="0" data-font="Symbol" data-leveltext="?" data-listid="7">
				We fixed an issue where extra entries appeared in the Excel Add-in list for some users. 
			</li>
			<li aria-setsize="-1" data-aria-level="1" data-aria-posinset="0" data-font="Symbol" data-leveltext="?" data-listid="7">
				We fixed an issue where a saved workbook would appear at the top of the Recent list when saving to an SPO document library. 
			</li>
		</ul>

		<h4 id="onenote">
			OneNote
		</h4>

		<h5 id="notable-fixes">
			Notable fixes
		</h5>

		<ul>
			<li>
				We fixed an issue where copying a link to a paragraph did not always redirect to the correct page. 
			</li>
		</ul>
	</blockquote>

	<p>
		To update to the latest Microsoft Office Insider Preview Build, open any Office program and go to File&gt; Account&gt; Update Options&gt; Update Now.
	</p>
</article>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://mspoweruser.com/office-insider-preview-build-build-14204-20006/" rel="external nofollow">Microsoft releases new Office Insider Build 14204.20006 for Windows users</a>
</p>
]]></description><guid isPermaLink="false">521</guid><pubDate>Fri, 11 Jun 2021 22:05:06 +0000</pubDate></item><item><title>New macOS Office Build comes with a ton of new features</title><link>https://nsaneforums.com/news/software-news/new-macos-office-build-comes-with-a-ton-of-new-features-r520/</link><description><![CDATA[<h1>
	New macOS Office Build comes with a ton of new features
</h1>

<p>
	 
</p>

<p>
	Microsoft has released a new Office Insider Preview <a href="https://insider.office.com/en-us/releasenotes/mac/slow" rel="external nofollow" target="_blank">Build 16.50.21060600</a> for Insiders in the Current Channel. The new Office build comes with a bunch of new features for Word, Excel, PowerPoint, and OneNote.
</p>

<p>
	 
</p>

<p>
	Talking about what’s new, the new Office Insider Preview Build adds a new look for the Office start screen which is based on the Fluent Design capabilities, an updated Thesaurus across Office, the ability to add a high-quality video to your presentation, dark mode in document canvas, colorful themes, and many more. You can read about all the features in detail below.
</p>

<h2>
	Changelog
</h2>

<blockquote>
	<h4 id="word-excel-powerpoint-onenote">
		Word, Excel, PowerPoint, OneNote
	</h4>

	<h5 id="get-a-new-look-for-your-office-start-screen">
		Get a new look for your Office start screen
	</h5>

	<p>
		When you open Word, Excel, PowerPoint, or OneNote on your Mac, you are greeted with a new start screen that takes advantage of the latest Fluent Design capabilities. Though this update does not include any changes to the core functionality of the Start screen, it provides a clearer and?more intuitive start experience that is Big Sur macOS-optimized and unmistakably Microsoft 365.
	</p>

	<p>
		<a href="https://insider.office.com/blog/visual-updates-to-start-experience-in-office-for-mac" rel="external nofollow" target="_blank">Learn more &gt;</a>
	</p>
</blockquote>

<p>
	<img alt="Mac-new-start-screen-1024x603.png" class="ipsImage" data-ratio="75.10" height="423" width="720" src="https://prodmediacdn.blob.core.windows.net/media/2021/03/Mac-new-start-screen-1024x603.png">
</p>

<h5 id="updated-thesaurus">
	Updated Thesaurus
</h5>

<p>
	The built-in Thesaurus feature allows you to select just the right word to get your message across. We’ve updated the Thesaurus across Office to improve its accuracy and eliminate inappropriate and incorrect synonyms. To use the Thesaurus, highlight (double-click) a word, select Synonyms from the dialogue box, and choose the best option. (You can also open the Thesaurus pane from the Review ribbon to view contextual vocabulary suggestions.)
</p>

<p>
	 
</p>

<p>
	<img alt="Updated-Thesaurus.png" class="ipsImage" data-ratio="75.10" height="449" width="720" src="https://prodmediacdn.blob.core.windows.net/media/2021/03/Updated-Thesaurus.png">
</p>

<h4 id="powerpoint">
	PowerPoint
</h4>

<h5 id="add-high-quality-video-to-your-presentation">
	Add high-quality video to your presentation
</h5>

<p>
	Nothing adds life to a presentation like video. You can now elevate your documents with premium content by accessing a library of curated, royalty-free video footage. To add a video to your presentation, select the Insert tab, then select Video &gt; Stock Videos and browse the available content. Select the video you want to use and click Insert to place it on the slide you want it to play from.
</p>

<p>
	 
</p>

<p>
	<img alt="insert-video-PPT-Mac.png" class="ipsImage" data-ratio="73.76" height="416" width="564" src="https://prodmediacdn.blob.core.windows.net/media/2021/03/insert-video-PPT-Mac.png">
</p>

<h4 id="outlook">
	Outlook
</h4>

<h5 id="transition-to-the-new-outlook">
	Transition to the new Outlook
</h5>

<p>
	If you are upgrading to the latest version of Outlook, you’ll notice we’ve implemented some features that will help you make a smooth and seamless transition. These include a First Run Experience that explains the major changes when you open the app for the first time, in-app notifications that “nudge” you to try out new features, and a What’s New checklist that helps you navigate the new experience and see what aspects of the program you haven’t explored or customized yet.
</p>

<p>
	 
</p>

<p>
	<img alt="Outlook-onboarding-box.png" class="ipsImage" data-ratio="94.16" height="435" width="462" src="https://prodmediacdn.blob.core.windows.net/media/2021/03/Outlook-onboarding-box.png">
</p>

<h5 id="new-colorful-themes">
	New Colorful Themes
</h5>

<p>
	Now you can enhance your Outlook for Mac experience with exciting new themes—choose one of six preset theme colors. These themes enable you to increase your screen visibility, address any personal accessibility needs, or simply beautify the user interface to suit your mood or interests. To enable a theme, select Outlook &gt; Preferences &gt; General. Under Personalize, select Light Mode, Dark Mode, or System (the latter will allow Outlook to reflect the system default setting). Then in the Theme section, click the color you want. To enable or disable window transparency, check or clear the Transparency checkbox.
</p>

<p>
	 
</p>

<p>
	<img alt="new-purple-outlook-theme-1024x661.png" class="ipsImage" data-ratio="75.10" height="464" width="720" src="https://prodmediacdn.blob.core.windows.net/media/2021/03/new-purple-outlook-theme-1024x661.png">
</p>

<h5 id="change-defaults-for-meeting-times-across-an-organization">
	Change defaults for meeting times across an organization
</h5>

<p>
	While back-to-back meetings have become a hallmark of the pandemic era, research shows that even small breaks between meetings can have a positive impact on stress levels and the ability to focus and engage. Now network administrators have the ability to create default settings in Outlook across an organization to end all meetings or events a few minutes early or start them a few minutes late, giving everyone at the company more breaks. These settings can be enabled through PowerShell; admins should refer to <a href="https://techcommunity.microsoft.com/t5/outlook-blog/new-settings-in-outlook-give-everyone-a-break-between-meetings/ba-p/2276514" rel="external nofollow" target="_blank">this Tech Community post</a> for more details and instructions.
</p>

<h5 id="move-and-copy-messages-between-accounts">
	Move and copy messages between accounts
</h5>

<p>
	Many of you have asked for the ability to move or copy an email sent to one of multiple accounts to a folder in a different account. Now you can! This is also very helpful for those who are using a shared mailbox account.
</p>

<p>
	<a href="https://insider.office.com/blog/move-and-copy-messages-between-accounts-in-outlook-for-mac" rel="external nofollow" target="_blank">Learn more &gt;</a>
</p>

<p>
	 
</p>

<p>
	<img alt="move-messages-between-Outlook-accounts-1" class="ipsImage" data-ratio="47.22" height="239" width="720" src="https://prodmediacdn.blob.core.windows.net/media/2021/03/move-messages-between-Outlook-accounts-1024x341.png">
</p>

<h5 id="pin-messages-to-the-top-of-your-inbox">
	Pin messages to the top of your Inbox
</h5>

<p>
	You asked for it! Sometimes there’s an important email that you just can’t let get buried. You can keep that message highly visible by easily pinning it to the top of your Inbox.
</p>

<p>
	<a href="https://insider.office.com/blog/pin-messages-to-top-of-your-inbox-in-outlook-for-mac" rel="external nofollow" target="_blank">Learn more &gt;</a>
</p>

<p>
	 
</p>

<p>
	<img alt="pin-message-indicator-1024x162.png" class="ipsImage" data-ratio="22.50" height="113" width="720" src="https://prodmediacdn.blob.core.windows.net/media/2021/03/pin-message-indicator-1024x162.png">
</p>

<h5 id="use-contextual-add-ins-in-the-reading-pane">
	Use contextual add-ins in the reading pane
</h5>

<p>
	Now you can access contextual add-ins right from the reading pane in Outlook. This makes it easy to add a phone number to your contacts, look up a location on a map, or suggest a meeting without leaving the reading pane. To try these out, simply click on the contextual items that are highlighted for you by Outlook.
</p>

<p>
	 
</p>

<p>
	<img alt="contextual-add-ins-1024x712.png" class="ipsImage" data-ratio="75.10" height="500" width="720" src="https://prodmediacdn.blob.core.windows.net/media/2021/03/contextual-add-ins-1024x712.png">
</p>

<h4 id="word">
	Word
</h4>

<h5 id="new-dark-mode">
	New Dark Mode
</h5>

<p>
	We heard you! We’ve made improvements to the popular Dark Mode. Previously, the Black Office theme offered a dark ribbon and toolbars, but your document canvas stayed bright white. We’ve extended Dark Mode so that your document is also dark, which is important for reducing eye strain and accommodating light sensitivity from long hours at a computer screen. To turn on Dark Mode, you need to enable it for your Mac in Settings &gt; General &gt; Appearance &gt; Dark. Then, you can switch to this mode in Word at any time by selecting View &gt; Switch Modes from the ribbon.
</p>

<p>
	<a href="https://insider.office.com/blog/dark-mode-in-word-for-mac" rel="external nofollow" target="_blank">Learn more &gt;</a>
</p>

<p>
	 
</p>

<p>
	<img alt="dark-mode-quick_Mac1.gif" class="ipsImage" data-ratio="75.10" height="475" width="720" src="https://prodmediacdn.blob.core.windows.net/media/2021/05/dark-mode-quick_Mac1.gif">
</p>

<h5 id="editor-enhances-communication">
	Editor Enhances Communication
</h5>

<p>
	The Editor feature is here! Editor is an intelligent writing assistant that helps you put your best foot forward and communicate your message more effectively. It checks your document for grammar and spelling errors and offers suggestions to improve clarity, conciseness, inclusiveness, vocabulary, and more. To access the feature, click on the Editor icon on the Home ribbon, and review the suggestions in the Editor pane.
</p>

<p>
	 
</p>

<p>
	<img alt="Editor-for-the-Mac.png" class="ipsImage" data-ratio="75.10" height="432" width="720" src="https://prodmediacdn.blob.core.windows.net/media/2021/03/Editor-for-the-Mac.png">
</p>

<h4 id="word-excel-powerpoint">
	Word, Excel, PowerPoint
</h4>

<h5 id="accessibility-checker-runs-in-background">
	Accessibility Checker runs in background
</h5>

<p>
	Now it’s even easier to create accessible content, by having the Accessibility Checker running in the background as you create and update your document. This feature displays real-time scan results in the status bar, showing when accessibility recommendations are available to investigate. Clicking the status bar item will launch the Accessibility Checker pane, which offers a list of accessibility issues that you can act on as desired.
</p>

<p>
	 
</p>

<p>
	<img alt="accessibility-checker-pane-1024x339.png" class="ipsImage" data-ratio="46.94" height="238" width="720" src="https://prodmediacdn.blob.core.windows.net/media/2021/03/accessibility-checker-pane-1024x339.png">
</p>

<h4 id="word-excel-powerpoint-outlook-onenote">
	Word, Excel, PowerPoint, Outlook, OneNote
</h4>

<h5 id="use-the-ribbon-with-just-your-keyboard">
	Use the ribbon with just your keyboard
</h5>

<p>
	You asked for it! You can now carry out common ribbon tasks from anywhere in Office by using your keyboard; we’ve made this easier by implementing KeyTips. When you press the Option key (? Opt), KeyTips now appear on the ribbon to allow you to activate tabs and commands.
</p>

<p>
	 
</p>

<p>
	<img alt="KeyTips-in-PowerPoint-1024x616.png" class="ipsImage" data-ratio="75.10" height="433" width="720" src="https://prodmediacdn.blob.core.windows.net/media/2021/03/KeyTips-in-PowerPoint-1024x616.png">
</p>

<p>
	 
</p>

<p>
	To update to Office Insider Preview Build, open any Office program and go to File &gt; Account &gt; Update options &gt; Update now.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://mspoweruser.com/macos-office-insider-preview-build-16-50-21060600/" rel="external nofollow">New macOS Office Build comes with a ton of new features</a>
</p>
]]></description><guid isPermaLink="false">520</guid><pubDate>Fri, 11 Jun 2021 22:02:28 +0000</pubDate></item><item><title>Microsoft pushes emergency update for Windows 10 Xbox Game Pass bug</title><link>https://nsaneforums.com/news/software-news/microsoft-pushes-emergency-update-for-windows-10-xbox-game-pass-bug-r519/</link><description><![CDATA[<h1>
	Microsoft pushes emergency update for Windows 10 Xbox Game Pass bug
</h1>

<div>
	<p>
		 
	</p>

	<p>
		Microsoft has released the KB5004476 emergency out-of-band update for Windows 10 that fixes problems installing or playing an Xbox Game Pass game.
	</p>

	<p>
		 
	</p>

	<p>
		Since 2019, some Windows 10 users have been having issues [<a href="https://answers.microsoft.com/en-us/windows/forum/windows_10-windows_store/error-code-0x80073d26-cant-install-gaming-services/ca90a836-f369-40c8-8b51-b18369795bab?page=1" rel="external nofollow" target="_blank">1</a>, <a href="https://answers.microsoft.com/en-us/windows/forum/windows_10-windows_store/windows-store-gaming-services-update-error-code/19baf768-e256-4842-b9a3-f0db86dbbd71" rel="external nofollow" target="_blank">2</a>, <a href="https://answers.microsoft.com/en-us/search/search?SearchTerm=0x8007139F%20Gaming%20Services%20&amp;tab=&amp;status=all&amp;advFil=&amp;IsSuggestedTerm=false&amp;isFilterExpanded=undefined&amp;CurrentScope.ForumName=windows&amp;CurrentScope.Filter=windows_10&amp;ContentTypeScope=QnA,Discussion,Article,MicrosoftSupport&amp;page=1&amp;sort=Relevance&amp;dir=Desc" rel="external nofollow" target="_blank">3</a>, <a href="https://answers.microsoft.com/en-us/search/search?SearchTerm=0x80073D26%20Gaming%20Services%20&amp;tab=&amp;status=all&amp;advFil=&amp;IsSuggestedTerm=false&amp;isFilterExpanded=undefined&amp;CurrentScope.ForumName=windows&amp;CurrentScope.Filter=windows_10&amp;ContentTypeScope=QnA,Discussion,Article,MicrosoftSupport&amp;page=1&amp;sort=Relevance&amp;dir=Desc" rel="external nofollow" target="_blank">4</a>] installing or playing Xbox Game Pass games. When attempting to do so, users would be prompted to install the 'Gaming Services' app from the Microsoft Store, which would fail with a 0x80073D26 or 0x8007139F error, as shown below.
	</p>

	<div>
		<figure>
			<img alt="Receiving a 0x80073D26 error when installing Game Services" data-ratio="73.89" style="width: 720px; height: 532px;" width="720" src="https://www.bleepstatic.com/images/news/Microsoft/Windows-10/o/oob-updates/xbox-KB5004476/xbox-game-service-error.png">
			<figcaption>
				Receiving a 0x80073D26 error when installing Game Services
			</figcaption>
		</figure>
	</div>

	<p>
		Microsoft <a href="https://www.bleepingcomputer.com/news/microsoft/microsoft-finally-shares-fix-for-xbox-game-pass-installation-errors/" target="_blank" rel="external nofollow">released a manual fix yesterday</a> to explain how to fix the problem by manually removing the Windows services for the Game Services app.
	</p>

	<p>
		 
	</p>

	<p>
		However, it is never advisable to recommend people manually remove Registry entries as a mistake could cause Windows to become unusable.
	</p>

	<h2>
		Out-of-band Windows 10 update released
	</h2>

	<p>
		To make it easier to fix this Xbox Game Pass issue, Microsoft has released the KB5004476 emergency update to fix the bug without having users manually delete Registry keys.
	</p>

	<p>
		 
	</p>

	<p>
		"Updates an issue that might redirect you to the Microsoft Store page for Gaming Services when you try to install or start an Xbox Game Pass game on your Windows 10 device," explains the <a href="https://support.microsoft.com/en-us/topic/june-11-2021-kb5004476-os-builds-19041-1055-19042-1055-and-19043-1055-out-of-band-e12f58c7-4ceb-4d24-adfb-b13820f4e86b" rel="external nofollow" target="_blank">KB5004476 support bulletin</a>.
	</p>

	<p>
		 
	</p>

	<p>
		Microsoft states that this bug only affects users running Windows 10 2004, Windows 10 20H1, Windows 10 20H2, and Windows 10 21H1.
	</p>

	<p>
		 
	</p>

	<p>
		To install the update, you must open Windows Update and perform a manual 'Check for update.' Windows Update will then offer KB5004476 as an optional update.
	</p>

	<div>
		<figure>
			<img alt="Windows 10 KB5004476 optional update" data-ratio="69.86" style="width: 720px; height: 503px;" width="720" src="https://www.bleepstatic.com/images/news/Microsoft/Windows-10/o/oob-updates/xbox-KB5004476/KB5004476-oob-update.jpg">
			<figcaption>
				Windows 10 KB5004476 optional update
			</figcaption>
		</figure>
	</div>

	<p>
		Before installing the KB5004476 OOB update, Windows users must first install the May 11th, 2021 <a href="https://www.bleepingcomputer.com/news/microsoft/windows-10-cumulative-updates-kb5003169-and-kb5003173-released/" ms.cmpgrp="content" ms.pgarea="Body" target="_blank" rel="external nofollow">KB5003173</a> cumulative update or later.
	</p>
</div>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/microsoft/microsoft-pushes-emergency-update-for-windows-10-xbox-game-pass-bug/" rel="external nofollow">Microsoft pushes emergency update for Windows 10 Xbox Game Pass bug</a>
</p>
]]></description><guid isPermaLink="false">519</guid><pubDate>Fri, 11 Jun 2021 21:53:20 +0000</pubDate></item><item><title>Friday gift: Microsoft Teams bugs puts calls directly in voicemail</title><link>https://nsaneforums.com/news/software-news/friday-gift-microsoft-teams-bugs-puts-calls-directly-in-voicemail-r517/</link><description><![CDATA[<h1>
	Friday gift: Microsoft Teams bugs puts calls directly in voicemail
</h1>

<div>
	<p>
		A Microsoft Teams change is causing calls to go directly to voicemail, much to users' happiness worldwide.
	</p>

	<p>
		 
	</p>

	<p>
		At approximately 3 PM EST today, Microsoft tweeted that a bug is causing Microsoft Teams calls to go straight to Voicemail.
	</p>

	<p>
		 
	</p>

	<p>
		A later tweet says that a recent change caused the bug and that they are rolling back the change on their infrastructure.
	</p>

	<p>
		 
	</p>

	<div class="ipsEmbeddedOther" contenteditable="false">
		<iframe allowfullscreen="" class="ipsEmbed_finishedLoading" data-controller="core.front.core.autosizeiframe" data-embedid="embed1063903854" scrolling="no" src="https://nsaneforums.com/index.php?app=core&amp;module=system&amp;controller=embed&amp;url=https://twitter.com/MSFT365Status/status/1403427393377689600?ref_src=twsrc%255Etfw%257Ctwcamp%255Etweetembed%257Ctwterm%255E1403444474634674177%257Ctwgr%255E%257Ctwcon%255Es2_%26ref_url=https://www.bleepingcomputer.com/news/microsoft/friday-gift-microsoft-teams-bugs-puts-calls-directly-in-voicemail/" style="overflow: hidden; height: 281px;"></iframe>
	</div>

	<p>
		While admins may be happy that the bug is being fixed, Microsoft Teams users worldwide look at this as a Friday gift instead.
	</p>

	<p>
		 
	</p>

	<div class="ipsEmbeddedOther" contenteditable="false">
		<iframe allowfullscreen="" class="ipsEmbed_finishedLoading" data-controller="core.front.core.autosizeiframe" data-embedid="embed7819213165" scrolling="no" src="https://nsaneforums.com/index.php?app=core&amp;module=system&amp;controller=embed&amp;url=https://twitter.com/georgheh/status/1403427587720978439?ref_src=twsrc%255Etfw%257Ctwcamp%255Etweetembed%257Ctwterm%255E1403427587720978439%257Ctwgr%255E%257Ctwcon%255Es1_%26ref_url=https://www.bleepingcomputer.com/news/microsoft/friday-gift-microsoft-teams-bugs-puts-calls-directly-in-voicemail/" style="overflow: hidden; height: 306px;"></iframe>
	</div>

	<p>
		 
	</p>

	<div class="ipsEmbeddedOther" contenteditable="false">
		<iframe allowfullscreen="" class="ipsEmbed_finishedLoading" data-controller="core.front.core.autosizeiframe" data-embedid="embed2042157178" scrolling="no" src="https://nsaneforums.com/index.php?app=core&amp;module=system&amp;controller=embed&amp;url=https://twitter.com/ElJefeDSecurIT/status/1403430881319014404?ref_src=twsrc%255Etfw%257Ctwcamp%255Etweetembed%257Ctwterm%255E1403430881319014404%257Ctwgr%255E%257Ctwcon%255Es1_%26ref_url=https://www.bleepingcomputer.com/news/microsoft/friday-gift-microsoft-teams-bugs-puts-calls-directly-in-voicemail/" style="overflow: hidden; height: 354px;"></iframe>
	</div>

	<p>
		 
	</p>

	<div class="ipsEmbeddedOther" contenteditable="false">
		<iframe allowfullscreen="" class="ipsEmbed_finishedLoading" data-controller="core.front.core.autosizeiframe" data-embedid="embed5181114353" scrolling="no" src="https://nsaneforums.com/index.php?app=core&amp;module=system&amp;controller=embed&amp;url=https://twitter.com/ford_contour/status/1403427719124246534?ref_src=twsrc%255Etfw%257Ctwcamp%255Etweetembed%257Ctwterm%255E1403427719124246534%257Ctwgr%255E%257Ctwcon%255Es1_%26ref_url=https://www.bleepingcomputer.com/news/microsoft/friday-gift-microsoft-teams-bugs-puts-calls-directly-in-voicemail/" style="overflow: hidden; height: 306px;"></iframe>
	</div>

	<p>
		Microsoft Teams administrators can track this incident under TM261472 while Microsoft rolls out the fix.
	</p>
</div>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/microsoft/friday-gift-microsoft-teams-bugs-puts-calls-directly-in-voicemail/" rel="external nofollow">Friday gift: Microsoft Teams bugs puts calls directly in voicemail</a>
</p>
]]></description><guid isPermaLink="false">517</guid><pubDate>Fri, 11 Jun 2021 21:50:03 +0000</pubDate></item></channel></rss>
