SADPTool System Error MSVCR120.dll

SADPTool
System Error
The code execution cannot proceed because MSVCR120.dll was not found. Reinstalling the program may fix this problem

download install

https://download.microsoft.com/download/C/C/2/CC2DF5F8-4454-44B4-802D-5EA68D086676/vcredist_x64.exehttps://download.microsoft.com/download/c/c/2/cc2df5f8-4454-44b4-802d-5ea68d086676/vcredist_x86.exe

win32 only x86.exe

win64 both file

Reinstall Mail Apps Windows 10 /11

powershell as admin

Get-AppxPackage –AllUsers

มองหา name: microsoft.windowscommunicationsapps แล้วคัดลอก PackageFullName เก็บไว้

เช่น PackageFullName : microsoft.windowscommunicationsapps_16005.11629.20316.0_x64__8wekyb3d8bbwe

จากนั้น Remove-AppxPackage ตามด้วย PackageFullName แล้ว Enter

cmd as admin

Service บน Windows ไม่ทำงาน Start Stop ก็ไม่ได้จาง

สมมุติ Remote Desktop Service ไม่ทำงาน เข้า Service กด Start Restart Stop ไม่ได้ จาง หรือ หายไป

เข้า Command Line พิมพ์

C:\Windows\system32>net start TermService (Enter) ระบบแสดง
The service is starting or stopping. Please try again later.

C:\Windows\system32>net stop TermService (Enter) ระบบแสดง
The service is starting or stopping. Please try again later.

ค้นหา Service

C:\Windows\system32>tasklist /svc | findstr /C:TermService(Enter) ระบบแสดง
svchost.exe 436 TermService

แสดงว่า TermService มีอยู่แต่ติดต่อไม่ได้ PID 436 ต้อง Kill process ทิ้ง

C:\Windows\system32>taskkill /F /PID 436 (Enter)
SUCCESS: The process with PID 436 has been terminated.

สั่ง Start ใหม่

C:\Windows\system32>net start TermService
The Remote Desktop Services service is starting.
The Remote Desktop Services service was started successfully.