<?xml version="1.0"?>
<rss version="2.0"><channel><title>News: Software News</title><link>https://nsaneforums.com/news/software-news/page/254/?d=2</link><description>News: Software News</description><language>en</language><item><title>How to create batch script files on Windows 11</title><link>https://nsaneforums.com/news/software-news/how-to-create-batch-script-files-on-windows-11-r15883/</link><description><![CDATA[<p>
	A batch file refers to those text files that usually end with a ".bat" extension that contains multiple commands that the system can run in sequence from the Command Prompt to perform different tasks.
</p>

<p>
	 
</p>

<p>
	On <a data-component-tracked="1" data-url="https://www.windowscentral.com/windows-11" href="https://www.windowscentral.com/windows-11" rel="external nofollow">Windows 11</a>, you can use a batch file to quickly make system changes, query system information, automate routines, and launch apps while reducing the steps, mistakes, and time it could take to type the commands or perform specific actions. 
</p>

<p>
	 
</p>

<p>
	Although you can always create more comprehensive scripts with PowerShell, batch files you can run on Command Prompt are still useful and easier to craft to perform an extended range of tasks.
</p>

<p>
	 
</p>

<p>
	This <a data-component-tracked="1" data-url="https://www.windowscentral.com/how-to" href="https://www.windowscentral.com/how-to" rel="external nofollow">how-to guide</a> will walk you through the different ways in which you can create and run a batch file on Windows 11.
</p>

<h3 id="section-how-to-create-batch-files-on-windows-11">
	How to create batch files on Windows 11
</h3>

<p>
	You can quickly write batch files with any text editor, such as Notepad or Visual Studio Code. You will only need some basic Command Prompt skills. 
</p>

<p>
	 
</p>

<p>
	This guide will show you three examples. The first one will help you build a basic batch file with three lines of code. The second example is a little more advanced, outlining the basics of running multiple commands. Finally, the third example demonstrates that you can perform different actions.
</p>

<h3>
	<strong>Compose basic batch file</strong>
</h3>

<p>
	To write a basic batch file on Windows 11, use these steps:
</p>

<p>
	 
</p>

<ol>
	<li>
		Open <strong>Start</strong>.
	</li>
	<li>
		Search for <strong>Notepad </strong>and click the top result to open the text editor.
	</li>
	<li>
		Type the following lines of code in the text file: 
	</li>
</ol>

<p>
	 
</p>

<p>
	<strong>@ECHO OFF</strong>
</p>

<p>
	 
</p>

<p>
	<strong>ECHO Hello World! This is my first batch file created on Windows 11. </strong>
</p>

<p>
	 
</p>

<p>
	<strong>PAUSE</strong>
</p>

<p>
	 
</p>

<p>
	<img alt="rYrVDiNayLqAgXDWQpwnyC-970-80.jpg" class="ipsImage" data-ratio="75.10" height="483" width="720" src="https://cdn.mos.cms.futurecdn.net/rYrVDiNayLqAgXDWQpwnyC-970-80.jpg">
</p>

<p>
	<em>(Image credit: Future)</em>
</p>

<p>
	 
</p>

<p>
	The above code will output the "Hello World! This is my first batch file created on Windows 11" message on the screen.
</p>

<p>
	 
</p>

<ol start="4">
	<li>
		Click the <strong>File </strong>menu and select the <strong>Save as</strong> option.
	</li>
	<li>
		Confirm a name for the script – for example, <strong>basic_batch.bat</strong>.
	</li>
</ol>

<p>
	 
</p>

<p>
	Once you complete the steps, double-click the file to run the script.
</p>

<p>
	 
</p>

<p>
	You will typically find batch files with the ".<strong>bat</strong>" extension, but it's also possible to use the ".<strong>cmd</strong>" or ".<strong>btm</strong>" file extensions.
</p>

<p>
	 
</p>

<p>
	Here's a break down of the commands:
</p>

<p>
	 
</p>

<ul>
	<li>
		<strong>@ECHO OFF</strong> — Disables the display prompt and shows content in a clean line.
	</li>
	<li>
		<strong>ECHO </strong>— Prints the text after the space on the screen.
	</li>
	<li>
		<strong>PAUSE </strong>— Keeps the window open after running the commands. If you don't use this option, the prompt will close automatically after the script finishes. You can use this command at the end of the script or after a specific command to insert a break on each line.
	</li>
</ul>

<h3>
	Compose advanced batch file
</h3>

<p>
	To create an advanced batch script, use these steps:
</p>

<p>
	 
</p>

<ol>
	<li>
		Open <strong>Start</strong>.
	</li>
	<li>
		Search for <strong>Notepad </strong>and click the top result to open the text editor.
	</li>
	<li>
		Type the following lines in the text file to create an advanced script:
	</li>
</ol>

<p>
	 
</p>

<p>
	<strong>@ECHO OFF </strong>
</p>

<p>
	 
</p>

<p>
	<strong>:: This batch file reveals Windows 11, hardware, and networking configuration.</strong>
</p>

<p>
	 
</p>

<p>
	<strong>TITLE My Computer Information</strong>
</p>

<p>
	 
</p>

<p>
	<strong>ECHO Checking system information...</strong>
</p>

<p>
	 
</p>

<p>
	<strong>:: Section 1: Windows 11 details</strong>
</p>

<p>
	 
</p>

<p>
	<strong>ECHO ==========================</strong>
</p>

<p>
	 
</p>

<p>
	<strong>ECHO WINDOWS 11 INFO</strong>
</p>

<p>
	 
</p>

<p>
	<strong>ECHO ============================</strong>
</p>

<p>
	 
</p>

<p>
	<strong>systeminfo | findstr /c:"OS Name"</strong>
</p>

<p>
	 
</p>

<p>
	<strong>systeminfo | findstr /c:"OS Version"</strong>
</p>

<p>
	 
</p>

<p>
	<strong>:: Section 2: Hardware details</strong>
</p>

<p>
	 
</p>

<p>
	<strong>ECHO ============================</strong>
</p>

<p>
	 
</p>

<p>
	<strong>ECHO HARDWARE INFO</strong>
</p>

<p>
	 
</p>

<p>
	<strong>ECHO ============================</strong>
</p>

<p>
	 
</p>

<p>
	<strong>systeminfo | findstr /c:"Total Physical Memory"</strong>
</p>

<p>
	 
</p>

<p>
	<strong>wmic cpu get name</strong>
</p>

<p>
	 
</p>

<p>
	<strong>wmic diskdrive get name,model,size</strong>
</p>

<p>
	 
</p>

<p>
	<strong>wmic path win32_videocontroller get name</strong>
</p>

<p>
	 
</p>

<p>
	<strong>wmic path win32_VideoController get CurrentHorizontalResolution,CurrentVerticalResolution</strong>
</p>

<p>
	 
</p>

<p>
	<strong>:: Section 3: Network details.</strong>
</p>

<p>
	 
</p>

<p>
	<strong>ECHO ============================</strong>
</p>

<p>
	 
</p>

<p>
	<strong>ECHO NETWORK INFO</strong>
</p>

<p>
	 
</p>

<p>
	<strong>ECHO ============================</strong>
</p>

<p>
	 
</p>

<p>
	<strong>ipconfig | findstr IPv4ipconfig | findstr IPv6</strong>
</p>

<p>
	 
</p>

<p>
	<strong>PAUSE</strong>
</p>

<p>
	 
</p>

<p>
	This script executes multiple system commands in sequence and outputs the computer information in three different categories, including "Windows details," "hardware details," and "network details."
</p>

<p>
	 
</p>

<p>
	<img alt="PDaSkmpjZhDqXhwbFw3eUM-970-80.jpg" class="ipsImage" data-ratio="75.10" height="483" width="720" src="https://cdn.mos.cms.futurecdn.net/PDaSkmpjZhDqXhwbFw3eUM-970-80.jpg">
</p>

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

<p>
	 
</p>

<ol start="4">
	<li>
		Click the <strong>File </strong>menu and select the <strong>Save as</strong> option.
	</li>
	<li>
		Type a name for the script — for example, <strong>advanced_batch.bat</strong>.
	</li>
</ol>

<p>
	 
</p>

<p>
	After you complete the steps, running the batch file will open a Command Prompt console outputting the results for each command. 
</p>

<p>
	 
</p>

<p>
	Here's a breakdown of the commands:
</p>

<p>
	 
</p>

<ul>
	<li>
		<strong>@ECHO OFF</strong> — Disables the display prompt and shows content in a clean line.
	</li>
	<li>
		<strong>TITLE </strong>— Renders a custom name for the window title bar.
	</li>
	<li>
		:: — Ignores the contents of the line. Usually, it's used to write comments and documentation information.
	</li>
	<li>
		<strong>ECHO </strong>— Prints the text after the space on the screen.
	</li>
	<li>
		<strong>PAUSE </strong>— Keeps the window open after running the commands.
	</li>
</ul>

<h3>
	Compose actionable batch file
</h3>

<p>
	One of the most common reasons to use scripts is to automatize different tasks to make system changes, such as connecting a network drive, installing an application, or changing system settings.
</p>

<p>
	 
</p>

<p>
	To create a script to change system settings on Windows 11, use these steps:
</p>

<p>
	 
</p>

<ol>
	<li>
		Open <strong>Start</strong>.
	</li>
	<li>
		Search for <strong>Notepad </strong>and click the top result to open the app.
	</li>
	<li>
		Type the following command in the text editor: net use <strong>z: \\PATH-NETWORK-SHARE\FOLDER-NAME /user:USERNAME PASSWORD</strong>
	</li>
</ol>

<p>
	 
</p>

<p>
	In the command, replace the "<strong>\\PATH-NETWORK-SHARE\FOLDER-NAME</strong>" for the folder network path to mount on the device and "<strong>USERNAME PASSWORD"</strong> with the username and password that authenticates access to the network share. This example maps a network folder using "<strong>Z</strong>" as the drive letter: <strong>net use z: \\10.1.4.57\ShareFiles</strong>
</p>

<p>
	 
</p>

<p>
	<img alt="eUNk7Cri7QtpA7e7Z4cp8X-970-80.jpg.webp" class="ipsImage" data-ratio="75.10" height="483" width="720" src="https://cdn.mos.cms.futurecdn.net/eUNk7Cri7QtpA7e7Z4cp8X-970-80.jpg.webp">
</p>

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

<p>
	 
</p>

<ol start="4">
	<li>
		Click the <strong>File </strong>menu and select the <strong>Save as </strong>option.
	</li>
	<li>
		Confirm a name for the script — for example, <strong>network-drive-batch.bat</strong>.
	</li>
</ol>

<p>
	 
</p>

<p>
	Once you complete the steps, this particular batch file will map a network on File Explorer.
</p>

<h2 id="section-how-to-run-batch-files-on-windows-11">
	How to run batch files on Windows 11
</h2>

<p>
	On Windows 11, you can run batch files in at least three ways from Command Prompt, File Explorer, or automatically during startup.
</p>

<h3>
	Run script from Command Prompt
</h3>

<p>
	To run a batch file from Command Prompt on Windows 11, use these steps:
</p>

<p>
	 
</p>

<ol>
	<li>
		Open <strong>Start</strong>.
	</li>
	<li>
		Search for <strong>Command Prompt</strong>, right-click the top result, and select the <strong>Run as administrator </strong>option.
	</li>
	<li>
		Type the following command to run a Windows 11 batch file and press E<strong>nter: C:\PATH\TO\FOLDER\BATCH.bat</strong>
	</li>
</ol>

<p>
	 
</p>

<p>
	In the command, specify the path and name for your script. This example runs the batch file located in the "scripts" folder inside the "Downloads" folder: <strong>C:\Users\ACCOUNT\Downloads\basic_batch.bat</strong>
</p>

<p>
	 
</p>

<p>
	<img alt="fUcHN2CcdiknyKCpjV6MKD-970-80.jpg" class="ipsImage" data-ratio="75.10" height="483" width="720" src="https://cdn.mos.cms.futurecdn.net/fUcHN2CcdiknyKCpjV6MKD-970-80.jpg">
</p>

<p>
	<em>(Image credit: Future)</em>
</p>

<p>
	 
</p>

<p>
	After you complete the steps, the batch file will run and display the results in the console. Since you opened Command Prompt manually, it won't close automatically if the script doesn't include the "Pause" option.
</p>

<h3>
	Run script from File Explorer
</h3>

<p>
	To run a script file from File Explorer on Windows 11, use these steps:
</p>

<p>
	 
</p>

<ol>
	<li>
		Open <strong>File Explorer</strong>.
	</li>
	<li>
		Browse to the folder with the batch file.
	</li>
	<li>
		Right-click the file and select the <strong>Open </strong>option to run it.
	</li>
	<li>
		(Optional) Right-click the file and select the <strong>Run as administrator</strong> option if elevation is required.
	</li>
</ol>

<p>
	 
</p>

<p>
	<img alt="rsRgvTv3Wvd7oKkd7NMTQN-970-80.jpg" class="ipsImage" data-ratio="75.10" height="483" width="720" src="https://cdn.mos.cms.futurecdn.net/rsRgvTv3Wvd7oKkd7NMTQN-970-80.jpg">
</p>

<p>
	<em>(Image credit: Future)</em>
</p>

<p>
	 
</p>

<p>
	Once you complete the steps, the batch file will run and execute every command. If you have specified the "Pause" option, the window will remain open. Otherwise, it'll close immediately after completing the sequence of commands.
</p>

<h3>
	Run script from Startup
</h3>

<p>
	To run a batch file on startup, use these steps:
</p>

<p>
	 
</p>

<ol>
	<li>
		Open <strong>File Explorer.</strong>
	</li>
	<li>
		Open the folder with the batch file.
	</li>
	<li>
		Right-click the file and select the <strong>Copy </strong>option.
	</li>
	<li>
		Type the following command in the address bar and press<strong> Enter: shell:startup</strong>
	</li>
	<li>
		Click the <strong>Paste </strong>button from the command bar in the <strong>Startup </strong>folder.
	</li>
</ol>

<p>
	 
</p>

<p>
	<img alt="Ecfp37HR8AM3QFvNzx6z9h-970-80.jpg" class="ipsImage" data-ratio="75.10" height="483" width="720" src="https://cdn.mos.cms.futurecdn.net/Ecfp37HR8AM3QFvNzx6z9h-970-80.jpg">
</p>

<p>
	<em>(Image credit: Future)</em>
</p>

<p>
	 
</p>

<p>
	After you complete the steps, Windows 11 will run the script every time the computer starts, and the user logs in to the account.
</p>

<p>
	 
	</p><p>
		 
	</p>


<p>
	<a href="https://www.windowscentral.com/software-apps/windows-11/how-to-create-batch-script-files-on-windows-11" rel="external nofollow">How to create batch script files on Windows 11</a>
</p>
]]></description><guid isPermaLink="false">15883</guid><pubDate>Fri, 26 May 2023 18:44:12 +0000</pubDate></item><item><title>Windows XP activation algorithm cracked after 21 years, what now?</title><link>https://nsaneforums.com/news/software-news/windows-xp-activation-algorithm-cracked-after-21-years-what-now-r15882/</link><description><![CDATA[<p>
	Windows XP continues to hold a special place in the hearts of PC enthusiasts. Despite Microsoft discontinuing support and turning off the activation servers for Windows XP, enthusiasts seeking to relive the nostalgia or utilize old hardware/software often face challenges. A recent blog post by <a href="https://tinyapps.org/blog/202304230700_xp_wpa.html" rel="external nofollow">TinyApps</a> highlights an offline activation tool that provides a solution for activating Windows XP. The tool was discovered by Reddit user <a href="https://www.reddit.com/r/windowsxp/comments/wwjy5j/comment/ilmr5s3/" rel="external nofollow">retroreviewyt</a>.
</p>

<p>
	 
</p>

<p>
	The newly introduced offline activation tool, xp_activate32.exe, offers a compact executable package designed as a "<a href="https://www.neowin.net/news/microsoft-is-now-improving-windows-11-activation-troubleshooter/" rel="external nofollow">phone activation utility</a>" for Windows XP. This tool allows users to activate the operating system entirely offline, eliminating the need to connect to potentially risky online environments.
</p>

<p>
	 
</p>

<p>
	With a file size of only 18 KB, "Windows XP Activation: GAME OVER" provides a convenient means for tinkerers to activate their Windows XP systems without internet connectivity.
</p>

<p>
	 
</p>

<p>
	As Microsoft <a href="https://www.neowin.net/news/cost-for-continued-windows-xp-support-said-to-double-this-year/" rel="external nofollow">discontinued support and deactivated</a> the Windows XP activation servers, attempting to activate the operating system online poses significant risks. The offline activation tool ensures safer activation and protects XP systems from potential flaws and vulnerabilities in <a href="https://www.neowin.net/news/end-of-life-microsoft-finally-terminates-support-for-windows-xp/" rel="external nofollow">the outdated operating system</a>.
</p>

<p>
	 
</p>

<p>
	<img alt="1680968034_windows-xp-start-menu_story.j" class="ipsImage" data-ratio="65.97" height="450" width="720" src="https://cdn.neowin.com/news/images/uploaded/2023/04/1680968034_windows-xp-start-menu_story.jpg">
</p>

<p>
	 
</p>

<p>
	Windows XP can expose systems to potential threats. As a result, many users prefer to keep their Windows XP installations offline, limiting their usage to software and hardware that resides in their archives. Online essentials such as secure browsers and antivirus software may be difficult to obtain for Windows XP, further emphasizing the importance of offline usage.
</p>

<p>
	 
</p>

<p>
	Numerous tools were available in the past for <a href="https://www.neowin.net/news/chatgpt-was-tricked-into-generating-valid-activation-keys-for-windows-95/" rel="external nofollow">generating keys that Windows XP</a> would accept, predating the creation of this self-contained offline program. These tools often took the form of software hacks or brute-force decryption utilities.
</p>

<p>
	 
</p>

<p>
	On the other hand, some users may be interested in exploring even <a href="https://www.neowin.net/news/someone-got-chatgpt-to-run-on-windows-98-and-other-older-windows-versions-by-making-javagpt/" rel="external nofollow">older Windows operating systems</a> beyond Windows XP. These systems often require specific serial keys for activation, but their simpler algorithms can make finding valid keys relatively easier.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/windows-xp-activation-algorithm-cracked-after-21-years-what-now/" rel="external nofollow">Windows XP activation algorithm cracked after 21 years, what now?</a>
</p>
]]></description><guid isPermaLink="false">15882</guid><pubDate>Fri, 26 May 2023 18:30:25 +0000</pubDate></item><item><title>Mozilla showed VPN ads in Firefox before suspending them</title><link>https://nsaneforums.com/news/software-news/mozilla-showed-vpn-ads-in-firefox-before-suspending-them-r15867/</link><description><![CDATA[<p>
	Some Mozilla Firefox users have received popup advertisement in the browser recently. Mozilla used the ad to promote its own Mozilla VPN service to users of the browser. The campaign has now been suspended by the company.
</p>

<p>
	 
</p>

