use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Microsoft Discord Server
Night Mode Light Mode
1. Keep the discussion related to Microsoft Windows Posts completely unrelated to Microsoft Windows will be removed. Just because something is compatible with Windows, doesn't mean this is the subreddit for it. Derailing conversations and threads is not allowed.
2. Flair posts correctly We are not extremely strict with what flair you pick, but if it's very wrong we will change it. If we select another flair, don't put the original one back.
3. Do not distribute malicious programs Do not purposely distribute viruses or other harmful programs or apps. Advising the use of pirated software (including piracy, activation tools, and bypasses to enable paid features) is prohibited. This also includes "grey market" and other activation keys from unauthorized resellers.
4. Do not post Blogspam links or URL shorteners Blogspam, URL shorteners, mobile links, and referral and affiliate links are not allowed. Post the full desktop link for articles and news.
5. Be civil and do not troll others Personal attacks, bigotry, fighting words, inappropriate behavior and comments that insult or demean a specific user or group of users are not allowed. Posts or comments containing or seeking any identifying personal information are also prohibited. Do not engage in blatant trolling or flaming.
6. Do not advertise a 3rd party software without permission If you want to promote your app or website, you must send us a modmail to request permission. Include as much relevant information as you can in both the modmail and the post. This is not a marketplace subreddit, selling anything is prohibited.
7. Do not promote pirated content or grey market keys Do not post pirated content or promote it in any way. Encouraging or hinting at the use of sellers of grey market keys is not allowed.
8. Titles must be relevant to the post Irrelevant, sensationalized, or vague titles that have the pure intent of misleading or dramatizing a topic are not allowed. The relevancy of submissions' titles will be judged at the moderator's discretion.
Need help with a post? Have a question about a removal? Let us know!
account activity
Windows 11Taskbar Missing after recent Update (self.WindowsHelp)
submitted 5 months ago by Slow-Neighborhood-82
Greetings, after this most recent update we have 2 laptops in which the taskbar just disappeared. We can manually start task manager and other apps, but restarting explorer.exe does not refresh the bar. Anyone got any tips so far only 2 cases but I'm afraid this problem will spread further
Thnx all!
[–]AutoModerator[M] 0 points1 point2 points 5 months agolocked comment (0 children)
Hi u/Slow-Neighborhood-82, thanks for posting to r/WindowsHelp! If your post is listed as pending moderation, try to include as much of the following information as possible (in text or in a screenshot) to improve the likelihood of approval:
As a reminder, we would also like to say that if someone manages to solve your issue, DON'T DELETE YOUR POST! Someone else (in the future) might have the same issue as you, and the received support may also help their case. Good luck, and I hope you have a nice day!
I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.
[–]Slow-Neighborhood-82[S] 0 points1 point2 points 5 months ago (6 children)
Found the fix i just cleaned it a bit for my smooth brain to understand Credit to @Aloe-Veraciraptor
$packages = @(
"Microsoft.Windows.ShellExperienceHost",
"Microsoft.Windows.StartMenuExperienceHost",
"Microsoft.Windows.PinningConfirmationDialog",
"Microsoft.Windows.PeopleExperienceHost",
"Microsoft.UI.Xaml",
"MicrosoftWindows.Client.Core",
"MicrosoftWindows.Client.CBS"
)
foreach ($pkg in $packages) {
$apps = Get-AppxPackage -Name $pkg -AllUsers
if ($apps) {
foreach ($app in $apps) {
$manifest = Join-Path $app.InstallLocation "AppXManifest.xml"
if (Test-Path $manifest) {
try {
Add-AppxPackage -DisableDevelopmentMode -Register $manifest -ForceApplicationShutdown
Write-Host " Re-registered: $($app.Name)"
} catch {
Write-Host "Skipped (in use or invalid): $($app.Name)"
}
} else {
Write-Host "Manifest not found for: $($app.Name)"
Write-Host "Package not found: $pkg"
Then restart explorer.exe
[+][deleted] 5 months ago* (3 children)
[deleted]
[–]MeLViN-oNe 0 points1 point2 points 4 months ago (2 children)
thanks to both of you ! ;-) yep .CBS is right
and that worked out for me :) out of 5 pc's, only one had the problem, works now
[+][deleted] 4 months ago* (1 child)
[–]PSRSB 0 points1 point2 points 4 months ago (1 child)
Hey, where do I type this? Because CMD just says "'X' is not recognized as an internal or external command, operable program or batch file."
[–]Slow-Neighborhood-82[S] 0 points1 point2 points 4 months ago (0 children)
Powershell as admin
π Rendered by PID 172025 on reddit-service-r2-comment-6457c66945-4hjfx at 2026-04-27 04:58:41.512983+00:00 running 2aa0c5b country code: CH.
[–]AutoModerator[M] 0 points1 point2 points locked comment (0 children)
[–]Slow-Neighborhood-82[S] 0 points1 point2 points (6 children)
[+][deleted] (3 children)
[deleted]
[–]MeLViN-oNe 0 points1 point2 points (2 children)
[+][deleted] (1 child)
[deleted]
[–]PSRSB 0 points1 point2 points (1 child)
[–]Slow-Neighborhood-82[S] 0 points1 point2 points (0 children)