Chipmunk
490d319ebe
README is copied from the WT1000 repo, but the recovery wim link was removed, as I couldn't find one on the DL801W. The tablets are nearly the same, so I don't know if it's worth making two repos but whatever
21 lines
835 B
Markdown
21 lines
835 B
Markdown
# wt1000-drivers
|
|
|
|
This repository contains drivers for the KMS WT1000 tablet. This tablet is somewhat obscure, and I couldn't find the drivers anywhere. The drivers in this repository were taken from the recovery partition.
|
|
|
|
# Installation
|
|
|
|
First of all, run command prompt as administrator, and navigate to the `drivers` folder
|
|
|
|
For versions of Windows prior to Windows 10, run
|
|
```cmd
|
|
for /d %i in (*) do pnputil -i -a %i\*.inf
|
|
```
|
|
|
|
For Windows 10 and newer, run
|
|
```cmd
|
|
for /d %i in (*) do pnputil /add-driver %i\*.inf /install
|
|
```
|
|
|
|
You will be asked to allow for the installation of drivers multiple times, just allow it each time.
|
|
|
|
This will install all drivers, however, touchscreen firmware will be missing, and as such, touch input won't work. To fix this, simply copy the `SileadTouch.fw` file to `C:\Windows\System32\drivers`.
|