<p>
	<a cmp-ltrk="Links" cmp-ltrk-idx="3" data-wpel-link="internal" href="https://www.ghacks.net/2020/07/16/mozilla-vpn-launches-in-some-countries-officially/" mrfobservableid="91b35384-0827-4cf6-9a37-ca5ee9206445" rel="external nofollow">Mozilla launched its VPN service</a> in 2020 officially. It is using the infrastructure of <a cmp-ltrk="Links" cmp-ltrk-idx="4" data-wpel-link="external" href="https://mullvad.net/en" mrfobservableid="787bad28-eb80-45db-a369-f7981d5c1aca" rel="external nofollow" target="_blank">Mullvad</a>, a VPN service known for its focus on privacy. It is an optional service that users may subscribe to.
</p>

<p>
	 
</p>

<p>
	The advertisement that users saw in Firefox came out of the blue for users. Some noted that their browser windows became unresponsive for a time before the popup ad was shown to them.
</p>

<p>
	 
</p>

<p>
	<img alt="mozilla-firefox-vpn-ad.png" class="ipsImage" data-ratio="103.91" height="531" width="511" src="https://www.ghacks.net/wp-content/uploads/2023/05/mozilla-firefox-vpn-ad.png"></p><noscript><img class="alignnone size-full wp-image-195886" alt="mozilla firefox vpn ad" width="511" height="531" src="https://www.ghacks.net/wp-content/uploads/2023/05/mozilla-firefox-vpn-ad.png"></noscript>


<p>
	 
</p>

<p>
	The advertisement itself promoted Mozilla VPN with a 20% discount code. The ad did not include a close option that would permanently shut it down, only a "not now" option, which many companies seem to favor these days to give their users no option to say "no, thanks".
</p>

<p>
	 
</p>

<div id="td-incontent-514789728016">
	<script class="rvloader">!function(){var t="td-incontent-"+Math.floor(Math.random()*Date.now()),e=document.getElementsByClassName("rvloader"),n=e[e.length-1].parentNode;undefined==n.getAttribute("id")&&(n.setAttribute("id",t),revamp.displaySlots([t]))}();</script>
</div>

<p>
	A bug report was <a cmp-ltrk="Links" cmp-ltrk-idx="5" data-wpel-link="external" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1835158" mrfobservableid="c4b0ba97-e357-4289-adec-9347d687adb6" rel="external nofollow" target="_blank">created</a> on Bugzilla, Mozilla's official bug tracking site. Several threads on Mozilla's official support site were also created, see <a cmp-ltrk="Links" cmp-ltrk-idx="6" data-wpel-link="external" href="https://support.mozilla.org/en-US/questions/1414278#answer-1582572" mrfobservableid="123e477b-09cf-40f2-ad65-5455fba8451c" rel="external nofollow" target="_blank">here</a> and <a cmp-ltrk="Links" cmp-ltrk-idx="7" data-wpel-link="external" href="https://support.mozilla.org/en-US/questions/1414266#answer-1582507" mrfobservableid="4b2496ea-24be-47ba-9197-925e41bc1f7b" rel="external nofollow" target="_blank">here</a> as examples.
</p>

<p>
	 
</p>

<p>
	User ben153 wrote: "Today Firefox stopped altogether and dimmed the entire window and popped up a "Try the Firefox VPN" message. I use Firefox specifically to get away from disruptive, intrusive violations like that. This needs to be removed immediately and never ever happen again. It's completely antithetical to the core values of Firefox."
</p>

<p>
	 
</p>

<p>
	A forum moderator replied to the threads, stating "Firefox is committed to creating an online experience that puts people first, as such we quickly stopped running the ad experience, and are reviewing internally".
</p>

<p>
	 
</p>

<p>
	The answer infuriated some users even further. They said that "an online experience that puts people first" should never show ads in this way or use the "not now" option as the only option to close prompts.
</p>

<p>
	 
</p>

<p>
	Mozilla appears to have suspended the advertisement campaign right now.  Long-time users of the browser may be reminded of the <a cmp-ltrk="Links" cmp-ltrk-idx="8" data-wpel-link="internal" href="https://www.ghacks.net/2017/12/16/firefox-looking-glass-extension-what-it-is/" mrfobservableid="2f7299ee-57db-4d21-a9fc-a1a48e35f95c" rel="external nofollow">Mr. Robot campaign that Mozilla ran in 2017 in Firefox</a>. It promoted the TV show by installing a browser extension automatically in Firefox. While installing a browser extension is a different level of interference with user devices, many Mozilla employees did not know about the campaign when it launched.
</p>

<p>
	 
</p>

<div id="td-incontent-1055234163168">
	<script class="rvloader">!function(){var t="td-incontent-"+Math.floor(Math.random()*Date.now()),e=document.getElementsByClassName("rvloader"),n=e[e.length-1].parentNode;undefined==n.getAttribute("id")&&(n.setAttribute("id",t),revamp.displaySlots([t]))}();</script>
</div>

<p>
	It looks as if marketing has pushed this into Firefox, suggesting that Mozilla could push VPN subscriptions this way significantly. This is speculation on our part, and we have to wait for Mozilla's official response to find out more about this.
</p>

<p>
	 
</p>

<p>
	While it is understandable that Mozilla wants more subscribers for Mozilla VPN, pushing popup ads into Firefox is not the way to go about it.
</p>

<p>
	 
</p>

<p>
	<strong>Now You:</strong> did you get the ads? What is your take on this?
</p>

<p>
	 
</p>

<div id="div-gpt-ad-1524862513262-0">
	 
</div>

<p>
	 
</p>

<p>
	<a href="https://www.ghacks.net/2023/05/26/mozilla-showed-vpn-ads-in-firefox-before-suspending-them/" rel="external nofollow">Mozilla showed VPN ads in Firefox before suspending them</a>
</p>
]]></description><guid isPermaLink="false">15867</guid><pubDate>Fri, 26 May 2023 07:21:18 +0000</pubDate></item><item><title>Windows 12 and Qualcomm Oryon processors will not support Arm32 apps</title><link>https://nsaneforums.com/news/software-news/windows-12-and-qualcomm-oryon-processors-will-not-support-arm32-apps-r15860/</link><description><![CDATA[<p>
	<strong>You can say farewell to Arm32 apps on Windows PCs.</strong>
</p>

<h2 id="what-you-need-to-know-3">
	What you need to know
</h2>

<ul>
	<li>
		Arm32 apps will not be supported by Windows 12 or Qualcomm's upcoming Oryon processors.
	</li>
	<li>
		Microsoft shared the fact during Build 2023 and noted in a support document that "support for 32-bit Arm versions of applications will be removed in a future release of Windows 11."
	</li>
	<li>
		Many Arm-based applications have been upgraded to Arm64, so many popular apps will be unaffected by the change.
	</li>
</ul>

<p>
	 
</p>

<hr>
<p>
	 
</p>

<p>
	Microsoft Build is about to wrap up. At the conference Microsoft announced several improvements to Windows and the company's apps and services. But as highlighted by <a data-component-tracked="1" data-url="https://www.xda-developers.com/windows-12-arm32-support-discontinued/" href="https://www.xda-developers.com/windows-12-arm32-support-discontinued/" rel="external nofollow">XDA</a>, Microsoft is also going to take away a feature from its flagship operating system. Luckily, the change won't affect many people.
</p>

<p>
	 
</p>

<p>
	During a session of Build 2023, we got word that <a data-component-tracked="1" href="https://www.windowscentral.com/hardware/laptops/qualcomm-announces-oryon-next-gen-arm-cpu-citi-adopting-snapdragon-pcs" rel="external nofollow">Qualcomm's upcoming Oryon processors</a> and the next major version of Windows will not support Arm32 apps. 32-bit Arm apps aren't very common these days, as many have been upgraded to Arm64 or x86, but you may see a few apps stop working.
</p>

<p>
	 
</p>

<p>
	A <a data-component-tracked="1" data-google-interstitial="false" data-hl-processed="hawklinks" data-merchant-id="1855" data-merchant-name="microsoft.com" data-merchant-network="LS" data-merchant-url="microsoft.com" data-placeholder-url="https://click.linksynergy.com/deeplink?id=kXQk6%2AivFEQ&amp;mid=24542&amp;u1=hawk-custom-tracking&amp;murl=https%3A%2F%2Flearn.microsoft.com%2Fen-us%2Fwindows%2Farm%2Farm32-to-arm64" data-url="https://learn.microsoft.com/en-us/windows/arm/arm32-to-arm64" href="https://click.linksynergy.com/deeplink?id=kXQk6%2AivFEQ&amp;mid=24542&amp;u1=wp-au-6827646745941018000&amp;murl=https%3A%2F%2Flearn.microsoft.com%2Fen-us%2Fwindows%2Farm%2Farm32-to-arm64" referrerpolicy="no-referrer-when-downgrade" rel="external nofollow" target="_blank">Microsoft document</a> specifies that "support for 32-bit Arm versions of applications will be removed in a future release of Windows 11." That leaves the exact timeline for the end of Arm32 a bit murky, but we know support for the older apps is coming to an end.
</p>

<p>
	 
</p>

<p>
	Microsoft has not shared an official name for the next version of Windows, but the company is working on a modern version of the operating system. Our Senior Editor Zac Bowden covered <a data-component-tracked="1" href="https://www.windowscentral.com/software-apps/windows-11/microsoft-windows-corepc-modern-platform-hudson-valley-2024" rel="external nofollow">Microsoft's plans for its next operating system</a>, which is colloquially called Windows 12.
</p>

<p>
	 
</p>

<p>
	The next version of Windows isn't set to ship until 2024, though plans are subject to change. Qualcomm's Oryon chips are also expected at some point in 2024. Arm32 apps should be far off in the rear-view mirror by then, so the best Windows apps shouldn't be affected by the change.
</p>

<p>
	 
</p>

<p>
	Qualcomm's Oryon processors will be based on tech from the company's acquisition of Nuvia. That deal is currently facing a <a data-component-tracked="1" href="https://www.windowscentral.com/hardware/computers-desktops/arm-suing-qualcomm-over-alleged-breach-of-licensing-agreements-calls-for-destruction-of-nuvia-designs" rel="external nofollow">lawsuit from Arm Ltd.</a> that alleges Qualcomm breached license agreements and committed trademark infringement. If the purchase does go through, it could be a major boost to Windows on ARM PCs.
</p>

<p>
	 
</p>

<p>
	The new chips have a <a data-component-tracked="1" href="https://www.windowscentral.com/software-apps/windows-11/qualcomms-nuvia-based-snapdragon-chips-are-showing-positive-signs-earning-design-wins" rel="external nofollow">“significant number of design wins,"</a> according to Qualcomm. The company expects to see an "inflection point" for Windows on Snapdragon PCs in 2024. Qualcomm claims that its Oryon processors will <a data-component-tracked="1" href="https://www.windowscentral.com/qualcomms-nuvia-based-advanced-arm-chip-pc-rival-apple-2023" rel="external nofollow">rival Apple’s M-series chips</a>. If that's accurate, it could lead to a major shift in Windows on ARM computing.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.windowscentral.com/software-apps/windows-11/windows-12-and-qualcomm-oryon-processors-will-not-support-arm32-apps" rel="external nofollow">Windows 12 and Qualcomm Oryon processors will not support Arm32 apps</a>
</p>
]]></description><guid isPermaLink="false">15860</guid><pubDate>Thu, 25 May 2023 19:08:11 +0000</pubDate></item><item><title>Windows 11 Beta Channel (KB5026440) fixes issues with SMB, memory leak, audio, NTFS, LSASS</title><link>https://nsaneforums.com/news/software-news/windows-11-beta-channel-kb5026440-fixes-issues-with-smb-memory-leak-audio-ntfs-lsass-r15859/</link><description><![CDATA[<p>
	Today, Microsoft has released builds 22621.1825 and 22631.1825 (KB5026440) to the Beta Channel for Windows 11 Insiders. The company writes in its blog post:
</p>

<p>
	 
</p>

<p>
	Hello Windows Insiders, today we are releasing Windows 11 Insider Preview Build 22621.1825 and Build 22631.1825 (KB 5026440) to the Beta Channel.
</p>

<p>
	 
</p>

<ul>
	<li>
		<strong>Build 22631.1825</strong> = New features rolling out.
	</li>
	<li>
		<strong>Build 22621.1825</strong> = New features off by default.
	</li>
</ul>

<p>
	 
</p>

<p>
	The new builds have several bug fixes, like those related to the Server Message Block (SMB), a memory leak, Local Security Authority Subsystem Service (LSASS), NTFS, an audio issue, and more. Aside from these, OneDrive capacity display in Settings has been fixed as well.
</p>

<p>
	 
</p>

<p>
	The full changelog is given below:
</p>

<p>
	 
</p>

<p>
	<strong>Fixes for BOTH Build 22621.1825 &amp; Build 22631.1825</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		<strong><em>New!</em></strong> This update provides the full amount of storage capacity of all your OneDrive subscriptions. It also displays the total storage on the Accounts page in the Settings app.
	</li>
	<li>
		This update addresses an issue that affects dot sourcing. It fails files that contain class definition in Windows PowerShell.
	</li>
	<li>
		This update addresses an issue that affects <strong>exe</strong>. It stops working after you sign out. This issue occurs after you upgrade your machine to Windows 11 Azure Virtual Desktop (AVD) and sign in to that machine.
	</li>
	<li>
		This update addresses an issue that affects Server Message Block (SMB). You cannot access the SMB shared folder. The errors are, “Not enough memory resources” or “Insufficient system resources.”
	</li>
	<li>
		This update addresses a memory leak. It occurs every time you print a rich text document.
	</li>
	<li>
		This update addresses an issue that affects audio playback. It fails on devices that have certain processors.
	</li>
	<li>
		This update addresses an issue that affects the Local Security Authority Subsystem Service (LSASS). It stops working. This occurs when you use Azure Virtual Desktop (AVD).
	</li>
	<li>
		This update addresses an issue that affects the touch keyboard. Sometimes, it does not show the correct layout based on the current input scope.
	</li>
	<li>
		This update addresses a multi-function label printer issue. It affects the installation of some of them.
	</li>
	<li>
		This update addresses an issue that might affect a large reparse point. You might get a stop error when you use NTFS to access it. This issue occurs after a canceled FSCTL Set operation changes the reparse tag.
	</li>
	<li>
		This update addresses an issue that affects Narrator. It now announces text attributes correctly for words, such as “misspelled,” “deletion change,” and “comment.”
	</li>
	<li>
		This update addresses an issue that affects a computer when it renders a halftone bitmap. The computer stops working.
	</li>
	<li>
		This update addresses an issue that affects devices that have multiple, discreet GPUs. You cannot choose the high-performance GPUs from the default graphics settings page.
	</li>
	<li>
		This update changes the international mobile subscriber identity (IMSI) ranges for certain mobile providers.
	</li>
	<li>
		This update addresses an Event Viewer issue. It affects the rendering of a forwarded event log.
	</li>
</ul>

<ul>
	<li>
		This update addresses an issue that affects the Chinese and Japanese Input Method Editor (IME). When you search within the Emoji Panel (Windows key + period (.)), search might fail for some of you.
	</li>
</ul>

<ul>
	<li>
		This update addresses an issue that affects the Chinese and Japanese Handwriting Panel. It does not show text prediction candidates or stops responding. This occurs when you select a word from the candidate list of the Handwriting Panel.
	</li>
	<li>
		This update addresses an issue that stops your device from working when it resumes from Modern Standby. The error is 0x13A KERNEL_MODE_HEAP_CORRUPTION.
	</li>
	<li>
		This update addresses an issue that affects the Windows Firewall. The firewall drops all connections to the IP address of a captive portal. This occurs when you choose the Captive Portal Addresses option.
	</li>
	<li>
		This update addresses an issue that affects devices that are joined to Azure Active Directory (Azure AD). The Windows Firewall cannot apply the correct domain and profile for them.
	</li>
	<li>
		This update addresses an issue that affects the <strong>runas</strong> It stops working. The device behaves as if you did not sign in to your account.
	</li>
	<li>
		This update changes the support phone number for Microsoft India for Windows activation.
	</li>
	<li>
		This update addresses an issue that affects applications that perform certain actions in a callback. The applications might stop working. These actions include closing a Window (WM_CLOSE).
	</li>
	<li>
		This update addresses an issue that affects the use of the Event Viewer. The issue limits the number of event sources that users who are not administrators can access.
	</li>
	<li>
		This update addresses an issue that affects the Storage Spaces Direct (S2D) cluster. It might not come online. This occurs after a periodic password rollover. The error code is 1326.
	</li>
	<li>
		This update addresses an issue that affects access to Tab settings for IE mode sites.
	</li>
	<li>
		The update addresses an issue that sends unexpected password expiration notices to users. This occurs when you set up an account to use “Smart Card is Required for Interactive Logon” and set “Enable rolling of expiring NTLM secrets.”
	</li>
	<li>
		This update addresses an issue that affects the touch keyboard. It shows the wrong layout for the French-Canadian language.
	</li>
</ul>

<p>
	 
</p>

<p>
	You can find the official blog post <a href="https://blogs.windows.com/windows-insider/2023/05/25/announcing-windows-11-insider-preview-build-22621-1825-and-22631-1825/" rel="external nofollow">here</a>.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/windows-11-beta-channel-kb5026440-fixes-issues-with-smb-memory-leak-audio-ntfs-lsass/" rel="external nofollow">Windows 11 Beta Channel (KB5026440) fixes issues with SMB, memory leak, audio, NTFS, LSASS</a>
</p>
]]></description><guid isPermaLink="false">15859</guid><pubDate>Thu, 25 May 2023 19:06:19 +0000</pubDate></item><item><title>Windows 11 Insider Canary build 25375 adds Microsoft Endpoint DLP on Windows on Arm</title><link>https://nsaneforums.com/news/software-news/windows-11-insider-canary-build-25375-adds-microsoft-endpoint-dlp-on-windows-on-arm-r15858/</link><description><![CDATA[<p>
	Microsoft has released the latest Windows 11 build for Insiders on the Canary channel today. The new build 25375 adds support for Microsoft Endpoint DLP on Windows on Arm.
</p>

<p>
	 
</p>

<p>
	Here is the changelog:
</p>

<p style="margin-left: 40px;">
	 
</p>

<p>
	<strong>What’s new in Build 25375</strong>
</p>

<p>
	 
</p>

<p>
	Support for Microsoft Endpoint DLP on Windows on Arm (Arm64) builds
</p>

<p>
	 
</p>

<p>
	You can now extend Microsoft Endpoint Data Loss Prevention (DLP) policies and actions to endpoints running Windows on Arm (Arm64) which allows you to detect and protect sensitive data in files part of your digital ecosystem. This enables you to introduce policy controls for scenarios such as when an information worker using a Windows endpoint powered by Arm chipset from accessing sensitive files and trying an egress action such as copying to a USB, or copy to clipboard, notepad, etc.
</p>

<p>
	 
</p>

<p>
	As part of your DLP Policy definition, you can leverage the current conditions and actions that are already available for use and there is no additional setting involved.
</p>

<p>
	 
</p>

<p>
	Ensure your ARM64 endpoints are onboarded to Microsoft Endpoint DLP by using any of our supported onboarding methods.
</p>

<p>
	 
</p>

<p>
	<strong>For developers</strong>
</p>

<p>
	 
