- Aug 22, 2013
- 956
- 5,103
- 1,869
I have this process Cross Device resume which resumes after every logon and causes cpu hikes. I tried every possible steps mentioned here. But the process restarts every time. I suspect its a new nagging feature bug of Microsoft. I have no other way except to kill the task every time after starting my system. So my work around is to create a bat file call it via a vb script to run it discretely using task scheduler after 3 minutes on every restart. Does any one else faces this issue? Does anyone have anything better to suggest?
These are my scripts.
1. taskkill.bat
These are my scripts.
1. taskkill.bat
2. Vb scriptu/echo off
taskkill /f /im "CrossDeviceResume.exe"
exit
Set WShell = CreateObject("WScript.Shell")
WShell.Run """C:\Killer\KILLER.bat""", 0, False
