Windows Latest Forums - Latest posts https://forums.windowslatest.com Latest posts Any news for WinX holdouts? Good to know! I’m currently running four systems at home with WinX and not eager to replace and relearn. The big disappointment so far is that TurboTax isn’t compatible with WinX this year. :frowning:

]]>
https://forums.windowslatest.com/t/any-news-for-winx-holdouts/1136#post_3 Mon, 02 Mar 2026 12:59:18 +0000 forums.windowslatest.com-post-4556
Any news for WinX holdouts? Your PC will get new certificates, don’t worry. Windows 10 remains supported.

]]>
https://forums.windowslatest.com/t/any-news-for-winx-holdouts/1136#post_2 Mon, 02 Mar 2026 12:26:34 +0000 forums.windowslatest.com-post-4555
Microsoft kills File Explorer Preview Pane, but why? my suggestion is please try LongPathTool. If You will use this path you benefited.

]]>
https://forums.windowslatest.com/t/microsoft-kills-file-explorer-preview-pane-but-why/1130#post_13 Tue, 17 Feb 2026 06:03:19 +0000 forums.windowslatest.com-post-4553
Any news for WinX holdouts? I just finished your article at https://www.windowslatest.com/2026/02/13/how-to-check-if-windows-11-has-applied-the-new-secure-boot-2023-certificates-replaces-secure-boot-2011/ and was wondering if MS will be offering any help for those of us who want to stick with Windows 10 as long as possible for convenience sake. At least one of my desktop models doesn’t admit to any ability to process the queries cited in the article, although at least one of my laptops had no problem with it. The older model was the problem.

]]>
https://forums.windowslatest.com/t/any-news-for-winx-holdouts/1136#post_1 Sat, 14 Feb 2026 23:57:59 +0000 forums.windowslatest.com-post-4552
Microsoft kills File Explorer Preview Pane, but why? @TechForceAdmin - Hey. I understand PowerShell can be complicated. I’m a PowerShell dev and I can try to help you.

But basics first. don’t run Unblock-File on the server. Your “Scans” share isn’t an Internet-downloaded file scenario, so there’s nothing to “unblock,” and doing it on the server won’t change what File Explorer thinks about a remote path.

Basically, Windows’ new behavior treats remote locations more strictly for previews. Mapped drives like G: (SMB/UNC) can be seen as Internet unless you mark the server/range as Local intranet. That’s why Preview is blocked even though there’s no MotW (MotW = inyternet downloaded files).

I recommend that you mark the file server as Local intranet (if you trust the server, it is safe thing to do):

  1. Press Win + R > inetcpl.cpl.

  2. Security tab > Local intranet > Sites.

  3. Check Automatically detect intranet network (and/or Include all network paths (UNCs)).

  4. Click Advanced… and add your server or IP range, e.g.:

    • \\fileserver (sometimes you must use the FQDN)
    • or 192.168.1.*

After changin, close all Explorer windows (or restart Windows) and reopen File Explorer.

I also have a POwershell script you can use if you don’t like the above approach (since you are not familiar with PowerShell, I’d recommend that you follow the above method):

$k = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Ranges\Range1"
New-Item $k -Force | Out-Null
New-ItemProperty $k -Name ":Range" -Value "192.168.1.0-192.168.1.255" -PropertyType String -Force | Out-Null
New-ItemProperty $k -Name "file" -Value 1 -PropertyType DWord -Force | Out-Null
  • Add a named host (if you use a DNS name/FQDN):
$host = "fileserver"   # change to your server name or FQDN
$k = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains\$host"
New-Item $k -Force | Out-Null
New-ItemProperty $k -Name "file" -Value 1 -PropertyType DWord -Force | Out-Null

(second potential workaround):

If you can’t change zones as I highlighted above, you need to copy copy to a local folder. (e.g., to Downloads\Scans) and preview there.

$src = "G:\Scan Folder"
$dst = Join-Path $HOME "Downloads\Scans"
robocopy $src $dst *.pdf /XO /R:0 /W:0