</p>

<p>
	You can download the latest Windows Insider SDK at <a href="https://aka.ms/windowsinsidersdk" rel="external nofollow">aka.ms/windowsinsidersd</a>k.
</p>

<p>
	 
</p>

<p>
	SDK NuGet packages are now also flighting at <a href="https://www.nuget.org/profiles/WindowsSDK" rel="external nofollow">NuGet Gallery | WindowsSDK</a> which include:
</p>

<p>
	 
</p>

<ul>
	<li>
		.<a href="https://www.nuget.org/packages/Microsoft.Windows.SDK.NET.Ref/" rel="external nofollow">NET TFM packages</a> for use in .NET apps as described at aka.ms/windowsinsidersdk
	</li>
	<li>
		<a href="https://www.nuget.org/packages/Microsoft.Windows.SDK.CPP/" rel="external nofollow">C++ packages</a> for Win32 headers and libs per architecture
	</li>
	<li>
		<a href="https://www.nuget.org/packages/Microsoft.Windows.SDK.BuildTools/" rel="external nofollow">BuildTools package</a> when you just need tools like MakeAppx.exe, MakePri.exe, and SignTool.exe
	</li>
</ul>

<p>
	 
</p>

<p>
	These NuGet packages provide more granular access to the SDK and better integration in CI/CD pipelines.
</p>

<p>
	 
</p>

<p>
	<strong>SDK flights are now published for both the Canary and Dev Channels, so be sure to choose the right version for your Insider Channel.</strong>
</p>

<p>
	 
</p>

<p>
	Remember to use <a href="https://learn.microsoft.com/windows/uwp/debug-test-perf/version-adaptive-apps" rel="external nofollow">adaptive code</a> when targeting new APIs to make sure your app runs on all customer machines, particularly when building against the Dev Channel SDK. <a href="https://learn.microsoft.com/uwp/api/windows.foundation.metadata.apiinformation?view=winrt-22621" rel="external nofollow">Feature detection</a> is recommended over OS version checks, as OS version checks are unreliable and will not work as expected in all cases.
</p>

<p>
	 
</p>

<p>
	You can check out the <a href="https://blogs.windows.com/windows-insider/2023/05/25/announcing-windows-11-insider-preview-build-25375/" rel="external nofollow">full blog post here</a>.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/windows-11-insider-canary-build-25375-adds-microsoft-endpoint-dlp-on-windows-on-arm/" rel="external nofollow">Windows 11 Insider Canary build 25375 adds Microsoft Endpoint DLP on Windows on Arm</a>
</p>
]]></description><guid isPermaLink="false">15858</guid><pubDate>Thu, 25 May 2023 19:05:31 +0000</pubDate></item><item><title>How to enable taskbar labels and the 'never combine' feature in Windows 11</title><link>https://nsaneforums.com/news/software-news/how-to-enable-taskbar-labels-and-the-never-combine-feature-in-windows-11-r15857/</link><description><![CDATA[<p>
	Microsoft is finally <a href="https://www.neowin.net/news/windows-11-gets-taskbar-ungrouping-native-rgb-controls-new-archive-formats-support-more/" rel="external nofollow">ready to address one of the most popular taskbar-related complaints</a> from Windows 11 customers as the OS approaches its second birthday. <a href="https://www.neowin.net/news/windows-11-dev-build-23466-brings-new-backup-and-restore-via-oobe-app-dev-drive-and-more/" rel="external nofollow">The Windows 11 preview build</a> released during a keynote at the Build 2023 developer conference brings the much-requested taskbar labels and the ability to ungroup running apps (the "never combine" option). Here is what you need to know about these features and how to enable them.
</p>

<p>
	 
</p>

<p class="skipParagraphing">
	<img alt="1685012061_windows_11_taskbar.jpg" class="ipsImage" data-ratio="43.89" height="118" width="720" src="https://cdn.neowin.com/news/images/uploaded/2023/05/1685012061_windows_11_taskbar.jpg">
</p>

<h3>
	Windows 11 taskbar labels and ungrouping
</h3>

<p>
	Taskbar labels and ungrouping are available in Windows 11 build 23466 (Dev Channel). However, even though Microsoft publicly announced these two much-anticipated features, they are not available to all insiders with the latest Dev build. Here is how to force-enable them if waiting is not your option.
</p>

<p>
	 
</p>

<ol>
	<li>
		Download the ViVeTool app <a href="https://github.com/thebookisclosed/ViVe/releases" rel="external nofollow">from </a><a href="https://github.com/thebookisclosed/ViVe/releases" rel="external nofollow">GitHub</a> and extract the files in a convenient and easy-to-find folder.
	</li>
	<li>
		Press <strong>Win + X</strong> and select <strong>Terminal (Admin)</strong>.
	</li>
	<li>
		Switch Windows Terminal to the Command Prompt profile with the <strong>Ctrl + Shift + 2</strong> shortcut or by clicking the arrow-down button at the top of the window.
		<p>
			 
		</p>
		<img alt="1662708468_vivetool.jpg" class="ipsImage" data-ratio="61.39" height="214" width="720" src="https://cdn.neowin.com/news/images/uploaded/2022/09/1662708468_vivetool.jpg">
	</li>
	<li>
		Navigate to the folder containing the ViveTool files using the <strong>CD</strong> command. For example, if you have placed ViveTool in C:\Vive, type <strong>CD C:\Vive</strong>.
	</li>
	<li>
		Type <strong>vivetool /enable /id:29785186</strong> and press <strong>Enter</strong>.
	</li>
	<li>
		Restart your computer.
	</li>
</ol>

<p>
	 
</p>

<p>
	Now you can turn on the never combine option and taskbar labels. To do so, head to <strong>Settings &gt; Personalization &gt; Taskbar &gt; Taskbar behaviors</strong>. Scroll down and select the option you need from the <strong>Combine taskbar buttons and labels</strong> drop-down:
</p>

<p>
	 
</p>

<ul>
	<li>
		<strong>Always</strong>: the default option with no labels (icons only).
	</li>
	<li>
		<strong>When taskbar is full</strong>: this option enables labels and hides them when you fill the entire taskbar with applications.
	</li>
	<li>
		<strong>Never</strong>: taskbar labels are always visible.
	</li>
</ul>

<p class="skipParagraphing">
	<img alt="1685012295_taskbar_settings.jpg" class="ipsImage" data-ratio="75.10" height="489" width="720" src="https://cdn.neowin.com/news/images/uploaded/2023/05/1685012295_taskbar_settings.jpg">
</p>

<p>
	 
</p>

<p>
	It is worth noting that Windows 11 has also received a separate toggle for displaying labels for pinned, non-running applications. By default, the never combine option enables labels only for the open programs, leaving pins in the icon-only mode. To change that, place a checkmark next to the <strong>Show labels on taskbar pins</strong> option.
</p>

<p>
	 
</p>

<p>
	Keep in mind that running unstable Windows 11 preview builds for your daily computing is not a very good idea—you may encounter bugs and quite severe issues. The features currently available in Dev builds <a href="https://www.neowin.net/news/windows-11-23h2-is-coming-later-this-year-as-enablement-package-with-minor-build-bump/" rel="external nofollow">are expected in the Stable Channel in the second half of this year</a>. Alternatively, you can opt for third-party apps like Start11 or StartAllBack.
</p>

<p>
	 
</p>

<p>
	<em>Which option do you prefer? Combined or never combined with labels? Let us know in the comments.</em>
</p>

<p>
	 
</p>

<p style="font-size:small">
	Source: @<a href="https://twitter.com/PhantomOfEarth/status/1661428925652934657" rel="external nofollow">PhantomOfEarth</a> | Twitter
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/guides/how-to-enable-taskbar-labels-and-the-never-combine-feature-in-windows-11/" rel="external nofollow">How to enable taskbar labels and the 'never combine' feature in Windows 11</a>
</p>
]]></description><guid isPermaLink="false">15857</guid><pubDate>Thu, 25 May 2023 19:04:45 +0000</pubDate></item><item><title>Microsoft: File copy/save on Windows 11, Windows 10 32-bit apps failing, Office affected too</title><link>https://nsaneforums.com/news/software-news/microsoft-file-copysave-on-windows-11-windows-10-32-bit-apps-failing-office-affected-too-r15856/</link><description><![CDATA[<p>
	Microsoft has warned IT and system admins that a file copying, saving, and attaching issue is affecting applications on Windows 11 as well as Windows 10. Thankfully, File Explorer is unaffected, however, 32-bit applications are.
</p>

<p>
	 
</p>

<p>
	Microsoft says that 32-bit apps that are large address aware and use the <a href="https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-copyfile" rel="external nofollow">CopyFile API </a>are affected. This API essentially helps copy a new file to an existing file and keeps track of the progress. Hence, with this functionality broken at the moment, copying and saving have become a major issue at the moment for affected applications.
</p>

<p>
	 
</p>

<p>
	Microsoft has also added that 32-bit versions of Office apps like Word and Excel are affected as well, and users may receive a "Document not saved" error. Microsoft explained the issue in detail on its Windows health <a href="https://learn.microsoft.com/en-us/windows/release-health/status-windows-11-22H2#saving-or-copying-files-might-intermittently-fail" rel="external nofollow">support page</a><span>:</span>
</p>

<p style="margin-left: 40px;">
	 
</p>

<p style="margin-left: 40px;">
	You might have intermittent issues saving, or copying, or attaching files using 32-bit apps which are large address aware and using the CopyFile API. Windows devices are more likely to be affected by this issue when using some commercial/enterprise security software which uses extended file attributes. We are not receiving reports that copying files using File Explorer is affected, but CopyFile API used within apps might be affected. Microsoft Office apps such as Microsoft Word or Microsoft Excel are only affected when using 32-bit versions and you might receive the error, "Document not saved." This issue is unlikely to be experienced by consumers using Windows devices in their home or on non-managed comercial device. <strong>Note</strong>: Apps are not affected by this issue if they are 64-bit or 32-bit and NOT large address aware.
</p>

<p>
	 
</p>

<p>
	There is a positive though. Microsoft says the issue is intermittent which means redoing the same action could likely work out. The company lists this as a potential workaround:
</p>

<p style="margin-left: 40px;">
	 
</p>

<p style="margin-left: 40px;">
	<strong>Workaround</strong>: To mitigate the issue, you can attempt to save or copy again. Since the issue is intermittent, it is likely to succeed on a subsequent try.
</p>

<p>
	 
</p>

<p>
	The above workaround is only for Windows 11 22H2 though. For other versions of Windows 11 and Windows 10, Microsoft <a href="https://learn.microsoft.com/en-us/windows/release-health/status-windows-11-21H2#saving-or-copying-files-might-intermittently-fail" rel="external nofollow">recommends</a> doing a known issue rollback (KIR):
</p>

<p style="margin-left: 40px;">
	 
</p>

<p style="margin-left: 40px;">
	<strong>Workaround</strong>: To mitigate the issue, you can attempt to save or copy again. Since the issue is intermittent, it is likely to succeed on a subsequent try. <strong>Important</strong>: If the resolution below does not resolve intermittent save or copy issues in your environment, then you might be experiencing a different issue with similar symptoms.
</p>

<p style="margin-left: 40px;">
	 
</p>

<p style="margin-left: 40px;">
	<strong>Resolution</strong>: This issue is resolved using <a href="https://techcommunity.microsoft.com/t5/windows-it-pro-blog/known-issue-rollback-helping-you-keep-windows-devices-protected/ba-p/2176831" rel="external nofollow">Known Issue Rollback (KIR)</a>. Enterprise-managed devices that have installed an affected update and have encountered this issue can resolve it by installing and configuring a special Group Policy. The special Group Policy can be found in <strong>Computer Configuration -&gt; Administrative Templates -&gt; </strong>.
</p>

<p style="margin-left: 40px;">
	 
</p>

<p style="margin-left: 40px;">
	Group Policy downloads with Group Policy name:
</p>

<p style="margin-left: 40px;">
	 
</p>

<p style="margin-left: 40px;">
	<a href="https://download.microsoft.com/download/1/7/b/17bbeaed-45bd-4b4d-9c4d-2c7a8bf6dbe4/Windows%2011%20(original%20release)%20KB5023774%20230222_032017%20Known%20Issue%20Rollback.msi" rel="external nofollow">Download for Windows 11, version 21H2</a> - <strong>KB5023774 230222_032017 Known Issue Rollback</strong><br>
	<a href="https://download.microsoft.com/download/6/2/6/6269d3a4-1d34-4f9f-8b9a-379cfb6e9b2a/Windows%2010%2020H2,%2021H1,%2021H2%20and%2022H2%20KB5023773%20230222_032013%20Known%20Issue%20Rollback.msi" rel="external nofollow">Download for Windows 10, version 22H2; Windows 10, version 21H2</a> - <strong>KB5023773 230222_032013 Known Issue Rollback</strong><br>
	 
</p>

<p style="margin-left: 40px;">
	<strong>Important</strong>: You will need to install and configure the Group Policy for your version of Windows to resolve this issue.
</p>

<p>
	 
</p>

<p>
	In somewhat related news, Microsoft recently <a href="https://www.neowin.net/news/microsoft-finally-fixing-windows-11-file-copy-slowdown-bug-with-upcoming-moment-2-update/" rel="external nofollow">resolved a SMB file copy issue</a> on Windows 11 21H2 with the <a href="https://www.neowin.net/news/microsofts-windows-11-kb5026436-update-fixes-smb-lsass-printer-ntfs-issues-and-more/" rel="external nofollow">KB5026436 preview update</a>.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/microsoft-file-copysave-on-windows-11-windows-10-32-bit-apps-failing-office-affected-too/" rel="external nofollow">Microsoft: File copy/save on Windows 11, Windows 10 32-bit apps failing, Office affected too</a>
</p>
]]></description><guid isPermaLink="false">15856</guid><pubDate>Thu, 25 May 2023 19:02:00 +0000</pubDate></item><item><title>How to share text from Windows PC to Android using Nearby Share</title><link>https://nsaneforums.com/news/software-news/how-to-share-text-from-windows-pc-to-android-using-nearby-share-r15855/</link><description><![CDATA[<p>
	The seamless exchange of files between Windows and Android devices has been made even more convenient with Google's Nearby Share. While many users are familiar with its ability to effortlessly transfer files and folders, few are aware that this powerful tool can also handle the transmission of text and URLs. Yes, you read that right! Whether you want to share a snippet of text from your Windows PC to your Android device, or vice versa, Nearby Share has got you covered.
</p>

<p>
	 
</p>

<p>
	Before we explain the process of sharing text and URLs, let's ensure we have the necessary prerequisites in place. First and foremost, download and install the Nearby Share app on your Windows PC.
</p>

<p>
	 
</p>

<p>
	You may <a cmp-ltrk="Links" cmp-ltrk-idx="3" data-wpel-link="external" href="https://www.android.com/better-together/nearby-share-app/" mrfobservableid="73fa3c9e-73ef-43d7-8cdd-44a5be838086" rel="external nofollow" target="_blank">find Nearby Share here</a>.
</p>

<p>
	 
</p>

<p>
	Next, make sure you have an Android phone running version 6 or newer, as this is essential for successful communication between the devices. Once these requirements are met, we can dive into the process of sharing text and URLs using Nearby Share.
</p>

<p>
	 
</p>

<p>
	<img alt="PC-to-Phone-text-transfer.jpg" class="ipsImage" data-ratio="75.10" height="443" width="720" src="https://www.ghacks.net/wp-content/uploads/2023/05/PC-to-Phone-text-transfer.jpg">
</p>

<p>
	<em>Windows PC to Phone text transfer has been made easy with Nearby Share - Image courtesy of <a cmp-ltrk="Links" cmp-ltrk-idx="3" data-wpel-link="external" href="https://www.android.com/better-together/nearby-share-app/" mrfobservableid="2e041822-61b0-4ccf-9289-852256d75842" rel="external nofollow" target="_blank">Google Android</a></em>
</p>

<h2>
	How to use Nearby Share
</h2>

<p>
	Whether you're sharing files, photos, videos, or now even text and URLs, this versatile tool simplifies our digital lives and makes sharing a breeze. Here are the steps you must take to share text from a PC to Android using Nearby Share:
</p>

<p>
	 
</p>

<div id="td-incontent-1336912214147">
	<script class="rvloader">!function(){var t="td-incontent-"+Math.floor(Math.random()*Date.now()),e=document.getElementsByClassName("rvloader"),n=e[e.length-1].parentNode;undefined==n.getAttribute("id")&&(n.setAttribute("id",t),revamp.displaySlots([t]))}();</script>
</div>

<ol>
	<li>
		Launch the Nearby Share app on your Windows PC
	</li>
	<li>
		Locate the desired text or URL that you wish to share
	</li>
	<li>
		Select the text and copy it to your clipboard. Alternatively, you can drag and drop the text directly onto the app
	</li>
	<li>
		Return to the Nearby Share app and paste the copied text into the provided area
	</li>
	<li>
		On the right panel of the app, you'll find a list of available contacts. Choose the intended recipient
	</li>
	<li>
		Before proceeding, ensure that Nearby Share is turned on and enabled on your Android phone. This setting can typically be found in the device's settings menu
	</li>
	<li>
		On your Android device, a prompt will appear, seeking permission to receive the shared text or URL. Grant the necessary permissions by accepting the prompt, either directly on the phone or on the receiving device
	</li>
	<li>
		Once the text or URL reaches its destination, a range of options awaits you
	</li>
</ol>

<p>
	 
</p>

<p>
	Depending on the content, you may have the opportunity to open it directly or copy it to your clipboard for future reference. Links, however, offer the option to copy only, ensuring you have the necessary flexibility at your command.
</p>

<p>
	 
</p>

<p>
	The next time you stumble upon a captivating article or come across an intriguing website, remember that Nearby Share is here to swiftly transfer your desired content from your <a cmp-ltrk="Links" cmp-ltrk-idx="4" data-wpel-link="internal" href="https://www.ghacks.net/2023/05/25/microsoft-end-task-taskbar/" mrfobservableid="5a467087-5138-46af-90f6-7a0a120680d6" rel="external nofollow">Windows PC</a> to your trusted<a cmp-ltrk="Links" cmp-ltrk-idx="5" data-wpel-link="internal" href="https://www.ghacks.net/2023/05/24/android-14-keyboard-shortcuts/" mrfobservableid="63c23448-12db-4e6e-bcc3-e753e4aa6927" rel="external nofollow"> Android</a> device. Embrace the convenience and embrace the power of Nearby Share today.
</p>

<p>
	 
</p>

<div id="div-gpt-ad-1524862513262-0">
	 
</div>

<p>
	 
</p>

<p>
	<a href="https://www.ghacks.net/2023/05/25/how-to-use-nearby-share-pc-to-android-text/" rel="external nofollow">How to share text from Windows PC to Android using Nearby Share</a>
