Hi all!
I have Genius M609 tablet. And when it’s unplugged I get same annoying message “Win Tab Services not available”. I’ve found that problem is WINTAB32.DLL file in my case. It affects pressure sensitivity when tablet is plugged in. So don’t forget to repeat my workaround to use sensitivity with your tablet.
Here is my solution
Create empty TXT file, paste following text and then rename it to BAT.
echo off
if exist c:\Windows\System32\WINTAB32.DLL.BAK (
goto bak
) else (
goto dll
)
:bak
move c:\Windows\System32\WINTAB32.DLL.BAK c:\Windows\System32\WINTAB32.DLL
cls
echo.
echo renaming BAK to DLL
echo.
echo.
goto finish
:dll
move c:\Windows\System32\WINTAB32.DLL c:\Windows\System32\WINTAB32.DLL.BAK
cls
echo.
echo renaming DLL to BAK
echo.
echo.
goto finish
:finish
pause
Double click on this file renames WINTAB32.DLL to WINTAB32.DLL.BAK and error is gone. When you plug tablet in, simply run BAT file again.
That’s all
Maybe it turns out useful