Preview works locally because there’s no “remote” classification., but I understand it defeats the purpose of quickly viewing files from the server in your File Explorer. So maybe, try changing the zones?

]]>
https://forums.windowslatest.com/t/microsoft-kills-file-explorer-preview-pane-but-why/1130#post_12 Fri, 14 Nov 2025 20:12:41 +0000 forums.windowslatest.com-post-4551
Microsoft kills File Explorer Preview Pane, but why? Similarly to “user2” I am not super familiar with PowerShell, but I was able to use your full article to fix the issue for a client’s Downloads folder. I could not, however, fix the issue for their shared “Scans Folder”, which is (I believe) a shared file folder stored on their G: drive/server. I tried several different things, including Unblock-File -Path “G:\Scan Folder\*.pdf”, but with no success. Would I have to run it on the server for it to work, and is that a bad idea? When viewing the file properties of a .pdf from that folder the “Unblock” checkbox isn’t even there, so I know that the nature of the folder is doing something to complicate the issue.

Any advice you can provide would be GREATLY appreciated!

]]>
https://forums.windowslatest.com/t/microsoft-kills-file-explorer-preview-pane-but-why/1130#post_11 Fri, 14 Nov 2025 19:43:47 +0000 forums.windowslatest.com-post-4550
Windows 11 right-click menu is a mess and worse than Windows 10 @gth

I think they still work.

Open the context menu and hold “Alt”

Is that what you want?

]]>
https://forums.windowslatest.com/t/windows-11-right-click-menu-is-a-mess-and-worse-than-windows-10/1132#post_3 Wed, 12 Nov 2025 23:16:10 +0000 forums.windowslatest.com-post-4548
Microsoft kills File Explorer Preview Pane, but why? Sorry, took me a while. I went ahead and added more details to our article:

Does it help?

To find user profile folder name, just open PowerShell and run echo $HOME

Still willing to help you out. Let me know your questions (we’re ALL beginners at some point!)

]]>
https://forums.windowslatest.com/t/microsoft-kills-file-explorer-preview-pane-but-why/1130#post_10 Wed, 12 Nov 2025 23:14:35 +0000 forums.windowslatest.com-post-4547
Edge mobile custom DNS Hello

Would please do me a favor?

I have opened a feedback on microsoft feedback portal for Edge mobile and asked them to add custom DNS feature.

If you agree to this feature please go to the link below and vote for it. Thank you

]]>
https://forums.windowslatest.com/t/edge-mobile-custom-dns/1135#post_1 Tue, 11 Nov 2025 08:49:12 +0000 forums.windowslatest.com-post-4546
Microsoft kills File Explorer Preview Pane, but why? First I want to thank you for walking me thru this, I’m sure you didn’t sign up to tutor a newbie like me! And if I take up too much of your time, it’s completely fine to cut me loose! :smiley:

Here’s what my users looks like, not sure which one to click

]]>
https://forums.windowslatest.com/t/microsoft-kills-file-explorer-preview-pane-but-why/1130#post_9 Fri, 07 Nov 2025 15:51:45 +0000 forums.windowslatest.com-post-4542
Windows 11 right-click menu is a mess and worse than Windows 10 My question is, what happened to the Accessibility shortcuts? I fly through context menus using keystrokes that don’t even seem to exist in the new style, so I have to revert to the win10 setting (which won’t be supported forever).

]]>
https://forums.windowslatest.com/t/windows-11-right-click-menu-is-a-mess-and-worse-than-windows-10/1132#post_2 Fri, 07 Nov 2025 13:25:46 +0000 forums.windowslatest.com-post-4541
Microsoft kills File Explorer Preview Pane, but why? Unblock-File -Path “C:\Users\mayan\downloads*.pdf”

In this case, mayan is my username.

You have to replace it with your username

Go to C drive

Open Users folder

You’ll see a folder name you will recognise

That’s your username.

If you still don’t get it, I am going to update the story with new instructions, and better solution than doing this.

Please wait few hours.

]]>
https://forums.windowslatest.com/t/microsoft-kills-file-explorer-preview-pane-but-why/1130#post_8 Fri, 07 Nov 2025 00:50:42 +0000 forums.windowslatest.com-post-4537
Microsoft kills File Explorer Preview Pane, but why?