</p>
]]></description><guid isPermaLink="false">15855</guid><pubDate>Thu, 25 May 2023 18:59:01 +0000</pubDate></item><item><title>Microsoft releases Windows 11 22H2 KB5026446 (Moment 3) with a long list of changes</title><link>https://nsaneforums.com/news/software-news/microsoft-releases-windows-11-22h2-kb5026446-moment-3-with-a-long-list-of-changes-r15848/</link><description><![CDATA[<p>
	Microsoft released its latest feature update for Windows 11 yesterday as it began rolling out <a href="https://www.neowin.net/news/windows-11-moment-3-update-is-now-available-for-download/" rel="external nofollow">Windows 11 22H2 Moment 3</a>. The company has since published a changelog for the update delivered under KB5026446 (Build 22621.1778). Among the changes is OneDrive storage capacity display now in the Settings app, Bluetooth Low Energy (LE) audio support, and more.
</p>

<p>
	 
</p>

<p>
	Aside from these, there are a whole bunch of other changes too, and as expected, the changelog is really long. Find the full list of changes below:
</p>

<p>
	 
</p>

<p>
	<strong>Highlights</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		New! This update provides the full amount of storage capacity of all your Microsoft OneDrive subscriptions. It also displays the total storage on the Accounts page in the Settings app.
	</li>
	<li>
		New! This update adds Bluetooth® Low Energy (LE) Audio. Your computer must support Bluetooth LE Audio to use this feature. This update improves audio fidelity and battery life when you pair your computer with Bluetooth LE Audio earbuds and headphones.
	</li>
	<li>
		This update addresses an issue that affects Narrator. It now announces text attributes correctly for words, such as "misspelled," "deletion change," and "comment."
	</li>
	<li>
		This update addresses an issue that affects access to Tab settings for IE mode sites.
	</li>
	<li>
		This update addresses a multi-function label printer issue. It affects the installation of some of them.
	</li>
	<li>
		This update addresses an issue that affects audio playback. It fails on devices that have certain processors.
	</li>
	<li>
		This update addresses an issue that affects the touch keyboard. It shows the wrong layout for the French-Canadian language.
	</li>
	<li>
		This update addresses an issue that affects the touch keyboard. Sometimes, it does not show the correct layout based on the current input scope.
	</li>
	<li>
		This update addresses an issue that affects the Chinese and Japanese Input Method Editor (IME). When you search within the Emoji Panel (Windows key + period (.) ), search might fail for some of you.
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>Improvements</strong>
</p>

<p>
	 
</p>

<p>
	This non-security update includes quality improvements. When you install this KB:
</p>

<p>
	 
</p>

<ul>
	<li>
		This update addresses an issue that affects searchindexer.exe. It stops working after you sign out. This issue occurs after you upgrade your machine to Windows 11 Azure Virtual Desktop (AVD) and sign in to that machine.
	</li>
	<li>
		This update addresses an issue that affects Server Message Block (SMB). You cannot access the SMB shared folder. The errors are, “Not enough memory resources” or “Insufficient system resources.”
	</li>
	<li>
		The update addresses an issue that sends unexpected password expiration notices to users. This occurs when you set up an account to use “Smart Card is Required for Interactive Logon” and set "Enable rolling of expiring NTLM secrets."
	</li>
	<li>
		This update addresses an issue that affects the Local Security Authority Subsystem Service (LSASS). It stops working. This occurs when you use Azure Virtual Desktop (AVD).
	</li>
	<li>
		This update addresses an issue that affects the Storage Spaces Direct (S2D) cluster. It might not come online. This occurs after a periodic password rollover. The error code is 1326.
	</li>
	<li>
		This update addresses an issue that affects dot sourcing. It fails files that contain class definition in Windows PowerShell.
	</li>
	<li>
		This update addresses an issue that affects the use of the Event Viewer. The issue limits the number of event sources that users who are not administrators can access.
	</li>
	<li>
		This update addresses an Event Viewer issue. It affects the rendering of a forwarded event log.
	</li>
	<li>
		This update addresses a memory leak. It occurs every time you print a rich text document.
	</li>
	<li>
		This update addresses an issue that affects a computer when it renders a halftone bitmap. The computer stops working.
	</li>
	<li>
		This update addresses an issue that affects devices that have multiple, discreet GPUs. You cannot choose the high-performance GPUs from the default graphics settings page.
	</li>
	<li>
		This update addresses an issue that stops your device from working when it resumes from Modern Standby. The error is 0x13A KERNEL_MODE_HEAP_CORRUPTION.
	</li>
	<li>
		This update addresses an issue that affects applications that perform certain actions in a callback. The applications might stop working. These actions include closing a Window (WM_CLOSE).
	</li>
	<li>
		This update changes the support phone number for Microsoft India for Windows activation.
	</li>
	<li>
		This update changes the international mobile subscriber identity (IMSI) ranges for certain mobile providers.
	</li>
	<li>
		This update addresses an issue that affects the Windows Firewall. The firewall drops all connections to the IP address of a captive portal. This occurs when you choose the Captive Portal Addresses option.
	</li>
	<li>
		This update addresses an issue that affects devices that are joined to Azure Active Directory (Azure AD). The Windows Firewall cannot apply the correct domain and profile for them.
	</li>
	<li>
		This update addresses an issue that affects Windows Defender Application Control (WDAC). It might create audit events that you do not need. This occurs when you choose the Disabled: Script Enforcement option.
	</li>
	<li>
		This update addresses an issue that affects the Chinese and Japanese Handwriting Panel. It does not show text prediction candidates or stops responding. This occurs when you select a word from the candidate list of the Handwriting Panel.
	</li>
	<li>
		This update addresses an issue that affects the runas command. It stops working. The device behaves as if you did not sign in to your account.
	</li>
	<li>
		This update addresses an issue that might affect a large reparse point. You might get a stop error when you use NTFS to access it. This issue occurs after a canceled FSCTL Set operation changes the reparse tag.
	</li>
	<li>
		This update addresses a known issue that might affect some speech recognition apps. They might have sporadic speech recognition, expressive input, and handwriting issues. This occurs when the display language is Chinese or Japanese. The apps might not recognize certain words. They might not receive any input from speech recognition or affected input types. This issue is more likely to occur when the apps use offline speech recognition. For app developers,this issue only affects speech recognition that uses Speech Recognition Grammar Specification (SRGS) in <a href="https://learn.microsoft.com/en-us/uwp/api/Windows.Media.SpeechRecognition?view=winrt-22621" rel="external nofollow">Windows.Media.SpeechRecognition</a>. This issue does not affect other types of speech recognition.
	</li>
</ul>

<p>
	 
</p>

<p>
	You can find the official support article on Microsoft's website <a href="https://support.microsoft.com/en-us/topic/may-24-2023-kb5026446-os-build-22621-1778-preview-3c547100-7a73-4ae6-bb7d-ebd02e87dc04" rel="external nofollow">here</a>.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/microsoft-releases-windows-11-22h2-kb5026446-moment-3-with-a-long-list-of-changes/" rel="external nofollow">Microsoft releases Windows 11 22H2 KB5026446 (Moment 3) with a long list of changes</a>
</p>
]]></description><guid isPermaLink="false">15848</guid><pubDate>Thu, 25 May 2023 07:18:07 +0000</pubDate></item><item><title>Microsoft: You can now get Windows 11 Moment 3 but your PC must meet system requirements</title><link>https://nsaneforums.com/news/software-news/microsoft-you-can-now-get-windows-11-moment-3-but-your-pc-must-meet-system-requirements-r15847/</link><description><![CDATA[<p>
	Microsoft began rolling out Moment 3 earlier today. Moment 3 is the latest feature update for Windows 11 version 22H2 and is now available for download as a preview release under <a href="https://www.neowin.net/news/microsoft-releases-windows-11-22h2-kb5026446-moment-3-with-a-long-list-of-changes/" rel="external nofollow">KB5026446 (Build 22621.1778)</a>; the changelog, as expected, is very long. Microsoft releases such Moment updates every three months or so and these add new features. Officially the tech giant refers to it as Continuous Innovation.
</p>

<p>
	 
</p>

<p>
	Along with that, Microsoft has also announced that Windows 11 22H2 is now ready for broader deployment, stating that the operating system is now "broadly available to all users with eligible devices who check for updates". Of course, to get it a device has to meet the <a href="https://www.neowin.net/news/microsoft-quietly-updates-windows-11-22h2-amd-and-intel-supported-cpus/" rel="external nofollow">system requirements of Windows 11 22H2</a>. Microsoft has, in the past, <a href="https://www.neowin.net/news/people-on-unsupported-hardware-are-being-offered-windows-11-22h2-upgrade/" rel="external nofollow">erroneously pushed out Windows 11 on unsupported PCs</a>, though later, it fixed it.
</p>

<p>
	 
</p>

<p>
	On the Windows health dashboard website, the company has updated the status for Windows 11 22H2. Microsoft <a href="https://learn.microsoft.com/en-us/windows/release-health/status-windows-11-22H2" rel="external nofollow">explains</a><span>:</span>
</p>

<p style="margin-left: 40px;">
	 
</p>

<p style="margin-left: 40px;">
	Windows 11, version 22H2 is broadly available to all users with eligible devices who check for updates. Microsoft is delivering continuous innovation to Windows 11 more frequently. If you’re using Home or Pro consumer devices or non-managed business devices running Windows 11, version 22H2, you can get some of these newest experiences as soon as they’re ready for your device. To do so, open <strong>Settings</strong> &gt; <strong>Windows Update</strong>. Select <a href="https://www.neowin.net/news/microsoft-shares-helpful-guide-on-how-to-get-latest-windows-11-updates-faster-and-sooner/" rel="external nofollow"><strong>Get the latest updates as soon as they are available</strong></a>, and set the toggle to <strong>On</strong>. Note that the toggle won't be enabled for managed devices. These are managed by Windows Update for Business or Windows Server Update Services (WSUS).
</p>

<p>
	 
</p>

<p>
	If you want a brief rundown of all the new features and improvements that Moment 3, you can find <a href="https://www.neowin.net/news/windows-11-moment-3-update-is-now-available-for-download/" rel="external nofollow">it here</a>, though for a more in-depth look, refer to <a href="https://www.neowin.net/reviews/here-is-everything-new-in-windows-11-moment-3-update/" rel="external nofollow">this article instead</a>.
</p>

<p>
	 
</p>

<p>
	Meanwhile, for users still on Windows 10 21H2, Microsoft has confirmed that it will soon <a href="https://www.neowin.net/news/microsoft-will-soon-force-push-windows-10-22h2-on-21h2-pcs-reminds-all-about-windows-11/" rel="external nofollow">force-update such computers to Windows 10 22H2</a>, and of course, there was a reminder about Windows 11 as well.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/microsoft-you-can-now-get-windows-11-moment-3-but-your-pc-must-meet-system-requirements/" rel="external nofollow">Microsoft: You can now get Windows 11 Moment 3 but your PC must meet system requirements</a>
</p>
]]></description><guid isPermaLink="false">15847</guid><pubDate>Thu, 25 May 2023 07:17:00 +0000</pubDate></item><item><title>Here's a look at Microsoft's new Windows Backup app</title><link>https://nsaneforums.com/news/software-news/heres-a-look-at-microsofts-new-windows-backup-app-r15846/</link><description><![CDATA[<p>
	Microsoft has released a new <a cmp-ltrk="Links" cmp-ltrk-idx="3" data-wpel-link="internal" href="https://www.ghacks.net/2023/05/24/windows-11-may-soon-restore-apps-during-setup/" mrfobservableid="7dce1608-7fd4-43ee-ae91-b67b984c3746" rel="external nofollow" target="_blank">Windows Backup app</a> for users in the Dev Channel. The app will allow users to backup their data to the cloud.
</p>

<p>
	 
</p>

<p>
	The new app is pre-installed in the latest version, which is Insider Preview Build 23466. Microsoft says that users can test the new Windows Backup app by creating a virtual machine using the latest Windows 11 Preview ISO, or by resetting their PC for an out-of-the-box experience (OOBE). I created a new VM to test out the backup and restore options. The Windows set-up process does let you pick the PC that you would like to restore the data from. It's a straightforward experience that can be useful if you just bought a new PC and want to set it up like your old one.
</p>

<h3>
	How to use Microsoft's new Windows Backup app
</h3>

<p>
	1. Open the Windows Backup app, and you will see a list of categories that it saves the data from. The app saves the data to your OneDrive account, allowing you to restore the data from the cloud storage service when you migrate to a new computer.
</p>

<p>
	 
</p>

<p>
	<img alt="how-to-use-Windows-11-backup-app.jpg" class="ipsImage" data-ratio="75.10" height="366" width="720" src="https://www.ghacks.net/wp-content/uploads/2023/05/how-to-use-Windows-11-backup-app.jpg"></p><noscript><img class="aligncenter size-full wp-image-195737" alt="how to use Windows 11 backup app" width="1200" height="610" src="https://www.ghacks.net/wp-content/uploads/2023/05/how-to-use-Windows-11-backup-app.jpg"></noscript>


<p>
	 
</p>

<p>
	2. The first section in the app, Folders, backs up your Desktop, Documents, Pictures, Videos, and Music directories. The app also saves your installed apps and pinned app preferences, i.e. it remembers the app icons that you had pinned to the Start Menu.
</p>

<p>
	 
</p>

<p>
	<img alt="Windows-11-new-backup-app.jpg" class="ipsImage" data-ratio="75.10" height="540" width="720" src="https://www.ghacks.net/wp-content/uploads/2023/05/Windows-11-new-backup-app.jpg"></p><noscript><img class="aligncenter size-full wp-image-195740" alt="Windows 11 new backup app" width="1024" height="768" src="https://www.ghacks.net/wp-content/uploads/2023/05/Windows-11-new-backup-app.jpg"></noscript>


<p>
	 
</p>

<p>
	3.  Click on the Backup button, and wait for the app to finish saving the files. That's the extent of what the backup feature can do.
</p>

<p>
	 
</p>

<div id="td-incontent-939553171142">
	<script class="rvloader">!function(){var t="td-incontent-"+Math.floor(Math.random()*Date.now()),e=document.getElementsByClassName("rvloader"),n=e[e.length-1].parentNode;undefined==n.getAttribute("id")&&(n.setAttribute("id",t),revamp.displaySlots([t]))}();</script>
</div>

<p>
	It also backs up some Windows Settings such as accessibility, language preferences, personalization, etc. The Credentials section in the Windows Backup app saves your Wi-Fi network and passwords, so you won't have to enter them while connecting to your home network. Overall, the features of the backup app are similar to what you can find in Windows 11's Settings &gt; Account &gt; Windows Backup.
</p>

<p>
	 
</p>

<p>
	<img alt="Windows-11-restore-from-backup.jpg" class="ipsImage" data-ratio="62.22" height="269" width="720" src="https://www.ghacks.net/wp-content/uploads/2023/05/Windows-11-restore-from-backup.jpg"></p><noscript><img class="aligncenter size-full wp-image-195739" alt="Windows 11 restore from backup" width="1200" height="449" src="https://www.ghacks.net/wp-content/uploads/2023/05/Windows-11-restore-from-backup.jpg"></noscript>


<h4>
	Limitations in the Windows Backup app
</h4>

<p>
	There aren't a lot of options in the Windows Backup app, the main issue is that users cannot select which apps and settings are to be backed up. Here are some of the other limitations in the app. There are toggles next to each folder, so you can use it to backup the ones you want, and skip the others. Unfortunately, these toggles are not available during the restore process, so you cannot check specific folders to be downloaded.
</p>

<p>
	 
</p>

<p>
	<img alt="Windows-backup-app-restore-data.jpg" class="ipsImage" data-ratio="62.22" height="269" width="720" src="https://www.ghacks.net/wp-content/uploads/2023/05/Windows-backup-app-restore-data.jpg"></p><noscript><img class="aligncenter size-full wp-image-195738" alt="Windows backup app restore data" width="1200" height="449" src="https://www.ghacks.net/wp-content/uploads/2023/05/Windows-backup-app-restore-data.jpg"></noscript>


<p>
	 
</p>

<p>
	The announcement from the Redmond company says that the backup does not save the data from desktop apps that are available on the Microsoft Store, or Android apps that you have installed on your computer. This can be problematic if you use a specific app for work, you'll have to set it up again. The backup feature does not support Work or School accounts, so you can only use it with your personal Microsoft account.
</p>

<p>
	 
</p>

<div id="td-incontent-1006754099549">
	<script class="rvloader">!function(){var t="td-incontent-"+Math.floor(Math.random()*Date.now()),e=document.getElementsByClassName("rvloader"),n=e[e.length-1].parentNode;undefined==n.getAttribute("id")&&(n.setAttribute("id",t),revamp.displaySlots([t]))}();</script>
</div>

<p>
	Backups are always a good idea, but the new app is a little too basic. That said, this is an early version of the app, so hopefully it will evolve into something better in the future. It would be nice to be able to choose which folders can be backed up, this is something that the OneDrive app lacks too.
</p>

<p>
	 
</p>

<p>
	Want to try the new Windows Backup app? Install <a cmp-ltrk="Links" cmp-ltrk-idx="4" data-wpel-link="external" href="https://blogs.windows.com/windows-insider/2023/05/24/announcing-windows-11-insider-preview-build-23466/" mrfobservableid="0ca0f304-add0-435e-b5f8-59bf05518174" rel="external nofollow" target="_blank">Windows 11 Insider Preview Build 23466</a> and run the app. The latest version of the operating system re-introduces a never combined mode for the Taskbar, that will display each window of applications on the taskbar individually.
</p>

<p>
	 
</p>

<div id="div-gpt-ad-1524862513262-0">
	 
</div>

<p>
	 
</p>

<p>
	<a href="https://www.ghacks.net/2023/05/25/heres-a-look-at-microsofts-new-windows-backup-app/" rel="external nofollow">Here's a look at Microsoft's new Windows Backup app</a>
</p>
]]></description><guid isPermaLink="false">15846</guid><pubDate>Thu, 25 May 2023 07:16:14 +0000</pubDate></item><item><title>Microsoft confirms you will soon be able to remove news in Windows Widgets</title><link>https://nsaneforums.com/news/software-news/microsoft-confirms-you-will-soon-be-able-to-remove-news-in-windows-widgets-r15844/</link><description><![CDATA[<p>
	Most Windows 11 customers agree (as shown by the number of upvotes and complaints on the Feedback Hub) that <a href="https://www.neowin.net/news/top-10-features-and-changes-users-want-in-windows-11-widgets/" rel="external nofollow">the biggest problem with Windows Widgets</a> is the inability to disable the integrated MSN News feed, which often displays controversial or even straight harmful content. Others claim that Microsoft should let users place widgets directly on the desktop, as in the days of Windows 7.
</p>

<p>
	 
</p>

<p>
	As revealed by a recent report, <a href="https://www.neowin.net/news/microsoft-reportedly-plans-to-add-one-of-the-most-requested-features-to-windows-11s-widgets/" rel="external nofollow">Microsoft is considering letting you put widgets on the desktop</a>, and today, at Build 2023, Microsoft announced that users would soon be able to remove the news feed from Windows Widgets (we tried <a href="https://www.neowin.net/guides/how-to-remove-news-from-windows-widgets-in-windows-11/" rel="external nofollow">one whacky method to get rid of the feed</a>, but it proved unreliable and incredibly cumbersome).
</p>

<p>
	 
</p>

