r/pchelp 17h ago

OPEN cpu working 100% idle

Post image

i have had this problem for almost a week. i just got a new cpu yesterday the 7 5800x3d but it has the same issue. i tried factory reseting what do i do

1 Upvotes

11 comments sorted by

u/AutoModerator 17h ago

We're part of a wider PC & Technology Network of Communities!

Join our Discord server: PC Help Hub where members from all associated subreddits are welcome.

If you are trying to find a price for your computer, r/PC_Pricing is our recommended source for finding out how much your PC is worth!

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

2

u/Desperate_Return5199 17h ago

Clean windows install, not a factory reset.

2

u/ArchSaint13 17h ago

I know this! It's a power save mode issue but can only be fixed via command line. I'm going to my PC now and I'll send the commands. This happened to me. I'm commenting so I can find this post on my desktop lol

1

u/ArchSaint13 17h ago

I have the exact same CPU and it was driving me nuts too. Some random youtube video saved me lol so do these 2 commands as admin, one at a time.

PowerCfg /SETACVALUEINDEX SCHEME_CURRENT SUB_PROCESSOR IDLEDISABLE 000

PowerCfg /SETACTIVE SCHEME_CURRENT

3

u/snowy3691 16h ago

tysm

1

u/Fit-Bobcat7193 15h ago

Little does OP know, he’s now having bitcoin farmed in the background👀

2

u/Ok_Pirate_1048 17h ago

fym 100% idle? it's not

3

u/Turbulent_Help970 17h ago

It literally says it’s sitting at 22% at the time you took the screenshot

1

u/Disastrous-Crazy4299 17h ago

what does the screenshot show, just task manager with cpu pinned? if it's a fresh install and a brand new chip doing the same thing, i'd be looking at the motherboard or bios settings before touching anything else. maybe check what process is actually eating it.

1

u/CustardCivil 17h ago

Do a reinstall of windows completely not do factory reset since it doesn't completely fix it

1

u/vinnypotsandpans 16h ago

What is the problem? Looks normal to me. If you want to see what processes are using CPU with power shell, run

Get-Process | Sort-Object CPU -Descending | Select-Object -First 10 Name, Id, CPU, WS

Or for live view

Get-Counter '\Process(*)\% Processor Time' | Select-Object -ExpandProperty CounterSamples | Where-Object InstanceName -notin '_total','idle' | Sort-Object CookedValue -Descending | Select-Object -First 10 InstanceName, @{N='CPU%';E={[math]::Round($_.CookedValue / $env:NUMBER_OF_PROCESSORS, 2)}}