This is what mine shows, it’s not the C:\…, it’s the first folder in my downloads, am I doing it wrong?

]]>
https://forums.windowslatest.com/t/microsoft-kills-file-explorer-preview-pane-but-why/1130#post_7 Thu, 06 Nov 2025 15:33:21 +0000 forums.windowslatest.com-post-4533
Microsoft kills File Explorer Preview Pane, but why? You get the directory path location like this:

]]>
https://forums.windowslatest.com/t/microsoft-kills-file-explorer-preview-pane-but-why/1130#post_6 Thu, 06 Nov 2025 15:24:55 +0000 forums.windowslatest.com-post-4532
Microsoft kills File Explorer Preview Pane, but why? I assume that’s where they need to be unlocked, as you can tell I’m new at this!

]]>
https://forums.windowslatest.com/t/microsoft-kills-file-explorer-preview-pane-but-why/1130#post_5 Thu, 06 Nov 2025 15:13:05 +0000 forums.windowslatest.com-post-4531
Microsoft kills File Explorer Preview Pane, but why? In file explorer preview pane, how do I share that with you?

]]>
https://forums.windowslatest.com/t/microsoft-kills-file-explorer-preview-pane-but-why/1130#post_4 Thu, 06 Nov 2025 15:12:33 +0000 forums.windowslatest.com-post-4529
Microsoft kills File Explorer Preview Pane, but why? where do you want to unlock your PDFs? if you can share the folder path, i can help.

]]>
https://forums.windowslatest.com/t/microsoft-kills-file-explorer-preview-pane-but-why/1130#post_3 Thu, 06 Nov 2025 14:46:14 +0000 forums.windowslatest.com-post-4528
Microsoft kills File Explorer Preview Pane, but why? Hi, I have NEVER done anything in a powershell but I’m desperate to unblock my PDFs! I got this far and as far as I know, it’s not working, can you help me?

]]>
https://forums.windowslatest.com/t/microsoft-kills-file-explorer-preview-pane-but-why/1130#post_2 Thu, 06 Nov 2025 14:29:16 +0000 forums.windowslatest.com-post-4527
KB5062553 Search Issues We have had the same issue on random machines for the past 2 months, seems to started for us in September windows updates. But still being caused by this latest round. Nothing that I can find seems to fix the problem

]]>
https://forums.windowslatest.com/t/kb5062553-search-issues/1110#post_4 Wed, 05 Nov 2025 15:22:04 +0000 forums.windowslatest.com-post-4522
Windows 10 21H2 IoT Enterprise LTSC - End of support? This has been confirmed as a known issue: Microsoft wrongly tells supported Windows 10 PCs they’re out of support, nudges Windows 11 and it has been fixed.

]]>
https://forums.windowslatest.com/t/windows-10-21h2-iot-enterprise-ltsc-end-of-support/1134#post_3 Tue, 04 Nov 2025 14:44:26 +0000 forums.windowslatest.com-post-4519
Windows 10 21H2 IoT Enterprise LTSC - End of support? Can you try checking again? Microsoft told me it’s a known issue and has now been fixed.

]]>
https://forums.windowslatest.com/t/windows-10-21h2-iot-enterprise-ltsc-end-of-support/1134#post_2 Tue, 04 Nov 2025 09:41:51 +0000 forums.windowslatest.com-post-4518
Windows 10 21H2 IoT Enterprise LTSC - End of support? I am running this edition of Windows, and when I check for updates, it indicates that Windows has reached the end of support, although official support ends on January 13, 2032. Any comment

?

]]>
https://forums.windowslatest.com/t/windows-10-21h2-iot-enterprise-ltsc-end-of-support/1134#post_1 Tue, 04 Nov 2025 05:37:46 +0000 forums.windowslatest.com-post-4517
Fire them immediately if they cause patch problems Microsoft does not care about Windows at this point. It has completely pivoted to AI. And all investments Windows is going to get will be for AI-related features.

]]>
https://forums.windowslatest.com/t/fire-them-immediately-if-they-cause-patch-problems/1133#post_2 Mon, 03 Nov 2025 10:20:32 +0000 forums.windowslatest.com-post-4515
Fire them immediately if they cause patch problems It seems like its time for Microsoft to start taking responsibility for the continuing Patch issues that we are encountering every month. Apparently there is no accountability for impacting so many customers big and small from what I see. The patch naming issue is a clueless management decision. The software problems are a team problem that needs correction. Is Windows 11 getting too big to manage?

]]>
https://forums.windowslatest.com/t/fire-them-immediately-if-they-cause-patch-problems/1133#post_1 Sun, 02 Nov 2025 23:50:41 +0000 forums.windowslatest.com-post-4513
Windows 11 right-click menu is a mess and worse than Windows 10 The right-click menu, also known as the context menu, on Windows 11 is a mess. I’m at a loss for words, but look at this:

Why do I have Notepad as an option when I right-click on an image? Why do we have so many options for the same task? Paint, Clipchamp, Photos. And ‘Ask Copilot’? While you can remove Ask Copilot from the context menu, it should have been an option in the Settings of the Copilot app.

I do remember that Microsoft admitted that the context menus from Windows 10 had issues, as they were too long. The whole point of the new context menu was to simplify it. What happened in recent Windows releases?

I can’t expect devs to do better when Microsoft has Notepad as an option in the context menu.

Microsoft can take notes from Quick Actions in Windows 11:

Just like how we can arrange or organize Quick Actions, perhaps there could be an option to do the same for the context menu?

What do you think?

]]>
https://forums.windowslatest.com/t/windows-11-right-click-menu-is-a-mess-and-worse-than-windows-10/1132#post_1 Sun, 02 Nov 2025 11:59:03 +0000 forums.windowslatest.com-post-4512
"Compare info for both files" button not working after recent Windows update Some testers told me that after they installed recent Windows updates, particularly KB5065789, the Compare info for both files button stopped working.

What is “Compare info for both files”?

Compare info for both files is a contextual conflict-resolution feature in the Windows File Explorer. The option shows up when you copy or move a file or multiple files to a destination that contains a file with the same name.

The feature allows you to manually compare the source file and the destination file before you want to replace the latter, skip moving or copying, or to keep them both.

The dialogue box also includes the “Replace the file in the destination” option, which you can choose if you do not want the file in the destination, and selecting it would, of course, delete the file. The “Skip this file” option would simply avoid copying or moving the source file to the destination folder.

But if you want to check the file properties to decide which one to keep, you’ll need the “Compare info for both files” feature.

When you click the “Compare info for both files” option while pasting a file into a destination folder that contains a file with the same name, a side-by-side comparison window opens, asking which files you want to keep.

There are check boxes that allow you to choose the files from the source folder or the destination folder, or both.

If you choose the file from the source folder, it will replace the file in the destination folder, and if you choose the check box with the Files already in the destination folder option, it will skip the Copy or Move action.

Selecting both the check boxes and clicking Continue will add the source file to the destination with a new name. It’s actually the same name with a “(n)” added at the end of the name, where “n” is the number of times the file has been copied or moved.

You can make an informed decision from the comparison window, as it shows the Date and Time when each file was created, and also has the File size as well. This proved very useful while I was copying and moving edited photos, which had similar names to the raw photos.

The window also shows previews of both files, but not all files are supported, and the previews for images are too small for my liking. Also, it’s in the legacy design with the white background, despite my system using dark more, but we expect that to change soon.

Windows 11 KB5065789 or newer updates broke the button for some users

In Build 26200.6725, or newer, “Compare info for both files” button does nothing. It won’t show the second pop-up that actually compares the two files.

There’s also a Feedback Hub post on the topic, and Microsoft is likely aware of it already.

But if you’re affected, try removing KB5065789 and directly installing Windows 11 October 2025 Update.

Do you have other issues after recent updates? Let me know in the comments below.

]]>
https://forums.windowslatest.com/t/compare-info-for-both-files-button-not-working-after-recent-windows-update/1131#post_1 Mon, 27 Oct 2025 14:45:37 +0000 forums.windowslatest.com-post-4482
Microsoft kills File Explorer Preview Pane, but why? You’re not alone if you see a security alert when previewing PDF or other documents/files in File Explorer: The file you are attempting to preview could harm your computer. If you trust the file and the source you received it from, open it to view its contents

