NuVision Split 11 Touchscreen Drivers - Yes, you finally found what you were looking for

M

MasterChaoren

Hi, so I recently obtained the Nuvision Split 11 and learned Nuvision does not properly support their devices after I had already formatted and installed windows 10 version 1909. If you visit NuVision's download page now, the drivers download for the Split 11 and other device are dead. I did did download the OS restore (Six hours to download if you do not pay the hosting site for continuous fast downloading ), NuVison provided was not a bootable version of it so I had to make one. I was able to restore the Spit 11, but the restore they provided has errors. Once I had windows and the drivers installed from the restore I ran a Powershell command to backup all of the driver "Export-WindowsDriver -Online -Destination D:\Drivers" - You have to run Powershell in administrators mode. Once I had the drivers backed up I created a windows 10 installation of Version 1909 the latest release as of 3/15/2020 when I made the Windows 10 iso. I integrated the drives so they would work during the install, and would install automatically when windows 10 installed. Additionally; all updates as of 3/15/2020 were slipstreamed into the distribution using NTLite (NTLite). I sent the links to the extracted drivers and the Windows 10 distribution to NuVision Support, but they still did not download my provided drivers and Windows 10 iso to make available to everyone.



If you need to install your drivers for windows 10, or you would like to do a fresh install of Windows 10 Version 1909, you are welcome to visit my Google Drive and download them. I ask you please help me help others with the NuVision Split 11 by providing a link to this page or my google driver for other to download since it seams NuVision does not really care to. I have also provided instructions on how to use the iso if you have never done it before.



With the exception of Split 11 Drivers and Windows 10 Updates integrated, the windows 10 ISO is exactly as Microsoft Provides it. You will not need a CD-Key as it is

integrated by NuVision in the bios and windows will just load it automatically from there. other than that it is a normal Windows 10 installation.








I already did the below for the "NuVision_(Split11)_Windows10 _(Version1909)_English_x64.iso" I only provided it if you ever need it and did not l know about it.





If you would like to ever add your drivers to the install process for a Windows 10 installation and know about DISM, you can integrate your windows drivers into the boot.wim for the Windows PE installer. To add the drivers to the final installation, you must use NTLite. to use DISM, you need to install Microsoft's ADK Setup utility first.





To integrate your driver's for the Windows PE environment:

1.) Install Microsoft's ADK Setup Utility first. "https://docs.microsoft.com/en-us/win...ed/adk-install"

2.) Create a folder not in you C root, but another drive if you have one.

3.) Copy the boot.wim from the installation iso to your new folder, you can find it in \sources\boot.wim

3a.) you can use WinRaR to extract the iso to a folder, or just copy it form the open iso in PowerISO

4.) Make a batch file in your directory you created and copied the boot.wim to and paste below code.

4a.) You can open notepad paste the below code into it, select the option all files, not txt and add .bat to the end. and save

4b.) on this line "DISM /mount-wim /wimfile:%WimFile% /index:1 /mountdir:%MountDir%" index:1, you need to set this to your index, most of the time it is 1

4c.) This command in administrator mode will list available indexes "DISM /Get-ImageInfo /imagefile:\"your boot.wim directory"\boot.wim"

5.) if you open your folder with your batch file and boot.wim, just right click on the batch file and select run as administrator.

the batch will do everything for you.







DISM Batch script needs to be run as administrator:



@echo off





SET WimFile="%~dp0boot.wim"

SET MountDir="%~dp0MNT"

SET DriverDir="%~dp0Drivers"





ECHO Boot.wim File:

ECHO %WimFile%





ECHO Making Mount Directory "MNT":

IF NOT EXIST %MountDir% mkdir %MountDir%

ECHO %MountDir%





ECHO Driver Directory:

ECHO %DriverDir%





DISM /get-wiminfo /wimfile:%WimFile%





DISM /mount-wim /wimfile:%WimFile% /index:1 /mountdir:%MountDir%





DISM /Image:%MountDir% /Add-Driver /Driver:%DriverDir% /recurse





DISM /image:%MountDir% /get-drivers





DISM /unmount-wim /mountdir:%MountDir% /commit





ECHO Removing Mount Directory

rmdir %MountDir%





PAUSE









Exit





I am hopeful you can find this if you need it...

Continue reading...
 
Back
Top Bottom