<p>
	During the Windows 11-dedicated keynote at Build 2023, Microsoft revealed its plans to allow users to switch between different Windows Widgets modes. Later this year, Windows 11 will receive three widget views: widget-only with no feed, feed-only with no widgets, and a mix of both (the current version). Also, with third-party widget support, Windows 11 will receive improved notifications to inform you that some of your new apps support widgets. Here is the concept Microsoft showed during the presentation:
</p>

<p>
	 
</p>

<p>
	<img alt="1684950330_updated_widget_view.jpg" class="ipsImage" data-ratio="75.10" height="404" width="720" src="https://cdn.neowin.com/news/images/uploaded/2023/05/1684950330_updated_widget_view.jpg">
</p>

<p>
	<em>Finally, no-news view!</em>
</p>

<p>
	 
</p>

<p>
	Unfortunately, Microsoft has not said when the new widget views will be available for testing. As it usually goes with new Windows 11 features, expect the company to trial the improvement in the Windows Insider program first before shipping it to the general public, as it did with <a href="https://www.neowin.net/news/microsoft-is-testing-ios-like-widget-picker-for-windows-11-here-is-how-to-enable-it/" rel="external nofollow">the redesigned widget picker</a>, <a href="https://www.neowin.net/news/microsoft-is-testing-animated-widgets-icons-in-windows-11-here-is-how-to-enable-them/" rel="external nofollow">animated icons</a>, and other widget-related improvements.
</p>

<p>
	 
</p>

<p>
	In case you missed it, Microsoft released a new Dev build full of freshly announced features, such as Dev Drive, improved app backup and restore, taskbar regrouping and labels, improved Voice Access, tweaked emojis, and many more. Check out all the details <a href="https://www.neowin.net/news/windows-11-dev-build-23466-brings-new-backup-and-restore-via-oobe-app-dev-drive-and-more/" rel="external nofollow">in our dedicated post</a>.﻿
</p>

<p>
	 
</p>

<p>
	You can find full Build 2023 coverage with other news and exciting announcements <a href="https://www.neowin.net/news/tags/build_2023/" rel="external nofollow">here</a>.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/microsoft-confirms-you-will-soon-be-able-to-remove-news-in-windows-widgets/" rel="external nofollow">Microsoft confirms you will soon be able to remove news in Windows Widgets</a>
</p>
]]></description><guid isPermaLink="false">15844</guid><pubDate>Thu, 25 May 2023 02:24:56 +0000</pubDate></item><item><title>AMD Adrenalin 23.5.1 WHQL driver has Lord of the Rings: Gollum support and bug fixes</title><link>https://nsaneforums.com/news/software-news/amd-adrenalin-2351-whql-driver-has-lord-of-the-rings-gollum-support-and-bug-fixes-r15843/</link><description><![CDATA[<p>
	AMD's driver team has a brand-new driver for those on the red team. AMD Software: Adrenalin Edition 23.5.1 WQHL driver is out now with support and optimizations for The Lord of the Rings: Gollum as well as a handful of useful bug fixes.
</p>

<p>
	 
</p>

<p>
	The new Daedalic Entertainment-developed stealth adventure title set in The Lord of the Rings universe is releasing tomorrow, May 25. While it's an <a href="https://www.neowin.net/news/nvidia-whql-53203-drivers-adds-rtx-4060-ti-support-and-brings-ai-model-optimizations/" rel="external nofollow" target="_blank">Nvidia-sponsored title</a>, AMD has delivered day-one support with major performance improvements with this driver.
</p>

<p>
	 
</p>

<p>
	According to the company's testing, Gollum's adventures will run up to 16% better with this driver on Radeon RX 7900 series GPUs. Meanwhile, on RX 6000 series (6900XT, 6800XT and, 6700XT) graphics cards, AMD says users can expect an FPS uplift of up to 12%.
</p>

<p>
	 
</p>

<p>
	The test systems were running Ryzen 7 7800X3D CPUs with 32GB of DDR5 RAM on Windows 11. The game was running at 4K resolution, though exact graphics settings were not shared.
</p>

<p>
	 
</p>

<p>
	<img alt="1684968930_ss_effdae9533b4f5b63caa8e21be" class="ipsImage" data-ratio="59.31" height="405" width="720" src="https://cdn.neowin.com/news/images/uploaded/2023/05/1684968930_ss_effdae9533b4f5b63caa8e21bec17ca29d863acd.1920x1080_story.jpg">
</p>

<p>
	 
</p>

<p>
	Even for those on older generation graphics cards, this driver is a recommended install for Radeon users picking up the game for a smooth experience.
</p>

<p>
	 
</p>

<p>
	Diving into the bug fixes, Last of Us Part 1 continues to receive updates. RX 580 owners will also be happy to see a Call of Duty: Modern Warfare fix that's targeting their ageing but capable hardware. Here's the full list of fixes:
</p>

<p>
	 
</p>

<ul>
	<li>
		Application crash or driver timeout may be observed during video playback using DaVinci Resolve™ Studio.
	</li>
	<li>
		Brief display corruption may occur when switching between video and game windows on some AMD Graphics Products, such as the Radeon™ RX 6700 XT.
	</li>
	<li>
		Higher than expected memory usage during shader compilation time when first launching THE LAST OF US™ Part I.
	</li>
	<li>
		Intermittent system crash while playing Call of Duty®: Modern Warfare® II on some AMD Graphics Products, such as the Radeon™ RX 580.
	</li>
</ul>

<p>
	 
</p>

<p>
	The known issues are mostly RX 7000 series-related:
</p>

<p>
	 
</p>

<ul>
	<li>
		High idle power has situationally been observed when using select high-resolution and high refresh rate displays on Radeon™ RX 7000 series GPUs.
	</li>
	<li>
		Video stuttering or performance drops may be observed during gameplay and video playback with some extended display configurations on Radeon™ RX 7000 series GPUs.
	</li>
	<li>
		Some virtual reality games or applications may experience lower-than-expected performance on Radeon™ RX 7000 series GPUs.
	</li>
	<li>
		Application crash may be intermittently observed while playing RuneScape™ on some AMD Graphics Products, such as the Radeon™ RX 5700 XT.
	</li>
</ul>

<p>
	 
</p>

<p>
	AMD's Adrenalin Edition 23.5.1 WHQL driver can now be upgraded via the Radeon Settings app on Windows. Those looking for a standalone install download link can find one on the <span ipsnoautolink="true">driver's release notes page here</span>.
</p>

<p>
	 
</p>
<iframe allowfullscreen="" class="ipsEmbed_finishedLoading" data-controller="core.front.core.autosizeiframe" data-embedauthorid="113165" data-embedcontent="" data-embedid="embed8126758893" src="https://nsaneforums.com/topic/440197-amd-radeon-adrenalin-edition-2351/?do=embed" style="overflow: hidden; height: 215px; max-width: 500px;"></iframe>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/amd-adrenalin-2351-whql-driver-has-lord-of-the-rings-gollum-support-and-bug-fixes/" rel="external nofollow" target="_blank">AMD Adrenalin 23.5.1 WHQL driver has Lord of the Rings: Gollum support and bug fixes</a>
</p>
]]></description><guid isPermaLink="false">15843</guid><pubDate>Thu, 25 May 2023 02:23:00 +0000</pubDate></item><item><title>5 Reasons Why You Should Update the Linux Kernel</title><link>https://nsaneforums.com/news/software-news/5-reasons-why-you-should-update-the-linux-kernel-r15836/</link><description><![CDATA[<p>
	The Linux kernel is the most essential part of your distro and controls everything from resource allocation to the drivers for your RGB keyboard.
</p>

<p>
	 
</p>

<p>
	Regular updates to the Linux kernel are consistently rolled out, bringing with them bug fixes, support for advanced features, and a plethora of other enhancements. While no one's going to force you to update to the latest Linux kernel, here are five good reasons why you should.
</p>

<p>
	<br />
	<span style="font-size:20px;"><strong>What Is the Linux Kernel Anyway?</strong></span>
</p>

<p>
	 
</p>

<p>
	It's often said that Linux isn't actually an operating system, and that's true. Most distros are simply a selection of software and package managers which make it easy for you to interact with the underlying kernel.
</p>

<p>
	 
</p>

<p>
	A short explanation of how the Linux kernel works is that the kernel is responsible for governing system resources, interacting with hardware and peripherals, networking, and the filesystem.
</p>

<p>
	 
</p>

<p>
	Without the kernel, your distro would be useless, but without the tools which come packaged as a distro, the kernel wouldn't be usable.
</p>

<p>
	<br />
	<span style="font-size:20px;"><strong>1. Your Distro Kernel May Be Outdated Before You Even Install It</strong></span>
</p>

<p>
	 
</p>

<p>
	All Linux distros come with a version of the Linux kernel, and many popular distros have their own specialized kernel, based on the mainline Linux kernel. The kernel which ships with your distro is likely to be stable and extensively tested to ensure that there are no compatibility issues and that everything works as it should.
</p>

<p>
	 
</p>

<p>
	Stability, however, comes with the cost of newer features. A stable distro kernel is likely to be several releases behind the mainline kernel—meaning that you're missing out on the latest features.
</p>

<p>
	<br />
	<span style="font-size:20px;"><strong>2. Newer Kernels Support More Recent Hardware</strong></span>
</p>

<p>
	 
</p>

<p>
	Hardware manufacturers are making constant advances and pushing the limits of what PCs can do. New generations of graphics cards are created to render games with eye-searing levels of realism, and new varieties of RAM promise higher clock speeds and lower latency.
</p>

<p>
	 
</p>

<p>
	For a Linux distro to effectively interact with new hardware, it needs drivers, and these won't be present in older versions of the kernel. Although you can apply patches to the Linux kernel to add new functionality and hardware support, it's often worth updating the kernel in its entirety to ensure that it supports all your hardware with the latest and greatest patches.
</p>

<p>
	<br />
	<span style="font-size:20px;"><strong>3. Upgrade Your Linux Kernel to Guard Against Vulnerabilities</strong></span>
</p>

<p>
	 
</p>

<p>
	No software is perfect, and no developer can uncover how their software might be abused. Memory issues can be exploited to execute arbitrary code, and flaws can be pried wide open to leave your system vulnerable to malware.
</p>

<p>
	 
</p>

<p>
	While successful attacks are few and far between on Linux desktops, the Linux kernel isn't invulnerable to hackers, crackers, and criminals who want to break into your machine.
</p>

<p>
	 
</p>

<p>
	Notable security flaws discovered over the years have included Dirty COW—a privilege escalation bug that was open to exploitation for more than a decade; Spectre and Meltdown—CPU vulnerabilities that affected multiple platforms; Segment smack; and the Dirty Pipe vulnerability that allows non-privileged users to execute malicious code.
</p>

<p>
	 
</p>

<p>
	If you update to the latest kernel version, you can be sure that you have the most secure version possible—with any detected vulnerabilities patched and removed.
</p>

<p>
	<br />
	<span style="font-size:20px;"><strong>4. Squash Annoying Bugs With a Kernel Update</strong></span>
</p>

<p>
	 
</p>

<p>
	Bugs, while not always leading to security issues, are an annoyance at best. Things just don't work as they should do, or return unexpected results.
</p>

<p>
	 
</p>

<p>
	This is especially true with bugs relating to audio and video playback and power issues. Bugs crop up all the time and just like real bugs, they appear in unexpected places. If you're running an ancient kernel version from the early 2000s, you'll note that leap seconds might cause a kernel panic.
</p>

<p>
	 
</p>

<p>
	Serious bugs are addressed as soon as they're found, and updating to the latest Linux kernel usually results in a more stable system.
</p>

<p>
	<br />
	<span style="font-size:20px;"><strong>5. Kernel Updates Have New Features</strong></span>
</p>

<p>
	 
</p>

<p>
	Linux kernel updates aren't just about the humdrum business of keeping your distro safe and bug-free. They can make your system run faster and better.
</p>

<p>
	 
</p>

<p>
	Typically, a new kernel will bring performance boosts, improvements to CPU efficiency, new file type compatibility, and hardware support.
</p>

<p>
	<br />
	<span style="font-size:20px;"><strong>Impress Your Friends by Using the Latest Linux Kernel</strong></span>
</p>

<p>
	 
</p>

<p>
	By using Linux on a desktop, you're already part of an elite and very small minority. Most of your Windows-using friends probably think you're some kind of techno-wizard anyway.
</p>

<p>
	 
</p>

<p>
	Impress them further with your knowledge of specific improvements afforded by the latest kernel. If you want to show off your proficiency with the technical arts, tell them you use Arch (BTW).
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.msn.com/en-us/news/technology/5-reasons-why-you-should-update-the-linux-kernel/ar-AA1bDSuo" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">15836</guid><pubDate>Wed, 24 May 2023 22:48:55 +0000</pubDate></item><item><title>Windows 11 "Moment 3" update is now available for download</title><link>https://nsaneforums.com/news/software-news/windows-11-moment-3-update-is-now-available-for-download-r15834/</link><description><![CDATA[<p>
	Microsoft has started rolling out the latest feature update for its desktop operating system. Dubbed "Moment 3," the release brings several notable changes, long-requested features, and various quality-of-life improvements.
</p>

<h3>
	What is new in Windows 11 "Moment 3" Update?
</h3>

<p>
	We have already discussed what is new in Windows 11 "Moment 3" update <a href="https://www.neowin.net/reviews/here-is-everything-new-in-windows-11-moment-3-update/" rel="external nofollow">in our dedicated review</a> full of screenshots and two neat wallpapers. If that is too much for you to read, here are the most notable changes and improvements:
</p>

<p>
	 
</p>

<ul>
	<li>
		The updated notifications that now let you quickly copy 2FA codes without opening the received message, email, or other type of notification.
	</li>
	<li>
		A dedicated VPN indicator in the notification area.
	</li>
	<li>
		The long-requested seconds feature for the system clock.
	</li>
	<li>
		Developers can now create live kernel memory dumps within Task Manager.
	</li>
	<li>
		Content Adaptive Brightness Control or (CABC), a feature that makes your laptop or tablet last longer thanks to changing the brightness depending on the content displays, gets a few improvements and customization.
	</li>
	<li>
		You can now display even more Microsoft Edge tabs when pressing Alt + Tab.
	</li>
	<li>
		The update changes what happens when you press the Print Screen key. Those preferring old-school behavior will be glad to know that the change is reversible.
	</li>
	<li>
		Accessibility Improvements to make the OS more convenient for people with physical limitations.
	</li>
	<li>
		Multiple fixes and minor changes across the operating system.
	</li>
	<li>
		Bluetooth Low Energy Audio support for a better audio experience during calls, videos, and music.
	</li>
	<li>
		New app privacy settings put transparency and control in your hands.
	</li>
</ul>

<p>
	 
</p>

<p>
	You can download the Windows 11 "Moment 3" update by heading to Windows Settings &gt; Windows Update and clicking Check for updates (KB5026446 or 22621.1778). If what the Windows 11 "Moment 3" update offers does not sound exciting, check out <a href="https://www.neowin.net/news/windows-11-gets-taskbar-ungrouping-native-rgb-controls-new-archive-formats-support-more/" rel="external nofollow">the new stuff Microsoft announced for the future Windows 11 23H2 update</a>. Also, there is <a href="https://www.neowin.net/news/heres-an-early-look-at-the-upcoming-windows-11-ai-based-wallpaper-effects/" rel="external nofollow">a neat AI-powered wallpaper effect coming soon</a>, although unannounced yet.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/windows-11-moment-3-update-is-now-available-for-download/" rel="external nofollow">Windows 11 "Moment 3" update is now available for download</a>
</p>
]]></description><guid isPermaLink="false">15834</guid><pubDate>Wed, 24 May 2023 18:45:11 +0000</pubDate></item><item><title>Windows 11 Dev build 23466 brings new Backup and Restore via OOBE app, Dev Drive, and more</title><link>https://nsaneforums.com/news/software-news/windows-11-dev-build-23466-brings-new-backup-and-restore-via-oobe-app-dev-drive-and-more-r15833/</link><description><![CDATA[<p>
	Microsoft has released a new Windows 11 build to Dev Channel Insiders. The new build, 23466, brings improvements to backing up data with a new Backup and Restore app. <a href="https://www.neowin.net/news/microsoft-officially-debuts-dev-home-and-up-to-30-faster-refs-dev-drives/" rel="external nofollow">Dev Drive also makes a debut</a>, that was introduced at Build 2023 yesterday, and more. Of course, there are plenty of known issues and bugs as well.
</p>

<p>
	 
</p>

<p>
	You can check the full changelog below:
</p>

<p>
	 
</p>

<p>
	<strong>What’s new in Build 23466</strong>
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/microsoft-officially-debuts-dev-home-and-up-to-30-faster-refs-dev-drives/" rel="external nofollow"><strong>Dev Drive </strong></a>
</p>

<p>
	 
</p>

<p>
	Dev Drive is a new form of storage volume available to improve performance for key developer workloads. Dev Drive is built upon <a href="https://learn.microsoft.com/windows-server/storage/refs/refs-overview" rel="external nofollow">Resilient File System</a> (ReFS) technology and includes file system optimizations and features that enable developers to better manage their performance and security profile. It has been designed to meet a developer’s needs to host project source code, working folders, and package caches. It is not designed for general consumer workloads such as document libraries, installing packaged applications or non-developer tools.
</p>

<p>
	 
</p>

<p>
	To setup a Dev Drive, you can create one in free space on an existing drive or create a VHD/VHDX. This is done via Settings app under System &gt; Storage &gt; Advanced Storage Settings &gt; Disks &amp; Volumes, or via the command-line. A Dev Drive must be at least 50GB or higher in size and we recommend having 8GB or higher RAM on your device.
</p>

<p>
	 
</p>

<p>
	Performance mode, a new capability of Microsoft Defender Antivirus, is designed for Dev Drive to minimize impact on developer workloads.
</p>

<p>
	 
</p>

<p>
	More details on Dev Drive, <a href="https://aka.ms/devdrive" rel="external nofollow">see this documentation on MS Learn</a>.
</p>

<p>
	 
</p>

<p>
	<strong>FEEDBACK: Please file feedback in Feedback Hub (WIN + F) under Developer Platform &gt; Dev Drive.</strong>
</p>

<p>
	 
</p>

<p>
	<strong>Backup and Restore improvements</strong>
</p>

<p>
	 
</p>

<p>
	Building on the <a href="https://blogs.windows.com/windowsdeveloper/2022/05/24/microsoft-store-grows-with-the-developer-community/" rel="external nofollow">app restore</a> feature we announced last year, we are introducing additional backup and restore capabilities in this build to make moving to a new PC easier than ever and to help app developers retain users across this new PC transition. The goal of these changes is to land users on a desktop that feels familiar to them and get them back to productivity within minutes on their new PC.
</p>

<p>
	 
</p>

<figure>
	<div class="alignwrap">
		<img alt="1684948435_windows-backup-848x1024.jpg" class="ipsImage" data-ratio="75.10" height="540" width="447" src="https://cdn.neowin.com/news/images/uploaded/2023/05/1684948435_windows-backup-848x1024.jpg">
	</div>

	<figcaption>
		<em>The Windows Backup app.</em>
	</figcaption>
</figure>