When the October 2025 Update for Windows 10 (KB5066791) and Windows 11 (KB5066835) shipped, we noticed that File Explorer’s Preview Pane stopped working. This was very odd. I mean, you can still turn on Preview pane from the options menu (see the screenshot below), but it’ll not be able to preview downloaded files.

If you try to preview the files, let’s say, a PDF, it’ll display a security alert: The file you are attempting to preview could harm your computer. If you trust the file and the source you recieved it from, open it to view its contents.

See the screenshot below. I can no longer view the file I downloaded from an external source. In this case, I downloaded the file from SharePoint:

But what about the PDFs I created on my PC? They still load.

Turns out it’s NOT a known issue. But it’s a feature. Microsoft disabled the Preview pane in File Explorer for download files to limit potential security risks.

The reason behind this move is to stop possible leaks of NTLM credential hashes when previewing downloaded files. When Explorer tried to show a preview of a file, it could indirectly allow the system to send sensitive authentication data to remote servers.

MIcrosoft’s solution is to disable previews in Explorer. This will prevent the attack method.

You can turn off this security feature by modifying your registry, but I don’t recommend doing that. Instead, if you trust the folder where you save your downloaded files, you can just unblock it by running the following script in PowerShell:

 Unblock-File -Path "C:\Users\admin\Documents\*.pdf"

Let me know if you’ve a question. I’ve asked Microsoft for more details, but for now, this is the only workaround.

As for other issues in Windows 11 October 2025 Update, Microsoft confirmed LocalHost problems are fixed via a server-side patch. For Windows Recovery issues, we’ve a new emergency update (Windows 11 KB5070773).

Are you aware of other issues in the update?

]]>
https://forums.windowslatest.com/t/microsoft-kills-file-explorer-preview-pane-but-why/1130#post_1 Wed, 22 Oct 2025 04:37:40 +0000 forums.windowslatest.com-post-4438
Windows Latest forum reboot I’m bringing back the Windows Latest forum!

While it was not really offline, we never posted anything. This changes today. We’ll be posting on the forum, actively encouraging discussions, and perhaps… some news/how-to/interesting tidbits will now be exclusive to the forum.

We have also added the forum to the homepage, so you can now see the most recent discussion.

Also, the login process has now been updated. If you already had an account, you’ll now need to link it to the new process. You just need to enter the same username, and it should be good to go. But if you run into problems, send me a private message. I’ll look into it.

]]>
https://forums.windowslatest.com/t/windows-latest-forum-reboot/1129#post_1 Tue, 21 Oct 2025 11:40:25 +0000 forums.windowslatest.com-post-4433
How many of you are here?
Admin:

tips about Windows 11

Yes, here’s my tip: only ever install Windows 10 LTSC (it’s Volume License, Enterprise); because Windows 11 is too-convoluted - and filled with trash, like Appx Modules and all that. The direction which they have taken isn’t for me..:slight_smile:

EDIT: Everything’s a Service now, instead of neatly separate (little) apps and software, like things used to be, and so on and so forth

P.S. You know, how Microsoft is adamant about Permissions… security. Only problem is that it’s non-existent on the NTFS file system, doesn’t matter if the disk [partition] is MBR, GPT. If you mount it anywhere - such as a Linux system - files can be simply read, and that’s that; so, >everything< that they do is kinda retarded, meh ;$

EDIT: Even BitLocker can be [easily] defeated; ok, granted there is physical access to machine, but still. Aanyway
:slight_smile:

]]>
https://forums.windowslatest.com/t/how-many-of-you-are-here/1067#post_4 Mon, 06 Oct 2025 19:35:30 +0000 forums.windowslatest.com-post-4043
Display network speed on taskbar Seems neat, I’m usually using “Network Activity Indicator for Windows 7-10”

@

Network Activity Indicator for Windows 7-10 - IT Samples

]]>
https://forums.windowslatest.com/t/display-network-speed-on-taskbar/1071#post_2 Mon, 06 Oct 2025 19:31:46 +0000 forums.windowslatest.com-post-4042
Who can remember normal forum software?

Hi o/ guys! Remember normal forum software… such as phpBB, vBulletin, Invision -Community- right?

