Windows 10 - Command prompt closes immediately after opening

0

0

Whenever I try to open CMD it automatically closes immediately.

I'currently using the newest Insider Preview, but this problem already existed before I updated.

I tried to use sfc /scannow in Powershell but Windows didn't find any problem. I run adwcleaner & multiple antivirus Programms and they didn't find anything.

What could be the Problem?

CMD Closes - GIF

Broken Lumber

Posted 2018-07-07T19:28:44.653

Reputation: 1

Question was closed 2018-07-07T20:08:38.527

1What about running cmd.exe or better C:\Windows\System32\cmd.exe ? It looks like there is either a batch running or an autorun. – LotPings – 2018-07-07T19:43:19.800

@LotPings it does the exact same thin when i run it directly from C:\Windows\System32\cmd.exe – Broken Lumber – 2018-07-07T19:49:24.507

To check for an autorun open powershell and enter the command Get-Item "HKCU:Software\Microsoft\Command Processor"|Get-ItemProperty – LotPings – 2018-07-07T19:53:34.677

@LotPings Okay that seems to be the problem! There is some sketchy "Soundmixer.exe" stuff. I think thats some virus i had some Time ago? How can i remove this from cmd? – Broken Lumber – 2018-07-07T20:12:53.237

Maybe you need to run this elevated Get-ItemProperty -Path "HKCU:Software\Microsoft\Command Processor" -Name "Autorun"|remove-item -force – LotPings – 2018-07-07T20:15:47.020

1@LotPings That's it, it worked! Everythings fine now, thank you so much! – Broken Lumber – 2018-07-07T20:33:19.233

No answers