So I created a .bat file with the following for... reasons... and ran it
@echo off
taskkill /f /im explorer.exe
start explorer.exe
exit
As a result now whenever I startup my PC there is a black screen with no GUI at startup along with command prompt, so I'm annoyingly having to type in explorer.exe every time... Anything to reverse this stupid loop that I created?
@echo off
taskkill /f /im explorer.exe
start explorer.exe
exit
As a result now whenever I startup my PC there is a black screen with no GUI at startup along with command prompt, so I'm annoyingly having to type in explorer.exe every time... Anything to reverse this stupid loop that I created?