<ul>
	<li>
		Windows Backup app – we’re introducing this new app to quickly get your current PC backed up and ready to move to a new PC.
	</li>
	<li>
		App pins – your Store apps from your prior PC will be pinned where you left them, both on taskbar and in the Start menu.
	</li>
	<li>
		Settings – Settings from your previous device will restore to your new PC to help you get back into the flow as quickly as possible.
	</li>
</ul>

<figure>
	<div class="alignwrap">
		<img alt="1684948403_restore-in-oobe-1024x738.jpg" class="ipsImage" data-ratio="75.10" height="518" width="720" src="https://cdn.neowin.com/news/images/uploaded/2023/05/1684948403_restore-in-oobe-1024x738.jpg">
	</div>

	<figcaption>
		<em>Welcome back screen showing PC restoring from backup.</em>
	</figcaption>
</figure>

<p>
	Once you’re backed up either via the new Windows Backup app or by visiting Accounts/Windows Backup in settings, you can try out the new restore during the out-of-box- experience (OOBE) when setting up a new PC or by <a href="https://learn.microsoft.com/windows-hardware/manufacture/desktop/push-button-reset-overview?view=windows-11" rel="external nofollow">resetting an existing PC</a> with this build.
</p>

<p>
	 
</p>

<p>
	<em>NOTE: An easy way for Insiders to try this experience out is by running the Windows Backup app on a PC running this build and then setting up a new VM using the ISO for this build </em><a href="https://aka.ms/wipISO" rel="external nofollow"><em>provided here</em></a><em> (or clean installation of this build on another PC) and going through OOBE for the new restore experience. </em>
</p>

<p>
	 
</p>

<p>
	For developers, review the <a href="https://aka.ms/AppRestore" rel="external nofollow">developer best practices</a> to learn more about how to provide the best restore experience for your app. Note that in this build, not all settings and app types are supported, including desktop apps in the Store and Android apps. Backing up a Work or School account is also not supported.
</p>

<p>
	 
</p>

<p>
	<strong>FEEDBACK: Please file feedback in Feedback Hub (WIN + F) under Install and Update &gt; Backup and Restore.</strong>
</p>

<p>
	 
</p>

<p>
	<strong>New text authoring experiences in voice access </strong>
</p>

<p>
	 
</p>

<p>
	We have added two new experiences to make text authoring easy with voice access. Users can now use “correction” commands to correct words that are misrecognized by voice access.
</p>

<p>
	 
</p>

<p>
	You can say “correct [text]” or “correct that” to correct a specific piece of text or last dictated text. The correction window appears with a list of options labelled with numbers.
</p>

<p>
	 
</p>

<p>
	You can say “click [number]” to select any option from the list. If you choose an alternate word from the window , the selected text will be replaced by the word. You can also say “spell that” to dictate the correct spelling of the text.
</p>

<p>
	 
</p>

<figure>
	<div class="alignwrap">
		<img alt="1684948383_correct-that-1024x683.jpg" class="ipsImage" data-ratio="75.10" height="480" width="720" src="https://cdn.neowin.com/news/images/uploaded/2023/05/1684948383_correct-that-1024x683.jpg">
	</div>

	<figcaption>
		<em>A word document showing corrections window with candidates for the text “cereals”.</em>
	</figcaption>
</figure>

<p>
	Users can directly use the “spell that” or “spell out” command to dictate the right spelling of non-standard words such as usernames, topics, etc. A spelling window appears where you can dictate letters, numbers, symbols, phonetic alphabet, etc. You get suggestions as you spell out the text. You can say “click 1” to enter the text you spelled out or say “click [number]” to pick a suggestion (if any). All words and phrases dictated using spelling experience are added to Windows dictionary and show up as suggestions when you try to spell the text next time.
</p>

<p>
	 
</p>

<figure>
	<div class="alignwrap">
		<img alt="1684948430_spell-that-1024x683.jpg" class="ipsImage" data-ratio="75.10" height="480" width="720" src="https://cdn.neowin.com/news/images/uploaded/2023/05/1684948430_spell-that-1024x683.jpg">
	</div>

	<figcaption>
		<em>Spelling window is floating on top of the Word application.</em>
	</figcaption>
</figure>

<figure>
	<div class="alignwrap">
		<img alt="Spell-that_2-1024x683.png" class="ipsImage" data-ratio="75.10" height="480" width="720" src="https://blogs.windows.com/wp-content/uploads/prod/sites/44/2023/05/Spell-that_2-1024x683.png">
	</div>

	<figcaption>
		<em>Spelling window showing suggestions as few characters are dictated.</em>
	</figcaption>
</figure>

<table border="1px solid black;" style="margin-left:0!important; margin-right:0!important">
	<tbody>
		<tr>
			<td>
				To do this
			</td>
			<td>
				Say this
			</td>
		</tr>
		<tr>
			<td>
				Correct a specific word or text
			</td>
			<td>
				“correct [text]”, e.g., “correct site”
			</td>
		</tr>
		<tr>
			<td>
				Correct selected text or last dictated text
			</td>
			<td>
				“correct that”
			</td>
		</tr>
		<tr>
			<td>
				Spell a word letter by letter.
			</td>
			<td>
				, “spell that”
			</td>
		</tr>
	</tbody>
</table>

<p>
	<em>[We are beginning to roll this out, so the experience isn’t available to all Insiders in the Dev Channel just yet as we plan to monitor feedback and see how it lands before pushing it out to everyone.] </em>
</p>

<p>
	 
</p>

<p>
	<strong>FEEDBACK: Please file feedback in Feedback Hub (WIN + F) under Accessibility &gt; Voice Access.</strong>
</p>

<p>
	 
</p>

<p>
	<strong>Narrator natural voices in Chinese </strong>
</p>

<p>
	 
</p>

<p>
	We are introducing new natural voices in Chinese that allow Narrator users to comfortably browse the web, read, and write mail, and do more. Natural Narrator voices use <a href="https://www.microsoft.com/en-us/research/blog/azure-ai-milestone-new-neural-text-to-speech-models-more-closely-mirror-natural-speech/" rel="external nofollow">modern</a>, on-device text to speech and once downloaded are supported without an internet connection.
</p>

<p>
	 
</p>

<p>
	To use one of the natural voices, add it to your PC by following these steps:
</p>

<p>
	 
</p>

<ol>
	<li>
		Open Narrator Settings by pressing the WIN + Ctrl + N hotkey.
	</li>
	<li>
		Under Narrator’s voice, select the Add button next to Add natural voices.
	</li>
	<li>
		Select the voice you want to install. You can install all voices, but you must install them separately. The new Chinese voices are Microsoft Xiaoxiao and Microsoft Yunxi.
	</li>
	<li>
		To start the download of the selected voice, select Install. The new voice will download and be ready for use in a few minutes, depending on your internet download speed.
	</li>
	<li>
		When the new voice has downloaded, in Narrator settings select your preferred voice from the drop-down menu in Narrator’s voice &gt; Choose a voice.
	</li>
</ol>

<figure>
	<div class="alignwrap">
		<img alt="1684948419_narrator-natural-voice-ui-chi" class="ipsImage" data-ratio="75.10" height="540" width="654" src="https://cdn.neowin.com/news/images/uploaded/2023/05/1684948419_narrator-natural-voice-ui-chinese-1024x845.jpg">
	</div>

	<figcaption>
		New natural voices in Chinese in Narrator.
	</figcaption>
</figure>

<p>
	Note: If your display language is not set to Chinese, then in step 3 you will first need to select “Choose a different language” and then select the Chinese language followed by the specific voice.
</p>

<p>
	 
</p>

<p>
	<strong>FEEDBACK: Please file feedback in Feedback Hub (Win + F) under Accessibility &gt; Narrator.</strong>
</p>

<p>
	 
</p>

<p>
	<strong>Changes and Improvements</strong>
</p>

<p>
	 
</p>

<p>
	<strong>[General]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		To minimize distractions from notification toasts, we now detect if the user is interacting with toasts or not and provide a suggestion to turn the toast banners off for such apps. This will only stop the banners from appearing, and you can still find the toasts in the notification center. This feature is beginning to roll out, so not all Insiders in the Dev Channel will see it right away.
	</li>
</ul>

<figure>
	<div class="alignwrap">
		<img alt="1684948414_notif-opt-out.jpg" class="ipsImage" data-ratio="54.27" height="267" width="492" src="https://cdn.neowin.com/news/images/uploaded/2023/05/1684948414_notif-opt-out.jpg">
	</div>

	<figcaption>
		<em>Suggestions to turn the toast banners.</em>
	</figcaption>
</figure>

<p>
	<strong>[Start menu]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		We are trying out a different model for ranking the most recently used files in the Start menu’s Recommended section that considers when the file was last used, the file extension, and more. This means you may not see files purely in reverse chronological order of when they were last used.
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>[Taskbar &amp; System Tray]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		We’re excited to bring you an early version of one of our most requested features for Windows 11, never combined mode. In never combined mode, you’ll be able to see each window of your applications on the taskbar individually, as well as their corresponding labels. You can find this feature by navigating to <strong>Settings &gt; Personalization &gt; Taskbar &gt; Taskbar behaviors</strong>. This feature is beginning to roll out, so not all Insiders in the Dev Channel will see it right away.
	</li>
</ul>

<figure>
	<div class="alignwrap">
		<img alt="1684948407_taskbarnevercombined-1024x42." class="ipsImage" data-ratio="5.69" height="29" width="720" src="https://cdn.neowin.com/news/images/uploaded/2023/05/1684948407_taskbarnevercombined-1024x42.jpg">
	</div>

	<figcaption>
		<em>Taskbar in never combined mode.</em>
	</figcaption>
</figure>

<p>
	<strong>[Search on the Taskbar]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		We are beginning to re-roll out the exploration of a new hover behavior for the search box and search highlight gleam. This originally began rolling out with <a href="https://blogs.windows.com/windows-insider/2023/04/19/announcing-windows-11-insider-preview-build-23440/" rel="external nofollow">Build 23440</a> but was disabled to address a bug. The proposed interaction model aims to create a more engaging search experience by invoking the search flyout when you hover over the search box gleam. This behavior can be adjusted by right-clicking on the taskbar, choosing “Taskbar settings” and adjusting your preferred search box experience.
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>[File Explorer]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		The Windows App SDK version of File Explorer is now fully rolled out to Insiders in the Dev Channel and as a result, we are removing the “pizza” icon on the command bar.
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>[Emoji]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		We have seen your feedback and are updating a few emoji in our current set. Everything from making the eye more recognizable to changing our alien to be out of this world. We know there are a few bugs in this release which will be resolved in future flights.
	</li>
</ul>

<figure>
	<div class="alignwrap">
		<img alt="1684948388_emoji_designupdates.jpg" class="ipsImage" data-ratio="43.06" height="240" width="720" src="https://cdn.neowin.com/news/images/uploaded/2023/05/1684948388_emoji_designupdates.jpg">
	</div>

	<figcaption>
		<em>Examples of updated emoji in our current set.</em>
	</figcaption>
</figure>

<p>
	<strong>[Windows Security]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		We have updated the Windows Security (firewall) notification dialogs that match the Windows 11 visuals.
	</li>
</ul>

<figure>
	<div class="alignwrap">
		<img alt="1684948393_windows-security-dialog-visua" class="ipsImage" data-ratio="75.10" height="510" width="720" src="https://cdn.neowin.com/news/images/uploaded/2023/05/1684948393_windows-security-dialog-visuals.jpg">
	</div>

	<figcaption>
		<em>Updated Windows Security (firewall) notification dialogs.</em>
	</figcaption>
</figure>

<p>
	<strong>[Networking]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		Added support for bridging adapters via command line via <a href="https://learn.microsoft.com/windows-server/networking/technologies/netsh/netsh" rel="external nofollow">netsh</a>.
	</li>
	<li>
		Passpoint Wi-Fi networks will now support enhanced connection performance and will display a URL in Quick Settings to provide information to users about the venue or event.
	</li>
	<li>
		We added WPA3 support to the Phone Link instant hotspot feature for more secure connections to a phone’s hotspot. Also made fixes to respect metered connection settings, reduce duplicate profiles, and show the phone’s display name in the network list.
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>[Settings]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		We have added links to advanced properties for network adapters and internet properties under Settings &gt; Network &amp; internet &gt; Advanced network settings.
	</li>
</ul>

<figure>
	<div class="alignwrap">
		<img alt="1684948377_advanced-network-links-1-1024" class="ipsImage" data-ratio="75.10" height="524" width="720" src="https://cdn.neowin.com/news/images/uploaded/2023/05/1684948377_advanced-network-links-1-1024x746.jpg">
	</div>

	<figcaption>
		<em>Link to advanced properties for network adapters in Settings.</em>
	</figcaption>
</figure>

<ul>
	<li>
		We have added a way to view Wi-Fi passwords for your known networks via <strong>Settings &gt; Network &amp; internet &gt; Wi-Fi</strong> and “Manage known networks”.
	</li>
</ul>

<figure>
	<div class="alignwrap">
		<img alt="1684948916_wifi-view-keys-1024x774.jpg" class="ipsImage" data-ratio="75.10" height="540" width="714" src="https://cdn.neowin.com/news/images/uploaded/2023/05/1684948916_wifi-view-keys-1024x774.jpg">
	</div>

	<figcaption>
		<em>View Wi-Fi passwords for known wireless networks in Settings.</em>
	</figcaption>
</figure>

<ul>
	<li>
		We added the ability to join Bluetooth Personal Area networks under the <strong>Settings &gt; Bluetooth &amp; devices &gt; Devices </strong> This option will appear for paired devices like Phones that are sharing internet over Bluetooth.
	</li>
	<li>
		Based on your feedback, we have added additional options to the Data Usage page that allows for daily and weekly data limits. The page will also now show how far a data limit has been exceeded.
	</li>
	<li>
		Updated the design of the lists displayed under <strong>Settings &gt; </strong><strong>Apps &gt; Startup Apps</strong> and <strong>Settings &gt; </strong><strong>Apps &gt; Advanced App Settings &gt; App Execution Alias</strong> pages to be more consistent with other Settings pages.
	</li>
	<li>
		Updated <strong>Settings &gt; Apps &gt; Startup</strong> to make it easier to access more information about the apps listed.
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>[For Developers]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		We are moving the “For Developers” settings page from Settings &gt; Privacy &amp; security to now be under <strong>Settings &gt; System</strong>.
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>Fixes</strong>
</p>

<p>
	 
</p>

<p>
	<strong>[File Explorer]</strong>
</p>

<p>
	 
</p>

<p>
	We fixed the following issues for Insiders previewing the Windows App SDK version of File Explorer
</p>

<p>
	 
</p>

<ul>
	<li>
		Fixed an issue which could cause File Explorer or the Control Panel to become unresponsive to clicks after invoking the context menu.
	</li>
	<li>
		Fixed an issue where File Explorer and taskbar weren’t responding to light and dark mode changes (until explorer.exe was restarted) if you had this version.
	</li>
</ul>

<p>
	 
</p>

<p>
	We fixed the following issues for Insiders with Gallery in File Explorer:
</p>

<p>
	 
</p>

<ul>
	<li>
		Added icons for the entries in the Collection dropdown in Gallery.
	</li>
</ul>

<p>
	 
</p>

<p>
	We fixed the following issues for Insiders with the modernized details pane in File Explorer:
</p>

<p>
	 
</p>

<ul>
	<li>
		Fixed an issue where Narrator wasn’t saying anything when opening and closing the details pane.
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>[Taskbar]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		Fixed an issue where the taskbar in multi-monitor setups would show the indicator for an app window having focus on your screen when it actually didn’t.
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>[Search on the Taskbar]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		We fixed the issue causing some users to see content flicker before the content finishes loading when the search flyout is opened.
	</li>
	<li>
		We fixed an issue causing search to crash on launch for some Insiders in the previous build.
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>[Notifications]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		Fixed an issue which was making the Notification Center and Notification page in Settings crash when switching do not disturb status for some Insiders in the last few flights.
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>[Task Manager]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		The search icon should be easier to see now when using a contrast theme.
	</li>
	<li>
		Pressing enter when keyboard focus is on one of the sections (like Memory) in the Performance page should now actually switch sections.
	</li>
	<li>
		Made the navigation pane a bit narrower. As part of this change, when necessary, the text will be wrapped now.
	</li>
	<li>
		The creation of live kernel memory dump file submenu has access keys now.
	</li>
	<li>
		Resizing Task Manager from the top of the window should work now.
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>[Settings]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		Fixed an issue which was causing Settings to crash randomly sometimes when navigating away from certain pages.
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>[Windows Spotlight]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		Fixed an issue which was causing explorer.exe to crash when selecting “learn more about this picture” in the previous flight.
	</li>
</ul>

<p>
	 
</p>

<p>
	<em>NOTE: Some fixes noted here in Insider Preview builds from the Dev Channel may make their way into the servicing updates for the released version of Windows 11.</em>
</p>

<p>
	 
</p>

<p>
	<strong>Known issues</strong>
</p>

<p>
	 
</p>

<p>
	<strong>[Dev Drive]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		<strong>[NEW]</strong> On a reboot, additional filters beyond AV might be attached to your Dev Drive. To check what filters are attached, please run ‘fsutil devdrv query :’ in Windows PowerShell. If you are seeing more than your AV filters, you can run ‘fsutil volume dismount :’ and then ‘fsutil devdrv query :’. After those steps, you should only see your AV filters.
	</li>
	<li>
		<strong>[NEW]</strong> There might be variable performance on different hardware. If you notice slower performance on your machine, please file feedback!
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>[Search on the Taskbar]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		<strong>[NEW]</strong> Insiders who have the new hover behavior for the search box and search highlight gleam will see an empty tooltip displayed momentarily while the gleam is hovered. This might also occur for Insiders who don’t have the new hover behavior – the empty tooltip may be displayed when the gleam is hovered.
	</li>
	<li>
		Narrator customers may not be able to navigate down the left side panel of the search flyout.
	</li>
	<li>
		Text scaling may not work in the search flyout.
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>[File Explorer]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		<strong>[NEW]</strong> Insiders may experience a File Explorer crash when dragging the scroll bar or attempting to close the window during an extended file-loading process.
	</li>
</ul>

<p>
	 
</p>

<p>
	Insiders who have Gallery in File Explorer will see the following issues:
</p>

<p>
	 
</p>

<ul>
	<li>
		Gallery may require clicking twice on the node in the navigation pane for initial load.
	</li>
	<li>
		Live updates (including filtering) are currently disabled and require using the Refresh button as a workaround.
	</li>
	<li>
		Thumbnail loading performance for dehydrated cloud files and memory usage in large collections are known issues we are focused on improving. Please capture Performance traces in Feedback Hub for any performance-related issues. Rebuilding your Indexer can help if thumbnails are missing for cloud files; Search for “Indexing Options” and look in Advanced settings to find the rebuild tool.
	</li>
	<li>
		Photos from OneDrive for Business currently must be hydrated to work properly.
	</li>
	<li>
		Some file types (e.g., HEIC) might not be rendered correctly or performantly.
	</li>
</ul>

<p>
	 
</p>

<p>
	Insiders who have access keys in File Explorer will see the following issues:
</p>

<p>
	 
</p>

