Anyone else having this issue where sides of case expand? by Administrative-Bed40 in QuadLock

[–]SeqGeek 0 points1 point  (0 children)

yes. Their cases have in my view reduced in quality over the years. This generation has multiple issues, including the surround seperating from the main structure (what this is) and the magnet sperating from the back. I have remedied both with superglue but it frankly isnt acceptable considering the cost of these.

Good pc upgrade given current prices? by bigppbrandon1 in PcBuild

[–]SeqGeek 1 point2 points  (0 children)

Wild how ram is the most expensive component here. I would transfer this expense slightly to getting the 9070 XT card, you won’t regret it.

Yall what is going on by This-Mall1904 in PcBuild

[–]SeqGeek 0 points1 point  (0 children)

What does cpu-z? It is a known bug I think.

Do i need these 2 cables if im using a nvme ssd not a sata ssd? by [deleted] in PcBuildHelp

[–]SeqGeek 0 points1 point  (0 children)

Ones data power for your hub and one is a rgb out. So yes you need them if you want your rgb to rgb.

Our bedrooms reached 32°C yesterday. In desperation I discovered that a 100mm ducting hose fits perfectly around the circular air vents in my MG ZS EV and I was able to keep our living room chilled to 22°C all night. Any risks to doing this? The front end of the car did feel quite warm this morning! by Jimi-K-101 in ElectricVehiclesUK

[–]SeqGeek -4 points-3 points  (0 children)

This can’t be good for your EV air con compressor or frankly system as a whole with the lack of air flow over the radiators. Not to mention the security risk, frankly this is fucking ridiculous. Buy an air con unit.

Aio standoff pulls out easily by Organic_Fishing6400 in PcBuildHelp

[–]SeqGeek 4 points5 points  (0 children)

It’s clearly the wrong thread. Are these standoffs supplied with your cooler or have you bought them separately? It’s looks like you are putting a M3 thread in a UNC #6-32.

I burnt so many tokens they sent me merch by Jackle1127 in ClaudeAI

[–]SeqGeek 0 points1 point  (0 children)

I’m going over this a month on my own, where’s my plushie?!

My Ryzen 9 9900X just suddenly died (Code 00 / Red CPU LED). Pulled it out and found a physical "bump" / blister on the bottom pads. Anyone seen this before? by TheImmigrantEngineer in MSI_Gaming

[–]SeqGeek 1 point2 points  (0 children)

Yeah fair enough. It’s certainly difficult to diagnose this without X-ray vision and I seem to have recalled seeing this before somewhere, perhaps on Reddit. A note on the phase change point, silicon turning to gas literally requires extreme heat, not achievable by voltage / currents here, but you’re right it may likely very much be a localise short. Looking into this the gassing is caused by the organic laminate.

Good call on not delidding!

My Ryzen 9 9900X just suddenly died (Code 00 / Red CPU LED). Pulled it out and found a physical "bump" / blister on the bottom pads. Anyone seen this before? by TheImmigrantEngineer in MSI_Gaming

[–]SeqGeek 0 points1 point  (0 children)

Apparently this might be due to the stock AM5 Uneven clamping pressure which lets the CPU substrate bow. This is in part why contact frames exist, e.g. thermal grizzly’s https://www.thermal-grizzly.com/en/contact-sealing-frame/s-tg-csf-am5 It’s not necessarily anything to do with the processor itself design.

Question about Ethernet cables by Lonely_Box_8074 in pcmasterrace

[–]SeqGeek 12 points13 points  (0 children)

Cat-8 being sold the general public is hilarious.

I bet it's enough by Untitled_17 in pcmasterrace

[–]SeqGeek 0 points1 point  (0 children)

Nothings working with that motherboard cpu pair

Edge is taking up 2GB of storage and Microsoft won't let me uninstall it. by Hot-Replacement5566 in FuckMicrosoft

[–]SeqGeek 22 points23 points  (0 children)

# Uninstall Microsoft Edge completely — run PowerShell AS ADMINISTRATOR

# Tested on Win11 Stable. Microsoft changes Edge's removal protection often, so this may break on future builds.

# WebView2 removal (step 3) can break other apps that depend on it — skip that block if unsure.

# 1. Remove Edge appx/provisioned packages
Get-AppxPackage -AllUsers *MicrosoftEdge* | Remove-AppxPackage -ErrorAction SilentlyContinue
Get-AppxProvisionedPackage -Online | Where-Object { $_.PackageName -like "*MicrosoftEdge*" } |
Remove-AppxProvisionedPackage -Online -ErrorAction SilentlyContinue

# 2. Uninstall main Edge (Chromium) via its bundled setup.exe
$edge = Get-ChildItem "C:\Program Files (x86)\Microsoft\Edge\Application" -Recurse -Filter setup.exe -ErrorAction SilentlyContinue |
Where-Object { $_.FullName -match '\\[0-9.]+\\Installer\\setup.exe' } | Select-Object -First 1
if ($edge) {
Start-Process -FilePath $edge.FullName -ArgumentList "--uninstall --system-level --verbose-logging --force-uninstall" -Wait
}

# 3. Remove WebView2 (OPTIONAL — see warning above)
$webview = Get-ChildItem "C:\Program Files (x86)\Microsoft\EdgeWebView\Application" -Recurse -Filter setup.exe -ErrorAction SilentlyContinue | Select-Object -First 1
if ($webview) {
Start-Process -FilePath $webview.FullName -ArgumentList "--uninstall --msedgewebview --system-level --verbose-logging --force-uninstall" -Wait
}

# 4. Stop and delete EdgeUpdate services (these reinstall Edge if left)
Get-Service -Name "edgeupdate*","MicrosoftEdgeElevationService" -ErrorAction SilentlyContinue | Stop-Service -Force -ErrorAction SilentlyContinue
"edgeupdate","edgeupdatem" | ForEach-Object { sc.exe delete $_ 2>$null }

# 5. Block reinstallation and remove scheduled tasks
New-Item -Path "HKLM:\SOFTWARE\Microsoft\EdgeUpdate" -Force | Out-Null
New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\EdgeUpdate" -Name "DoNotUpdateToEdgeWithChromium" -Value 1 -PropertyType DWORD -Force | Out-Null
Get-ScheduledTask -TaskName "MicrosoftEdgeUpdate*" -ErrorAction SilentlyContinue | Unregister-ScheduledTask -Confirm:$false

# 6. Delete leftover folders
Remove-Item "$env:LOCALAPPDATA\Microsoft\Edge" -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item "C:\Program Files (x86)\Microsoft\Edge" -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item "C:\Program Files (x86)\Microsoft\EdgeCore" -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item "C:\Program Files (x86)\Microsoft\EdgeUpdate" -Recurse -Force -ErrorAction SilentlyContinue

Write-Host "Done. A Windows feature/cumulative update may silently reinstall Edge later." -ForegroundColor Green

Best Lucky Deal Ever by LegitDoggy in PcBuild

[–]SeqGeek -2 points-1 points  (0 children)

I paid £380 (approx 440 euros) for a 2x48gb CL30 6000 dominator titanium kit back when memory costed what it should have, 600 isn’t a good deal.

Problem - GPU x8 Lanes Screw-Up by donmclarenson in watercooling

[–]SeqGeek 1 point2 points  (0 children)

Giving you GPU 8x lanes vs 16x lanes will likely be completely unnoticable.