This was the most helpful advice
Open device manager, Click on human interface devices to expand it and it stop and restart this service: Intel(R) Precise Touch Device
now if someone has a quick Power Shell script for this we are good to go until MSFT fixes it for real.
Thank you
Sean
Here is a quick powershell script
if (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { Start-Process powershell.exe "-NoProfile -ExecutionPolicy Bypass
-File "$PSCommandPath"" -Verb RunAs; exit }
Get-PnpDevice| Where-Object {$_.friendlyname -like "Intel(R) Precise Touch Device"} | Disable-PnpDevice -Confirm:$false
sleep 4
Get-PnpDevice| Where-Object {$_.friendlyname -like "Intel(R) Precise Touch Device"} | Enable-PnpDevice -Confirm:$false
Now this can be automated using task scheduler by letting this code run everytime the PC wakes up. Also if you want to run if in task scheduler you will need to do the following command to allow scripts to be run
run as administrator and run: Set-ExecutionPolicy RemoteSigned
and answer Yes to All
or you can just right click and run this everytime you notice touch is not working
One last thing. You need to save this in a text file with a .ps1 extension