<ul>
	<li>
		Access keys will appear inconsistently if no button is pressed. Pressing a button will cause them to reappear.
	</li>
</ul>

<p>
	 
</p>

<p>
	Insiders will have issues with the following commands on recommended files in File Explorer:
</p>

<p>
	 
</p>

<ul>
	<li>
		Clicking on the Share command will currently bring up the Windows share sheet (non-OneDrive).
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>[Taskbar &amp; System Tray]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		<strong>[NEW] </strong>If you drag and drop a window in Task View to a different Desktop, the icon for that app may not appear in the taskbar.
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>[Notifications]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		<strong>[NEW]</strong> The copy button for quickly copying two-factor authentication (2FA) codes in notification toasts (first introduced in <a href="https://www.neowin.net/news/windows-11-dev-channel-build-23403-brings-xaml-recommended-content-to-file-explorer/" rel="external nofollow">Build 23403</a>) is currently not working in this build. A fix is coming in a future flight.
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>[Backup and Restore]</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		<strong>[NEW</strong>] Backups of a PC that was set up using a restore may not show up in subsequent restores.
	</li>
	<li>
		<strong>[NEW]</strong>Restore of solid colour desktop backgrounds are not yet supported.
	</li>
</ul>

<p>
	 
</p>

<p>
	You can find the offficial blog post <a href="https://blogs.windows.com/windows-insider/2023/05/24/announcing-windows-11-insider-preview-build-23466/" rel="external nofollow">here</a>.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/windows-11-dev-build-23466-brings-new-backup-and-restore-via-oobe-app-dev-drive-and-more/" rel="external nofollow">Windows 11 Dev build 23466 brings new Backup and Restore via OOBE app, Dev Drive, and more</a>
</p>
]]></description><guid isPermaLink="false">15833</guid><pubDate>Wed, 24 May 2023 18:42:30 +0000</pubDate></item><item><title>Here's an early look at the upcoming Windows 11 AI-based wallpaper effects</title><link>https://nsaneforums.com/news/software-news/heres-an-early-look-at-the-upcoming-windows-11-ai-based-wallpaper-effects-r15832/</link><description><![CDATA[<p>
	A couple of months ago, users discovered a few intriguing strings inside Windows 11 preview builds. The code suggested Microsoft's desktop operating system <a href="https://www.neowin.net/news/windows-11-might-soon-get-ai-based-effects-for-desktop-backgrounds/" rel="external nofollow">would get AI-powered wallpaper effects</a>, making the desktop background more lively and engaging. Now we have our first early look at the upcoming feature powered by artificial intelligence.
</p>

<p>
	 
</p>

<p>
	Twitter user Albacore (@<a href="https://twitter.com/thebookisclosed" rel="external nofollow">thebookisclosed</a>) has published a short video demoing the new parallax effect applied to the desktop background in Windows 11. The effect adds the illusion of depth to your wallpaper and shifts different image layers when you hover the cursor around. According to Albacore, the feature should work on systems with accelerometers (the wallpaper shifts when you interact with a tablet or laptop) and PCs without dedicated sensors (tied to mouse movements).
</p>

<p>
	 
</p>

<div class="ipsEmbeddedOther" contenteditable="false">
	<iframe allowfullscreen="" class="ipsEmbed_finishedLoading" data-controller="core.front.core.autosizeiframe" data-embedid="embed6945010794" src="https://nsaneforums.com/index.php?app=core&amp;module=system&amp;controller=embed&amp;url=https://twitter.com/thebookisclosed/status/1661402758669381634?ref_src=twsrc%255Etfw%257Ctwcamp%255Etweetembed%257Ctwterm%255E1661402758669381634%257Ctwgr%255E910d53d128ff8977485fdd39327b4bd1f89a326a%257Ctwcon%255Es1_%26ref_url=https://www.neowin.net/news/heres-an-early-look-at-the-upcoming-windows-11-ai-based-wallpaper-effects/" style="overflow: hidden; height: 738px;"></iframe>
</div>

<p>
	It is great to see Microsoft implementing AI-based features in Windows 11 not only <a href="https://www.neowin.net/news/microsoft-brings-ai-to-windows-11-with-windows-copilot-to-make-every-user-a-power-user/" rel="external nofollow">for productivity</a> (check out <a href="https://www.neowin.net/news/tags/build_2023/" rel="external nofollow">our Build 2023 coverage here</a>) but also for fun. There is no information on when the new wallpaper effects will be available for testing, and the hardware compatibility is currently a mystery. Albacore says the demoed implementation is still unfinished, so keep an eye on the upcoming Windows 11 preview builds in the Canary and Dev channels. Microsoft may announce it in one of the updates or ship it hidden and unannounced in one of the future preview builds.
</p>

<p>
	 
</p>

<p>
	Are you excited about the AI-powered effects for desktop wallpapers in Windows 11? Let us know in the comments below.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/heres-an-early-look-at-the-upcoming-windows-11-ai-based-wallpaper-effects/" rel="external nofollow">Here's an early look at the upcoming Windows 11 AI-based wallpaper effects</a>
</p>
]]></description><guid isPermaLink="false">15832</guid><pubDate>Wed, 24 May 2023 18:37:02 +0000</pubDate></item><item><title>Microsoft improves Windows 11 21H2 May OOBE with a new update</title><link>https://nsaneforums.com/news/software-news/microsoft-improves-windows-11-21h2-may-oobe-with-a-new-update-r15831/</link><description><![CDATA[<p>
	Microsoft, earlier today, released non-security preview updates for both<a href="https://www.neowin.net/news/microsofts-windows-11-kb5026436-update-fixes-smb-lsass-printer-ntfs-issues-and-more/" rel="external nofollow"> Windows 11 21H2</a> and <a href="https://www.neowin.net/news/microsoft-releases-kb5026435-os-build-190453031-preview-for-windows-10-22h2/" rel="external nofollow">Windows 10 22H2</a> that fix a whole bunch of issues. Alongside those, the Redmond giant has also released new OOBE (Out of Box Experience) updates for Windows 11 21H2. Microsoft frequently releases such updates to improve the OOBE. Generally it is done once a month.
</p>

<p>
	 
</p>

<p>
	For example, the March OOBE update added a <a href="https://www.neowin.net/news/microsoft-slightly-improves-oobe-on-windows-11-22h2-21h2-as-well-as-on-windows-10/" rel="external nofollow">Shim to improve compatibility</a> with Component Object Model (COM) objects. Meanwhile, the April OOBE update also addressed compatibility issues, but this time it was <a href="https://www.neowin.net/news/microsoft-improves-windows-11-22h2-21h2-and-windows-10-oobe-compatibility-with-new-update/" rel="external nofollow">related to the registry</a>.
</p>

<p>
	 
</p>

<p>
	Microsoft says that updates are installed automatically during the OOBE process if the internet connection is available. A device restart is required to complete the installation.
</p>

<p>
	 
</p>

<p>
	With this month's OOBE update release, Microsoft hasn't gone into any detail about what the new update brings as it has only mentioned that this is meant to improve the Windows 21H2 Out of box experience. The full release note for the update is given below:
</p>

<p style="margin-left: 40px;">
	 
</p>

<p style="margin-left: 40px;">
	<strong>Summary</strong>
</p>

<p style="margin-left: 40px;">
	 
</p>

<p style="margin-left: 40px;">
	This update improves the Windows 11, version 21H2 out-of-box experience (OOBE). This update applies only to the Windows 11 OOBE process and is available only when OOBE updates are installed.
</p>

<p style="margin-left: 40px;">
	 
</p>

<p style="margin-left: 40px;">
	<strong>How to get this update</strong>
</p>

<p style="margin-left: 40px;">
	 
</p>

<p style="margin-left: 40px;">
	<strong>Windows OOBE</strong>
</p>

<p style="margin-left: 40px;">
	 
</p>

<p style="margin-left: 40px;">
	This update is installed during the Windows OOBE process if an Internet connection is available.
</p>

<p style="margin-left: 40px;">
	 
</p>

<p style="margin-left: 40px;">
	<strong>Prerequisites</strong>
</p>

<p style="margin-left: 40px;">
	 
</p>

<p style="margin-left: 40px;">
	There are no prerequisites for installing this update.
</p>

<p>
	 
</p>

<p>
	The official support document of the OOBE update (under <a href="https://support.microsoft.com/en-us/help/5026910" rel="external nofollow">KB5026910</a>) goes into more details regarding the files this release delivers.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/microsoft-improves-windows-11-21h2-may-oobe-with-a-new-update/" rel="external nofollow">Microsoft improves Windows 11 21H2 May OOBE with a new update</a>
</p>
]]></description><guid isPermaLink="false">15831</guid><pubDate>Wed, 24 May 2023 18:35:04 +0000</pubDate></item><item><title>Customize Google Chrome with the new side panel</title><link>https://nsaneforums.com/news/software-news/customize-google-chrome-with-the-new-side-panel-r15830/</link><description><![CDATA[<p>
	The latest update for Google Chrome adds a new way to customize the browser. You can now spruce up the appearance of the new tab page from the side panel.
</p>

<p>
	 
</p>

<p>
	Chrome has had some customization options for a while, the new sidebar makes it easier to access and offers new settings that you can use. Open a new tab and click on the Customize Chrome button in the bottom right corner of the page. Or, you can click on the side panel button on the toolbar and select "Customize Chrome".
</p>

<p>
	 
</p>

<p>
	<img alt="customize-chrome-side-panel.jpg" class="ipsImage" data-ratio="88.94" height="426" width="479" src="https://www.ghacks.net/wp-content/uploads/2023/05/customize-chrome-side-panel.jpg"></p><noscript><img class="aligncenter size-full wp-image-195623" alt="customize chrome side panel" width="479" height="426" src="https://www.ghacks.net/wp-content/uploads/2023/05/customize-chrome-side-panel.jpg"></noscript>


<h3>
	<strong>How to customize Google Chrome's appearance</strong>
</h3>

<p>
	The first section in the sidebar shows a preview of the browser's current appearance. Click on the Change Theme button to explore the available presets, Chrome has various collections that you can choose from such as Landscapes, Cityscapes, Life, Art, etc.
</p>

<p>
	 
</p>

<p>
	<img alt="How-to-customize-Google-Chromes-appearan" class="ipsImage" data-ratio="75.10" height="387" width="720" src="https://www.ghacks.net/wp-content/uploads/2023/05/How-to-customize-Google-Chromes-appearance.jpg"></p><noscript><img class="aligncenter size-full wp-image-195628" alt="How to customize Google Chrome's appearance" width="1200" height="645" src="https://www.ghacks.net/wp-content/uploads/2023/05/How-to-customize-Google-Chromes-appearance.jpg"></noscript>


<p>
	 
</p>

<p>
	Select a collection to view thumbnails of all its images, click on a picture to set it as your browser's background. You can optionally toggle the button at the top of a category to refresh the image automatically on a daily basis.
</p>

<p>
	 
</p>

<p>
	<img alt="Google-chrome-refresh-wallpaper-daily.jp" class="ipsImage" data-ratio="75.10" height="387" width="720" src="https://www.ghacks.net/wp-content/uploads/2023/05/Google-chrome-refresh-wallpaper-daily.jpg"></p><noscript><img class="aligncenter size-full wp-image-195626" alt="Google chrome refresh wallpaper daily" width="1200" height="645" src="https://www.ghacks.net/wp-content/uploads/2023/05/Google-chrome-refresh-wallpaper-daily.jpg"></noscript>


<p>
	 
</p>

<p>
	If you don't like the built-in themes in the browser, you can upload an image and use it as your background wallpaper. Chrome supports JPEG, JPG and PNG image formats.
</p>

<p>
	 
</p>

<p>
	<img alt="customize-chrome-with-wallpaper.jpg" class="ipsImage" data-ratio="75.10" height="387" width="720" src="https://www.ghacks.net/wp-content/uploads/2023/05/customize-chrome-with-wallpaper.jpg"></p><noscript><img class="aligncenter size-full wp-image-195627" alt="customize chrome with wallpaper" width="1200" height="645" src="https://www.ghacks.net/wp-content/uploads/2023/05/customize-chrome-with-wallpaper.jpg"></noscript>


<p>
	 
</p>

<p>
	Not a fan of wallpapers? Perhaps you may find the Chrome colours collection interesting, it lets you choose a solid colour background for your new tab page. You can even use custom colours by clicking on the eyedropper button, it allows you to set RGB values, or you can select the eyedropper tool to pick a colour from a web page or an image.
</p>

<p>
	 
</p>

<p>
	<img alt="Google-Chrome-colors.jpg" class="ipsImage" data-ratio="75.10" height="387" width="720" src="https://www.ghacks.net/wp-content/uploads/2023/05/Google-Chrome-colors.jpg"></p><noscript><img class="aligncenter size-full wp-image-195625" alt="Google Chrome colours" width="1200" height="645" src="https://www.ghacks.net/wp-content/uploads/2023/05/Google-Chrome-colours.jpg"></noscript>


<p>
	 
</p>

<p>
	Speaking of colours, the colour palette on the main screen of the side panel is different from the Chrome colours. The former changes the accent colour of the browser's UI (such as the tab bar), while the latter uses the colour as the backdrop of the new tab page.
</p>

<p>
	 
</p>

<p>
	<img alt="Google-Chrome-custom-colors.jpg" class="ipsImage" data-ratio="86.77" height="492" width="567" src="https://www.ghacks.net/wp-content/uploads/2023/05/Google-Chrome-custom-colors.jpg"></p><noscript><img class="aligncenter size-full wp-image-195624" alt="Google Chrome custom colours" width="567" height="492" src="https://www.ghacks.net/wp-content/uploads/2023/05/Google-Chrome-custom-colours.jpg"></noscript>


<p>
	 
</p>

<p>
	The colour palette offers a way to personalize themes further, for example, you can select a preset theme and wallpaper, and then change the colour to your preference. Similarly, you can use the Chrome colour options along with the palette to create a custom dark theme or light theme, or even mix and match them.
</p>

<p>
	 
</p>

<div class="rvloader-container mb--10" id="td-incontent-226957651078">
	<script class="rvloader">!function(){var t="td-incontent-"+Math.floor(Math.random()*Date.now()),e=document.getElementsByClassName("rvloader"),n=e[e.length-1].parentNode;undefined==n.getAttribute("id")&&(n.setAttribute("id",t),revamp.displaySlots([t]))}();</script>
</div>

<p>
	Google <a cmp-ltrk="Links" cmp-ltrk-idx="3" data-wpel-link="external" href="https://blog.google/products/chrome/new-ways-to-customize-chrome-on-your-desktop/" mrfobservableid="34a82400-24e4-437e-8bb0-ab1c0f94ebb8" rel="external nofollow" target="_blank">says</a>that the customizations that you apply are saved automatically, so don't worry about losing your created themes. To reset Chrome's appearance, select the Classic Chrome experience under the Change Theme section. If you have made changes to the accent colour, a button appears below the colour section, clicking on which will reset the theme to the default theme.
</p>

<p>
	 
</p>

<p>
	The shortcuts button in the Customize Chrome side panel lets you toggle the speed-dials that are displayed on the new tab page. You may create custom shortcuts for sites that you like. Or, if you prefer to automate the process, you may change the setting to "most visited sites" to let Chrome create shortcuts based on your frequently visited websites. You can remove a shortcut by hovering over it and clicking on the X button.
</p>

<p>
	 
</p>

<p>
	Want more ways to customize your experience? Read our previous coverage to find out the <a cmp-ltrk="Links" cmp-ltrk-idx="4" data-wpel-link="internal" href="https://www.ghacks.net/2021/09/01/new-tab-extensions-chrome" mrfobservableid="5ef15eb9-4965-4c02-8947-8e94575c65c0" rel="external nofollow" target="_blank">best new tab extensions</a> for Chrome.
</p>

<p>
	 
</p>

<div id="div-gpt-ad-1524862513262-0">
	 
</div>

<p>
	 
</p>

<p>
	<a href="https://www.ghacks.net/2023/05/24/how-to-customize-google-chromes-appearance/" rel="external nofollow">Customize Google Chrome with the new side panel</a>
</p>
]]></description><guid isPermaLink="false">15830</guid><pubDate>Wed, 24 May 2023 18:33:37 +0000</pubDate></item><item><title>After Bing search bar, Microsoft now bringing Edge sidebar to Windows desktops very soon</title><link>https://nsaneforums.com/news/software-news/after-bing-search-bar-microsoft-now-bringing-edge-sidebar-to-windows-desktops-very-soon-r15829/</link><description><![CDATA[<p>
	It is probably not unfair to say that Microsoft really wants people to use its Edge web browser. The company has often adopted somewhat desperate means to coax more users into trying Edge and choosing it as their default browser, or at least just getting more people to use it, as well as Bing.
</p>

<p>
	 
</p>

<p>
	Just considering the Windows 11 era, the company first came under fire due to the way it <a href="https://www.neowin.net/news/windows-11-default-apps-settings-for-browsers-is-facing-backlash-from-rivals/" rel="external nofollow">set up the default app options</a> as it was seemingly quite tedious to go through the process. There have been aggressive ads and promotions as well, like the time Microsoft called <a href="https://www.neowin.net/news/microsoft-says-its-own-edge-browser-is-more-trustworthy-than-so-2008-google-chrome/" rel="external nofollow">Google Chrome "so 2008"</a> and suggested that Edge was <a href="https://www.neowin.net/news/microsoft-says-its-own-edge-browser-is-more-trustworthy-than-so-2008-google-chrome/" rel="external nofollow">more secure than Chrome</a>.
</p>

<p>
	 
</p>

<p>
	And of course, from time to time Edge also wants you to choose it as <a href="https://www.neowin.net/news/microsoft-is-showing-new-full-page-ads-asking-you-to-set-edge-as-the-default-browser/" rel="external nofollow">the default browser</a>. More recently, via Patch Tuesday, Microsoft made a weird change that was bringing up the Default Settings page <a href="https://www.neowin.net/news/latest-windows-11-and-10-patch-tuesdays-are-trying-to-coax-chrome-users-to-switch-to-edge/" rel="external nofollow">every time a user opened Google Chrome</a>.
</p>

<p>
	 
</p>

<p>
	Aside from those, Microsoft is also simultaneously adding more and more Edge elements to Windows desktop gradually. The company added a desktop search, first in the Windows 11 Dev Channel; and then just a couple of months ago in March, an Edge update brought the desktop search to Windows 10 as well <a href="https://www.neowin.net/news/following-windows-11-microsoft-pushes-bing-desktop-search-bar-to-windows-10-via-edge/" rel="external nofollow">via an option in the Settings</a>.
</p>

<p>
	 
</p>

<p>
	Soon, Microsoft Edge will also gain the ability to attach the <a href="https://www.neowin.net/news/tags/edge_sidebar/" rel="external nofollow">sidebar</a> to the Windows desktop. There will be a "popout" icon at the base of the sidebar which will allow for this. The feature is already present in one of the recent <a href="https://www.neowin.net/news/you-may-have-two-taskbars-in-windows-10-and-11-thanks-to-latest-edge-canary-update/" rel="external nofollow">Edge Canary builds</a>.
</p>

<p>
	 
</p>