And, so, I’ve opened [Profile] Preferences here to configure whatever and this is what the “Interface” section is showing me; I’m just posting for kicks, because it’s amusing how I’d need to RTFM in order to [even try to] comprehend what these are:

Enable defer to mark topics unread

  • Dafuq does that mean?

Automatically unpin topics when I reach the bottom.

  • Yeah, ok; unpin, from where? Why?

Hide my public profile and presence features

  • Huh? The CIA’s trying to kill me? :slight_smile:

Show counts on browser icon

  • As opposed to showing it, somewhere (else)? What, which counts? Why, ffs? LOL

Background page title displays count of:

  • Ugh, background page?.. title? Whaa??

After a bookmark reminder notification is sent:

  • Um, fixing to mess with more of my options? xD TF, LOL!

Skip new user onboarding tips and badges

  • WHAT?! :o

Alright, cool! That’s it, not even going to try and talk about the “Tracking” section of Preferences as it is >entirely< unreadable… especially when compared to that other ^^ forum software, where everything is laid out nicely and perfectly understandable (as well as easily manageable)

]]>
https://forums.windowslatest.com/t/who-can-remember-normal-forum-software/1124#post_1 Mon, 06 Oct 2025 19:17:54 +0000 forums.windowslatest.com-post-4039
Windows file explorer lost "saveas" for photo saving I found a picture on Facebook I liked and tried saveing it but when I clicked file explorer it had onlty “all files” or “psp8.01” for options. When I tried either file format the picture disappeared - I have no idea where they went. The option is to use a screen clip app. Can anyone help me out please? Thanks.

]]>
https://forums.windowslatest.com/t/windows-file-explorer-lost-saveas-for-photo-saving/1116#post_1 Fri, 05 Sep 2025 16:28:18 +0000 forums.windowslatest.com-post-4029
Slow pop-up meny on start-meny when im about to shutdown my pc
Vividprofessional:

do you have KB5062553 installed? that is causing us some rather groovy issues atm

Yes i have KB5062553 installed, but i had this problem since i installed 24h2 back in late february early march. I think my solution is as @Mayank mention, a fresh install of Windows 11.

]]>
https://forums.windowslatest.com/t/slow-pop-up-meny-on-start-meny-when-im-about-to-shutdown-my-pc/1108#post_6 Thu, 31 Jul 2025 14:41:00 +0000 forums.windowslatest.com-post-4023
Slow pop-up meny on start-meny when im about to shutdown my pc right, strongly recommend reinstallilng Windows 11 24H2. The ISOs/Media Creation Tool or Installation Assistant now have June 2025 Patch, so it’s the best time to do it.

What you’re experiencing cannot be fixed without OS refresh. It’s a performance issue.

Or you can just try your luck and download KB5062660 - see if it helps. There was a bug in the May 2025 update that affected system stability. It’s now resolved in KB5062660.

If that doesn’t help, just refresh Windows. Worth your time. I’m also planning to do it this weekend :smiley:

]]>
https://forums.windowslatest.com/t/slow-pop-up-meny-on-start-meny-when-im-about-to-shutdown-my-pc/1108#post_5 Thu, 31 Jul 2025 10:03:29 +0000 forums.windowslatest.com-post-4022
KB5062553 Search Issues what have you tried so far?

Have you tried rebuilding the search index?

Have you tried using the Index Troubleshooter?

Also, is there any chance you’re using a script to block requests to Bing/Microsoft or anything?

]]>
https://forums.windowslatest.com/t/kb5062553-search-issues/1110#post_3 Thu, 31 Jul 2025 10:01:31 +0000 forums.windowslatest.com-post-4021
KB5062553 Search Issues This is interesting because the patch installed on your PC actually attempts to address the problem you’re seeing:

Fixed: This update enhances the reliability of Windows Search and resolves an issue that prevented users from typing in Windows Search in some cases.

To answer your questinn, Microsoft is not aware, and instead, they’ve confirmed the search issues that other people had are actually resolved in your update.

