Important
I decided to create this note as quick ref in case anyone else needs it; It's a simple fix, but I didn't find any docs with specifics on how to fix notepad missing dlls.
Go to: dll.me and download the following dlls:
Extract each file and
- copy to
C:\Windows\System32(if your windows is 64-bit) - copy to
C:\Windows\SysWOW64(if your windows is 32-bit)
This solution from answer from Reddit worked for @LiuJiewenTT
- Win + R
- Type
regedit - Delete notepad at
Computer\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\App Paths
If you prefer, you can run this Powershell command:
Remove-Item -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\App Paths\notepad.exe" -Force
Sadly, it seems that there are some other problems blocking my notepad and mspaint. I copied those dlls into the directories and I saw insane result in eventvwr, which is telling me that kernelbase.dll and ucrtbase.dll ran into errors. Anyway, this gist really helped me a lot. Thank you.