<div class="img-center">
	<figure class="image">
		<p>
			<img alt="1681377859_edge_sidebar.gif" class="ipsImage" data-ratio="75.10" height="450" width="720" src="https://cdn.neowin.com/news/images/uploaded/2023/04/1681377859_edge_sidebar.gif">
		</p>
		<em><a href="https://www.neowin.net/news/you-may-have-two-taskbars-in-windows-10-and-11-thanks-to-latest-edge-canary-update/" ipsnoembed="true" rel="external nofollow">Edge sidebar on Windows desktop</a></em>
	</figure>
</div>

<p>
	A new entry on the Microsoft 365 roadmap under <a href="https://www.microsoft.com/en-us/microsoft-365/roadmap?filters=&amp;searchterms=124911" rel="external nofollow">feature ID 124911</a> provides more details on it and reveals Microsoft's intentions behind the change:
</p>

<p style="margin-left: 40px;">
	 
</p>

<p style="margin-left: 40px;">
	<strong>Microsoft Edge: Option to attach the Edge sidebar to the Windows desktop</strong>
</p>

<p style="margin-left: 40px;">
	 
</p>

<p style="margin-left: 40px;">
	Users of the Microsoft Edge sidebar will soon have the option to access their apps and sites directly from their Windows desktop. As an opt-in experience, users can attach the sidebar to their Windows desktop by clicking a "popout" icon near the base of the sidebar in the browser. This enables a side-by-side experience that works with any Windows app—including Microsoft Edge itself. Users enjoy streamlined access to the same set of powerful AI tools and web-based services, including Bing Chat, without launching a browser window, enhancing productivity regardless of where they are in Windows. Administrators can control the availability using the <strong>StandaloneHubsSidebarEnabled</strong>.
</p>

<p>
	 
</p>

<p>
	As per the roadmap, Microsoft is expecting the feature to be generally available (GA) from next month, i.e., June 2023.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/after-bing-search-bar-microsoft-now-bringing-edge-sidebar-to-windows-desktops-very-soon/" rel="external nofollow">After Bing search bar, Microsoft now bringing Edge sidebar to Windows desktops very soon</a>
</p>
]]></description><guid isPermaLink="false">15829</guid><pubDate>Wed, 24 May 2023 18:31:17 +0000</pubDate></item><item><title>Google disables the Mica material in Chrome due to high power consumption</title><link>https://nsaneforums.com/news/software-news/google-disables-the-mica-material-in-chrome-due-to-high-power-consumption-r15828/</link><description><![CDATA[<p>
	Several weeks ago, Google brought the Mica Alt material to Chrome Canary on computers running Windows 11 version 22H2 and newer, significantly improving the browser's look. However, the new visuals have one hard-to-ignore downside: with Mica Alt enabled, Chrome consumes more power and drains your device's battery much faster. For that reason, Google decided to turn off the updated looks in Chrome Canary.
</p>

<p>
	 
</p>

<p>
	<a href="https://chromium-review.googlesource.com/c/chromium/src/+/4552330" rel="external nofollow">A new CL on Chromium </a><a href="https://chromium-review.googlesource.com/c/chromium/src/+/4552330" rel="external nofollow">Gerrit</a> (<a href="https://twitter.com/Leopeva64/status/1660736764737204224" rel="external nofollow">via</a>) reveals why Google has pulled the eye candy from its browser. According to the post, the change requires more optimization before it ships to all customers enabled by default, and the power usage in its current state "may not be good enough."
</p>

<p>
	 
</p>

<p>
	Although Chromium developers need more time to optimize the visuals, you can still enable Mica on Chrome's tab strip. Chrome Canary now ships with the material disabled by default, which you can turn on using an experimental flag.
</p>

<p>
	 
</p>

<ol>
	<li>
		Go to <strong>chrome://flags</strong>.
	</li>
	<li>
		Search for "<strong>Windows 11 Mica titlebar</strong>" or use the direct <strong>chrome://flags/#windows11-mica-titlebar</strong> link.
	</li>
	<li>
		Change the flag's value from <strong>Default</strong> to <strong>Enabled</strong> and restart the browser.
	</li>
	<li>
		Enjoy the new looks.
	</li>
</ol>

<p>
	 
</p>

<p>
	The Mica material is a part of Google's upcoming visual revamp for its browser. Chrome Canary users are already testing the redesigned tab strip, new icons in the main menu, better fonts, and more. You can look at the latest stuff by <a href="https://www.google.com/chrome/canary/" rel="external nofollow">downloading Chrome Canary from the official website</a>. Note that Canary builds are bug-prone, so we do not recommend using the channel as your primary browser.
</p>

<p>
	 
</p>

<p>
	Google Chrome is not the only browser offering Windows 11's new UI materials. During Build 2023, Microsoft announced <a href="https://www.neowin.net/news/microsoft-announces-edge-redesign-with-mica-rounded-corners-and-more/" rel="external nofollow">a new Microsoft Edge redesign with improved visuals, translucent UI elements, rounded corners for tabs, and other changes</a> across the browser. Some of these improvements are already available in Microsoft Edge Canary, but they still need extra polish and fixes.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/google-disables-the-mica-material-in-chrome-due-to-high-power-consumption/" rel="external nofollow">Google disables the Mica material in Chrome due to high power consumption</a>
</p>
]]></description><guid isPermaLink="false">15828</guid><pubDate>Wed, 24 May 2023 18:28:34 +0000</pubDate></item><item><title>Nvidia WHQL 532.03 drivers adds RTX 4060 Ti support and brings AI model optimizations</title><link>https://nsaneforums.com/news/software-news/nvidia-whql-53203-drivers-adds-rtx-4060-ti-support-and-brings-ai-model-optimizations-r15827/</link><description><![CDATA[<p>
	It has been <a href="https://www.neowin.net/news/nvidia-53168-driver-delivers-star-wars-jedi-survivor-and-dead-island-2-support/" rel="external nofollow">over a month</a> since Nvidia released a new graphics driver, and a fresh update has finally landed today. The GeForce Game Ready 532.03 WHQL driver has support for the company's brand-new hardware, <a href="https://www.neowin.net/news/nvidia-unveils-rtx-4060-and-4060-ti-starting-at-299/" rel="external nofollow">the RTX 4060 Ti</a>, The Lord of the Rings: Gollum optimizations, and major performance uplifts in AI models.
</p>

<p>
	 
</p>

<p>
	The GeForce RTX 4060 Ti launches today, targeting 1080p displays with a hefty $399 price tag for the 8GB VRAM model. Reviewers have not been kind to the new GPU, with even <a href="https://www.neowin.net/news/amd-allegedly-frantically-cuts-rx-7600-price-as-reviewers-destroy-nvidias-rtx-4060-ti/" rel="external nofollow">AMD reportedly reacted to the release</a> with lowered pricing for an upcoming product.
</p>

<p>
	 
</p>

<p>
	Anyone picking up the RTX 4060 Ti will want to install the 532.03 drivers to receive official support and make sure the new hardware is running smoothly in their systems.
</p>

<p>
	 
</p>

<p>
	The Lord of the Rings: Gollum, the stealth adventure title from Daedalic Entertainment, is releasing tomorrow, May 25. Being an Nvidia-backed title, Gollum's chase of the One Ring has been injected with Nvidia's DLSS 3, DLAA, Reflex, and ray-traced effects. <a href="https://www.nvidia.com/en-us/geforce/news/geforce-rtx-4060-4060ti-game-ready-driver/" rel="external nofollow">Per the company</a>, the RTX 4090's FPS can be boosted from 48 to 169 using DLSS 3 Frame Generation with all settings maxed out at 4K.
</p>

<p>
	 
</p>

<div class="ipsEmbeddedVideo" contenteditable="false">
	<div>
		<iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="" frameborder="0" height="113" src="https://www.youtube-nocookie.com/embed/RMmlb_2aG0w?feature=oembed" title="The Lord of the Rings: Gollum™ | 4K DLSS 3 Comparison" width="200"></iframe>
	</div>
</div>

<p>
	 
</p>

<p>
	Nvidia also said this driver has major optimizations to improve performance in AI models and applications. Users may see "up to 2x inference performance" according to the company, with Stable Diffusion being named as one of the AI applications benefiting from the upgrade.
</p>

<p>
	 
</p>

<ul>
	<li>
		Two issues have been fixed in this release:
	</li>
	<li>
		[Age of Wonders 4] Application stability issues [4101637]
	</li>
	<li>
		[Bus Simulator 31] Ansel &amp; Freestyle not working [4090979]
	</li>
</ul>

<p>
	 
</p>

<p>
	Here are the known issues to look out for:
</p>

<p>
	 
</p>

<ul>
	<li>
		Toggling HDR on and off in-game causes game stability issues when non-native resolution is used. [3624030]
	</li>
	<li>
		Monitor may briefly flicker on waking from display sleep if DSR/DLDSR is enabled. [3592260]
	</li>
	<li>
		[GeForce RTX 4090] Watch Dogs 2 may display flickering when staring at the sky [3858016]
	</li>
	<li>
		Increase in DPC latency observed in Latencymon [3952556]
	</li>
	<li>
		Applying GeForce Experience Freestyle filters cause games to crash [4008945]
	</li>
</ul>

<p>
	 
</p>

<p>
	The Nvidia 532.03 Game Ready driver is available to download from the GeForce Experience app. Standalone download links can be found below. <a href="https://us.download.nvidia.com/Windows/532.03/532.03-win11-win10-release-notes.pdf" rel="external nofollow">Here are the release notes</a> (PDF).
</p>

<p>
	 
</p>

<p>
	<strong>Desktop GPUs:</strong>
</p>

<p>
	 
</p>

<p>
	GeForce Game Ready Driver Download: <a href="https://www.nvidia.com/download/driverResults.aspx/204969/en-us/" rel="external nofollow">Windows 11, 10 – DCH</a> [en-US version]
</p>

<p>
	 
</p>

<p>
	<strong>Notebook GPUs:</strong>
</p>

<p>
	 
</p>

<p>
	GeForce Game Ready Driver Download: <a href="https://www.nvidia.com/download/driverResults.aspx/204970/en-us/" rel="external nofollow">Windows 11, 10 – DCH</a> [en-US version]
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/nvidia-whql-53203-drivers-adds-rtx-4060-ti-support-and-brings-ai-model-optimizations/" rel="external nofollow">Nvidia WHQL 532.03 drivers adds RTX 4060 Ti support and brings AI model optimizations</a>
</p>

<p>
	 
</p>
<iframe allowfullscreen="" class="ipsEmbed_finishedLoading" data-controller="core.front.core.autosizeiframe" data-embedauthorid="56074" data-embedcontent="" data-embedid="embed7373213581" src="https://nsaneforums.com/topic/440172-nvidia-geforce-game-ready-driver-53203/?do=embed&amp;comment=1788235&amp;embedComment=1788235&amp;embedDo=findComment#comment-1788235" style="overflow: hidden; height: 334px; max-width: 502px;"></iframe>]]></description><guid isPermaLink="false">15827</guid><pubDate>Wed, 24 May 2023 18:27:48 +0000</pubDate></item><item><title>New Windows 11 File Explorer design gets teased by Microsoft during Build 2023</title><link>https://nsaneforums.com/news/software-news/new-windows-11-file-explorer-design-gets-teased-by-microsoft-during-build-2023-r15819/</link><description><![CDATA[<p>
	<img alt="1684888807_new-windows-file-explorer_sto" class="ipsImage" data-ratio="62.50" height="426" width="720" src="https://cdn.neowin.com/news/images/uploaded/2023/05/1684888807_new-windows-file-explorer_story.jpg">
</p>

<p>
	 
</p>

<p>
	Microsoft has had a very busy day. It made tons of official announcements during its<a href="https://www.neowin.net/news/tags/build_2023/" rel="external nofollow"> Build 2023 developers conference</a>. However, it managed to sneak in a reveal of something that it didn't talk about today: a new look for File Explorer in Windows 11.
</p>

<p>
	 
</p>

<p>
	The new design was shown, but not actually discussed, in a video that <a href="https://twitter.com/panos_panay/status/1661025667922931712" rel="external nofollow">was posted today on Twitter</a> by Microsoft's EVP and Chief Product Officer Panos Panay.
</p>

<p>
	 
</p>

<div class="ipsEmbeddedOther" contenteditable="false">
	<iframe allowfullscreen="" class="ipsEmbed_finishedLoading" data-controller="core.front.core.autosizeiframe" data-embedid="embed8170362797" src="https://nsaneforums.com/index.php?app=core&amp;module=system&amp;controller=embed&amp;url=https://twitter.com/panos_panay/status/1661025667922931712?ref_src=twsrc%255Etfw%257Ctwcamp%255Etweetembed%257Ctwterm%255E1661025667922931712%257Ctwgr%255E4685ac090402a37f90333b59cbf39f8a1dcd7886%257Ctwcon%255Es1_%26ref_url=https://www.neowin.net/news/new-windows-11-file-explorer-design-gets-teased-by-microsoft-during-build-2023/" style="overflow: hidden; height: 630px;"></iframe>
</div>

<p>
	The new <a href="https://www.neowin.net/news/first-look-at-the-upcoming-file-explorer-redesign-in-windows-11/" rel="external nofollow">design had already been leaked back in January</a> of 2023, but today was the first time Microsoft actually showed a brief clip of it in a sizzle real that was mainly to promote the <a href="https://www.neowin.net/news/microsoft-brings-ai-to-windows-11-with-windows-copilot-to-make-every-user-a-power-user/" rel="external nofollow">upcoming Windows Copilot feature</a>.
</p>

<p>
	 
</p>

<p>
	As <a href="https://www.windowscentral.com/software-apps/windows-11/microsoft-reveals-major-file-explorer-redesign-coming-soon-to-windows-11" rel="external nofollow">Windows Central</a> mentions, this new File Explorer refresh is designed to work with both mouse controls as well as touch screen interaction. including rounded interfaces. It will also make it tie in and mesh better with the rest of Windows 11's user interface.
</p>

<p>
	 
</p>

<p>
	The action buttons with File Explorer will be placed under its address bar with this new look, and both the address bar and the search bar will have design changes as well.
</p>

<p>
	 
</p>

<p>
	At the moment, Microsoft isn't really commenting officially about this important part of Windows 11's functionality, other than showing it for a couple of seconds in the video. We would imagine we will get more concrete info, and a longer video clip of File Explorer in action, sometime in the very near future.
</p>

<p>
	 
</p>

<p>
	What do you think about the File Explorer refresh for Windows 11? Let us know in the comments.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/new-windows-11-file-explorer-design-gets-teased-by-microsoft-during-build-2023/" rel="external nofollow">New Windows 11 File Explorer design gets teased by Microsoft during Build 2023</a>
</p>
]]></description><guid isPermaLink="false">15819</guid><pubDate>Wed, 24 May 2023 07:28:53 +0000</pubDate></item><item><title>Opening RAR files natively in Windows 11 is coming and people online are going crazy over it</title><link>https://nsaneforums.com/news/software-news/opening-rar-files-natively-in-windows-11-is-coming-and-people-online-are-going-crazy-over-it-r15818/</link><description><![CDATA[<p>
	One of the most popular archive file formats for decades has been RAR. Its name is an acronym for <strong>R</strong>oshal <strong>Ar</strong>chive because it was created 30 years ago by a Russian engineer named <a href="https://en.wikipedia.org/wiki/Eugene_Roshal" rel="external nofollow">Eugene Roshal</a>. He also created the popular WinRAR file archiver program two years later in 1995. It's been constantly updated ever since, <a href="https://www.neowin.net/software/winrar-622-beta-1/" rel="external nofollow">including a beta update just last week</a>.
</p>

<p>
	 
</p>

<p>
	Using WinRAR or similar programs was the only way to open RAR files in Windows, as Microsoft has never added native support for the format. That is going to change very soon.
</p>

<p>
	 
</p>

<p>
	As part of Microsoft's Build 2023 event, the company <a href="https://www.neowin.net/news/windows-11-gets-taskbar-ungrouping-native-rgb-controls-new-archive-formats-support-more/" rel="external nofollow">mentioned that Windows 11</a> would be adding support for opening more archive file formats. Included in the list was RAR. Microsoft stated it is adding this support because Windows 11 now uses the libarchive open-source project.
</p>

<p>
	 
</p>

<p>
	That mention of RAR support, as well as support for opening other file archive formats like 7-zip and gz lit up the internet with comments on Twitter like this:
</p>

<p>
	 
</p>

<div class="ipsEmbeddedOther" contenteditable="false">
	<iframe allowfullscreen="" class="ipsEmbed_finishedLoading" data-controller="core.front.core.autosizeiframe" data-embedid="embed7530763775" src="https://nsaneforums.com/index.php?app=core&amp;module=system&amp;controller=embed&amp;url=https://twitter.com/philippinfanger/status/1661046571679588353?ref_src=twsrc%255Etfw%257Ctwcamp%255Etweetembed%257Ctwterm%255E1661046571679588353%257Ctwgr%255Ee98880424dcdaadda13880c2743b3372a95244ee%257Ctwcon%255Es1_%26ref_url=https://www.neowin.net/news/opening-rar-files-natively-in-windows-11-is-coming-and-people-online-are-going-crazy-over-it/" style="overflow: hidden; height: 647px;"></iframe>
</div>

<div class="ipsEmbeddedOther" contenteditable="false">
	<iframe allowfullscreen="" class="ipsEmbed_finishedLoading" data-controller="core.front.core.autosizeiframe" data-embedid="embed6166060119" src="https://nsaneforums.com/index.php?app=core&amp;module=system&amp;controller=embed&amp;url=https://twitter.com/bosay831gaming/status/1661053549436977161?ref_src=twsrc%255Etfw%257Ctwcamp%255Etweetembed%257Ctwterm%255E1661053549436977161%257Ctwgr%255Ee98880424dcdaadda13880c2743b3372a95244ee%257Ctwcon%255Es1_%26ref_url=https://www.neowin.net/news/opening-rar-files-natively-in-windows-11-is-coming-and-people-online-are-going-crazy-over-it/" style="overflow: hidden; height: 623px;"></iframe>
</div>

<p>
	<a href="https://www.theverge.com/2023/5/23/23734625/microsoft-windows-11-rar-support-native" rel="external nofollow">The Verge</a> added that Microsoft said it should start adding support for these file formats in an upcoming Windows 11 preview build that should drop later this week.
</p>

<p>
	 
</p>

<p>
	While adding a way to natively open RAR files in Windows 11 is great, there doesn't seem to be a way for Microsoft's OS to compress files using RAR by itself. That means programs like WinRAR will likely still be needed for a while.
</p>

<p>
	 
</p>

<p>
	<em>Are you excited about RAR file support being added soon to Windows 11? Let us know in the comments. Also, be sure to check out <a href="https://www.neowin.net/news/tags/build_2023/" rel="external nofollow">other Build 2023 announcements here</a>.</em>
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/opening-rar-files-natively-in-windows-11-is-coming-and-people-online-are-going-crazy-over-it/" rel="external nofollow">Opening RAR files natively in Windows 11 is coming and people online are going crazy over it</a>
</p>
]]></description><guid isPermaLink="false">15818</guid><pubDate>Wed, 24 May 2023 07:27:03 +0000</pubDate></item></channel></rss>