Unless you’ve an AI PC, the AI related privacy or firewall changes do not affect your installation.

]]>
https://forums.windowslatest.com/t/kb5062553-search-issues/1110#post_2 Thu, 31 Jul 2025 09:59:42 +0000 forums.windowslatest.com-post-4020
Slow pop-up meny on start-meny when im about to shutdown my pc do you have KB5062553 installed? that is causing us some rather groovy issues atm

]]>
https://forums.windowslatest.com/t/slow-pop-up-meny-on-start-meny-when-im-about-to-shutdown-my-pc/1108#post_4 Thu, 31 Jul 2025 08:43:13 +0000 forums.windowslatest.com-post-4019
KB5062553 Search Issues Hi all,

We are seeing some strange issues with Windows 11 24H2 and in particular KB5062553.
This has been set up as a new build over a number of machines, various Makes and Models. The only true common part is the fact that all the machines have Intel CPU’s, but again different generations and Office 365 installed.
We are seeing issues where if you type in the windows search on the task bar or the start menu it sits with a blank menu with a blue bar over the top as if it is searching but nothing at all ever comes up.
We have tried to clear the search via various methods, turning on/off advanced search etc, all machines are fully up to date (26.100.4770)
These machines seem to work find for a few hours/days and then this issue starts.
If we re-install the issue returns within a few hours or at the most a day.
We have tried local users, removing and adding local users, user levels (admin/user) as well as domain joined users (admin/user).
THE only way is to remove KB5062553, but as this is not removable a new Windows Image has been created.

Is MS aware of any issues or has anyone seen these issues out in the wild or is it just us?

Could something have changed around the AI Search which need additional Firewall Ports.

VP

]]>
https://forums.windowslatest.com/t/kb5062553-search-issues/1110#post_1 Thu, 31 Jul 2025 08:41:58 +0000 forums.windowslatest.com-post-4018
Slow pop-up meny on start-meny when im about to shutdown my pc My pc is supported and my speccs are as follow:

Asus Rog Strix B650E-F Gaming WIFI || Gigabyte GeForce RTX 4080 16GB Gaming OC || Amd Ryzen 7 7800X3D || Corsair 32GB DDR5 5200MHz CL40 Vengeance RGB Amd Expo || Samsung 990 PRO M.2 NVMe SSD 1TB & 2TB || ASUS ROG Strix Aura 850W.

Ive been thinking about reinstall windows 11 like you mention. Just need to find some time :grinning:

]]>
https://forums.windowslatest.com/t/slow-pop-up-meny-on-start-meny-when-im-about-to-shutdown-my-pc/1108#post_3 Wed, 30 Jul 2025 13:25:11 +0000 forums.windowslatest.com-post-4016
Slow pop-up meny on start-meny when im about to shutdown my pc what’s your specs like (makes me wonder if you’re using an unsupported PC?)

i dont have this issue, but i do an have issue where the Settings page (Home) loads slow, and sometimes it’s stuck on loading. I’ve a perfectly capable PC. What might work in your favour is clean install. use Media creation tool and reinstall Windows. Make sure you keep all files and settings option checked.

]]>
https://forums.windowslatest.com/t/slow-pop-up-meny-on-start-meny-when-im-about-to-shutdown-my-pc/1108#post_2 Tue, 29 Jul 2025 16:35:08 +0000 forums.windowslatest.com-post-4015
Slow pop-up meny on start-meny when im about to shutdown my pc When i installed 24H2 few month ago the pop-up meny on start-men started to behave slow when i want to shut pc down. What ive seen it only that pop-up thats behaving slowly. If i for what ever reason regrets to shut down my pc and come back later its behaving normal and shows pop-up meny as normal and fast. Its like explorer maybe need to load something in the background before showing the pop-up meny.

Does someone else have this issue, have you somehow fixed it to behave normal and fast? Fill me in :slight_smile:

Slow pop-up meny on start-meny

]]>
https://forums.windowslatest.com/t/slow-pop-up-meny-on-start-meny-when-im-about-to-shutdown-my-pc/1108#post_1 Mon, 28 Jul 2025 13:37:45 +0000 forums.windowslatest.com-post-4014
Task bar Ican not showing wifi date and time battery etc ican I am currently using Windows 11 Version 24H2 (OS Build 26100.1742) on my system. However, I am facing multiple issues with this version that are affecting my productivity and system stability. Despite several troubleshooting attempts, these problems remain unresolved.

