Today, I suddenly found a WISPTIS in my task manager. the EXE process has a high priority. If you do not know what it is, you can search for it online to find its full name: windows ink services platform tablet input subsystem. The input subsystem of the windows ink service WordPad platform is used by the Tablet PC. Does running on my computer affect the speed? Delete!
Delete method: Save the following content as a bat file
----------------------------------------
Rem -- UnRegister ms xp Tablet PC Ink Pen components
@ Echo off
Set sys32 = % SystemRoot %/System32
Set pfcfink = % CommonProgramFiles %/Microsoft Shared/INK
"% Sys32 %/WispTis.exe"/unregserver
"% Sys32 %/regsvr32.exe"/u/s "% sys32 %/inked. dll"
"% Sys32 %/regsvr32.exe"/u/s "% pfcfink %/inkobj. dll"
"% Sys32 %/regsvr32.exe"/u/s "% pfcfink %/inkdiv. dll"
"% Sys32 %/regsvr32.exe"/u/s "% pfcfink %/tpcps. dll"
Set pfcfink =
Set sys32 =
Pause
----------------------------------------