For PenTablet_505-7 click the exe, then accept setup to start the installation.
The files will extract to %USERPROFILE%\local settings\temp\1\WZSE0.TMP
Copy this content to your installation point.
Run Setup.exe /S to invoke silent installation.
The Wacom tablet driver has some issues when the user "Application Data" folder is redirected to a network drive. The user is confronted with a "conflicting tablet driver versions" error when opening the "Tablet Configuration tool". This simply means the driver has some issues.
The problem is that Wacom uses a system service and two user processes to support the tablet. All settings are stored in the Application data folder of the user but the system service wants to write data there. This imposes no problems when the Application Data folder is stored on the local machine, but when it's stored on a network drive the SYSTEM user has no rights to the folder.
To solve this problem we created a script in Allusers\Start menu\Startup that creates the %APPDATA%\WTablet folder and sets Everyone full access rights on it:
' Create folder:
Set objFSO = CreateObject("Scripting.FileSystemObject")
If objFSO.FolderExists(strDirectory) Then
' The directory already exists
Else
' Create folder:
Set objFolder = objFSO.CreateFolder(strDirectory)
' set ACL:
objShell.run(strCaclsCmd)
End If
On a first login of a user on the machine this script does it's magic. The tablet works the second time the user logs in.
This website uses cookies.
By continuing to use this site and/or clicking the "Accept" button you are providing consent
Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our
websites or when you do business with us. For more information about our
Privacy Policy and our data protection
efforts, please visit
GDPR-HQ