Therefore, I would like to request your assistance in downgrading my system to Windows 11 Version 23H2 (OS Build 22631.5335), which was more stable and compatible with my workflow.

]]>
https://forums.windowslatest.com/t/task-bar-ican-not-showing-wifi-date-and-time-battery-etc-ican/1103#post_1 Sat, 28 Jun 2025 20:54:46 +0000 forums.windowslatest.com-post-3994
Microsoft Copilot image

]]>
https://forums.windowslatest.com/t/microsoft-copilot/1092#post_1 Thu, 08 May 2025 07:18:55 +0000 forums.windowslatest.com-post-2629
Access Android from Windows 11: Storage is shown but how about an external SD card? I don’t think it can access rhe external storage at this point unfortunately.

]]>
https://forums.windowslatest.com/t/access-android-from-windows-11-storage-is-shown-but-how-about-an-external-sd-card/1088#post_2 Mon, 05 May 2025 05:03:28 +0000 forums.windowslatest.com-post-2626
Access Android from Windows 11: Storage is shown but how about an external SD card? Subj,
I get access from Windows to my Android by Phone link and see an internal Storage only.

]]>
https://forums.windowslatest.com/t/access-android-from-windows-11-storage-is-shown-but-how-about-an-external-sd-card/1088#post_1 Wed, 30 Apr 2025 10:46:28 +0000 forums.windowslatest.com-post-2624
Windows 11 KB5051987 breaks File Explorer Thanx, already paused until early March.

I’ll check the optional updates next week, and try it. I can always go back (even though it takes several hours, sigh).

]]>
https://forums.windowslatest.com/t/windows-11-kb5051987-breaks-file-explorer/1073#post_3 Sun, 23 Feb 2025 14:59:12 +0000 forums.windowslatest.com-post-2608
Windows 11 KB5051987 breaks File Explorer I did forward the reports to Microsoft and haven’t heard back yet. I am not sure if they are aware of the reports, but my understanding is that it might get fixed in February’s optional update, shipping next week.

I suggest pausing updates for now.

]]>
https://forums.windowslatest.com/t/windows-11-kb5051987-breaks-file-explorer/1073#post_2 Sat, 22 Feb 2025 21:57:36 +0000 forums.windowslatest.com-post-2607
Windows 11 KB5051987 breaks File Explorer Just confirming that I have this same issue, but only on 1 of my machines (I have 8 machines in my home network). The machine in question is a Geekom NUC12 Serpent Canyon, with a 12th Gen Intel(R) Core™ i7-12700H 2.30 GHz processor, 32GB Ram, and an Intel Arc A770M GPU. When the problem happened, I rolled the system back (using Veeam’s Bare Metal Recovery) to the last save before the upgrade, since I could find no way to uninstall the update!! Currently it’s running Windows 11 Pro 24H2 Build Number 26100.3037.

I can’t find any reliable information about this problem anywhere, and have no idea what Microsoft plans to do about it (if anything). Hoping Windows Latest can help!

]]>
https://forums.windowslatest.com/t/windows-11-kb5051987-breaks-file-explorer/1073#post_1 Sun, 16 Feb 2025 15:52:40 +0000 forums.windowslatest.com-post-2605
Display network speed on taskbar Hello

There is a simple and useful tool for windows 10/11 that shows network speed and cpu/gpu temprature.
Screenshot 2025-02-12 165059

Give it a try:

I hope microsoft create a widget for taskbar to show network speed like this app.

]]>
https://forums.windowslatest.com/t/display-network-speed-on-taskbar/1071#post_1 Wed, 12 Feb 2025 13:17:11 +0000 forums.windowslatest.com-post-2603
How many of you are here? I’ve been here almost since the forum opened, I’d like you to post here things that aren’t in WL, I believe that would be interesting news that would stimulate discussion among members. A newsletter would be a welcome addition to the forum.

]]>
https://forums.windowslatest.com/t/how-many-of-you-are-here/1067#post_3 Thu, 09 Jan 2025 11:22:03 +0000 forums.windowslatest.com-post-2599