this post was submitted on 13 Feb 2025
558 points (99.3% liked)

PC Gaming

9354 readers
702 users here now

For PC gaming news and discussion. PCGamingWiki

Rules:

  1. Be Respectful.
  2. No Spam or Porn.
  3. No Advertising.
  4. No Memes.
  5. No Tech Support.
  6. No questions about buying/building computers.
  7. No game suggestions, friend requests, surveys, or begging.
  8. No Let's Plays, streams, highlight reels/montages, random videos or shorts.
  9. No off-topic posts/comments, within reason.
  10. Use the original source, no clickbait titles, no duplicates. (Submissions should be from the original source if possible, unless from paywalled or non-english sources. If the title is clickbait or lacks context you may lightly edit the title.)

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] stopforgettingit 10 points 23 hours ago* (last edited 23 hours ago) (8 children)

I had to install Win 11 on my work computer and it is still total dogshit. One example - The search from the Start menu never works so you have to pin every app to start or go through the whole app list to find the one you want. Its been like this for a year at least. Things, like my speakers, just randomly stop working and I have to restart to get them to work again.

[–] [email protected] 2 points 21 hours ago (2 children)

Not that you should have to, but there are a lot of ways to fix the most annoying issues. Usually reg edits, better drivers and Powershell scripts.

Openshell makes start at least usable: https://github.com/Open-Shell/Open-Shell-Menu

Am going through this on our corp PCs.

[–] stopforgettingit 3 points 20 hours ago (1 children)

Lol, I remember using this to fix Win 8 before they added the start menu button back. I might have to set it up again.

[–] [email protected] 3 points 20 hours ago* (last edited 20 hours ago)

Does the job & will let you pare down the menu to the essentials, move start position etc. Can also be deployed and configured by GPO, which has been a godsend.

For the issue that you can no longer tell Windows to show all icons in the system tray, you can manually drag them out of the overflow into the visible part - or slap this into a powershell script and have it run at logon to do so automatically:

$Name = 'IsPromoted'
$Value = '1'
Get-ChildItem -path $RegistryPath -Recurse | ForEach-Object {New-ItemProperty -Path $_.PSPath -Name $Name -Value $Value -PropertyType DWORD -Force }

For the right-click menu being shit, hold shift before clicking, or put this one-liner into an adminstrative command prompt for a longer term fix. Restart explorer or the PC as a whole to apply afterwards:

reg.exe add "HKCU\Software\Classes\CLSID{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve

Snappy Driver Origin is great for obtaining up to date drivers. I've also had good luck pasting the hardware ID into search with site:driveridentifier.com to snag better drivers. IDs can be grabbed from device manager, under the details tab for the device properties. Example.

load more comments (5 replies)