- Title: Irulu Walknbook W1901
- Listed: July, 2019
- Last modified: 08/10/2019 11:47 am
- Version: ROM Win 10
You must be logged for ROM download.
7286 total views, 2 today
DESCRIPTION
ROM Tablet Irulu Walknbook W1901 – ROM Win 10
ROM Official Irulu Walknbook W1901 version:
ROM 1 – Irulu ZDI1601052E Win10 OS_20160721
ROM 2 – Irulu W1901 JZH1506231A OS_20160302
ROM 3 – Irulu W1901 XSL1509291A Win10 OS_20160317
Language support: Multilang
Install ROM :
install with "Main cmd"
| "info cmd" | SelectShow> |
|---|---|
@echo off
:: Version=11.0.1.3 :: Date=2015-08-13 :: :: For WIndows 10 :: Add Flash BIOS / Single OS and Dual OS :: Remove flash FFU :: Add Winre.wim :: Add TEST_TOOL :: Add Recovery :: Recovery :: Flash BIOS single os :: Remove Recovery
@rem This script is called by x:WindowsSystem32Startnet.cmd – WinPE @echo. @echo. @rem ******************************************************************* @rem FLASH_BIOS=1 Auto flash BIOS / FLASH_BIOS=0 Do not auto flash BIOS @rem ******************************************************************* @echo. @echo.
set FLASH_BIOS=0
@echo. @echo Running Intel Optimization powercfg for improved imaging times @echo. @echo call powercfg /s 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c call powercfg /s 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c @echo. @echo. @echo. @rem ***************************************************************** @rem List all the disks, then search the volumes of each one to see @rem which disks may have "Winpe" in the label. We will ignore that @rem disk and use the first disk without the Winpe label that we find. @rem ***************************************************************** @echo.>x:listdisk.txt @echo list disk>>x:listdisk.txt @echo exit>>x:listdisk.txt echo x:listdisk.txt @echo call diskpart /s x:listdisk.txt call diskpart /s x:listdisk.txt>x:Disks.txt @echo. @rem Set Disk equal to blank to start set disk= @echo. @rem @rem This line will write a diskpart script to select the disk and detail it's contents. @rem We use this output to find a disk that does NOT have Winpe as the volume label. @rem That disk will have the OS installed to it. This way you can exclude USB from diskpart. @rem @rem This works around the issue where the USB key is sometimes enumerated as disk 0 and the @rem SSD is disk 1. @rem for /f "skip=8 tokens=2" %%A in (x:Disks.txt) do ( @echo sel disk %%A>x:Par.txt @echo det disk>>x:Par.txt @echo exit>>x:Par.txt if NOT "%%A"=="DiskPart…" call :ListPar %%A ) if "%Disk%"=="" echo No disk found without a volume label of "Winpe"&& set disk=0 @echo Using Disk "%Disk%" @echo. @echo. @echo ***************************************************************** @echo Checkup SingleOS or DualOS or whether exist windows partiton @echo ***************************************************************** @rem create diskpart script for search windows partitions from emmc disk @echo.>x:ListPar.txt @echo select disk "%Disk%" >>x:ListPar.txt @echo list partition >>x:ListPar.txt @echo exit >>x:ListPar.txt @echo. @rem run diskpart script diskpart /s x:ListPar.txt >x:eMMCPar.txt @echo. @rem SingleOS / DualOS switch find "Partition 10" x:eMMCPar.txt >nul if %ERRORLEVEL% NEQ 0 Goto :SingleOS @rem ensure it's DualOS,and check whether exist windows partition,if not:create the new windows partition find "Partition 16" x:eMMCPar.txt >nul if %ERRORLEVEL% NEQ 0 Goto : DualOS @echo. Delete windows partition… @echo. @rem create diskpart script, the partitions which will be deleted @echo. >x:WinPar.txt @echo select disk "%Disk%">>x:WinPar.txt for /f "skip=24 tokens=2" %%i in ('type x:eMMCPar.txt ^| find /v "DiskPart"') do ( @echo select Partition %%i>>x:WinPar.txt @echo delete Partition override>>x:WinPar.txt ) @echo exit>>x:WinPar.txt type x:WinPar.txt @echo. @echo diskpart /s x:WinPar.txt diskpart /s x:WinPar.txt Goto : DualOS
:SingleOS @echo. @echo ***************************************************************** @echo Write the diskpart script now that we know what disk to use @echo ***************************************************************** @echo.>x:winpart.txt @echo select disk "%Disk%">>x:winpart.txt @echo clean>>x:winpart.txt @echo convert gpt>>x:winpart.txt @echo create partition efi size=100>>x:winpart.txt @echo format quick fs=fat32 label="System">>x:winpart.txt @echo assign letter="S">>x:winpart.txt @echo create partition msr size=128>>x:winpart.txt @echo create partition primary>>x:winpart.txt @echo format quick fs=ntfs label="Windows">>x:winpart.txt @echo assign letter="W">>x:winpart.txt @echo shrink desired=450>>x:winpart.txt @echo create partition primary>>x:winpart.txt @echo format quick fs=ntfs label="Recovery">>x:winpart.txt @echo assign letter="R">>x:winpart.txt @echo set id="de94bba4-06d1-4d40-a16a-bfd50179d6ac">>x:winpart.txt @echo gpt attributes=0×8000000000000001>>x:winpart.txt @echo exit>>x:WinPart.txt
@echo Winpart.txt now contains….. @echo. type x:winpart.txt @echo. @echo. @echo ***************************************************************** @echo Setting up the partition table @echo ***************************************************************** @echo call diskpart /s x:winpart.txt diskpart /s x:winpart.txt @echo. @echo. @echo ***************************************************************** @rem Map drive letter for Install.wim @echo ***************************************************************** @echo.>x:ListVol.txt @echo List volume>>x:ListVol.txt @echo exit>>x:ListVol.txt @echo call diskpart /s x:ListVol.txt call diskpart /s x:ListVol.txt>x:Output.txt @echo. @echo. @rem Go through each drive letter, looking for the imagesInstall.txt file for /f "skip=8 tokens=3" %%A in (x:Output.txt) do ( if exist %%A:imagesinstall.txt set InstallPath=%%A:images&& echo "Found device with images folder and install.txt file" if exist %%A:images set InstallPath=%%A:images&& echo "Found device with images folder" ) @echo. @echo. @rem Check InstallPath was found and there are images in it. @echo. @echo ***************************************************************** @rem Select WIM @echo ***************************************************************** @echo. setlocal enabledelayedexpansion cd /d %InstallPath% set num="" for /f "delims=" %%i in ('dir /a-d /b *.wim') do ( set /a num+=1 if "!num!" == "!num!" set WIM_NAME!num!=%%i ) if NOT "%WIM_NAME3%"=="" echo Can not select *.WIM && goto :Error set TARGET_WIM=%WIM_NAME1% if /i "%TARGET_WIM%"=="Winre.wim" ( set TARGET_WIM=%WIM_NAME2% ) @echo %TARGET_WIM% if "%TARGET_WIM%"=="" echo The windows image name not specified && goto :Error if NOT EXIST %InstallPath%%TARGET_WIM% echo "Install.wim NOT found." && goto :Error @echo Install.wim FOUND at %InstallPath%imagesinstall.wim @echo. @echo. @echo Making directories… md w:recyclerscratch if %errorlevel% NEQ 0 echo "Failed to make w:recyclerscratch directory" && goto :error @echo. md r:recoverywindowsre if %errorlevel% NEQ 0 echo "Failed to make m:recoverywindowsre directory" && goto :error @echo. @echo ***************************************************************** @echo Applying the Windows image from the USB @echo ***************************************************************** @echo call dism /apply-image /imagefile:"%InstallPath%%TARGET_WIM%" /index:1 /applydir:w: /compact /scratchdir:"w:recyclerSCRATCH call dism /apply-image /imagefile:"%InstallPath%%TARGET_WIM%" /index:1 /applydir:w: /compact /scratchdir:"w:recyclerSCRATCH if %errorlevel% NEQ 0 echo "Failed to apply image to w:" && goto :error @echo. @echo. @echo. @echo ***************************************************************** @rem Move WinRE to Recovery Partition @echo ***************************************************************** @echo. @echo Modifying attributes of winre.wim so we can move it. attrib w:WindowsSystem32recoverywinre.wim -s -h -a -r @echo if EXIST w:WindowsSystem32recoverywinre.wim move w:WindowsSystem32recoverywinre.wim r:recoverywindowsre if EXIST w:WindowsSystem32recoverywinre.wim move w:WindowsSystem32recoverywinre.wim r:recoverywindowsre if %errorlevel% NEQ 0 echo "Failed to move winre.wim to r:recoverywindowsre" && goto :error @echo. @echo xcopy %InstallPath%WinreWinre.wim r:recoverywindowsre /y xcopy %InstallPath%Winre.wim r:recoverywindowsre /y if %errorlevel% NEQ 0 echo "Failed to copy winre.wim to r:recoverywindowsre" && goto :error @echo. @echo. @echo reset attributes now attrib r:RecoveryWindowsrewinre.wim +s +h +a +r @echo. @echo. @echo ***************************************************************** @echo Setting the boot environment @echo ***************************************************************** @echo call w:WINDOWSSYSTEM32BCDBOOT w:WINDOWS /s s: /f all w:WINDOWSSYSTEM32BCDBOOT w:WINDOWS /s s: /f all if %errorlevel% NEQ 0 echo "Failed to set boot information" && goto :error @echo. @echo. @echo. @echo ***************************************************************** @echo Setting the recovery environment @echo ***************************************************************** @echo w:windowssystem32reagentc /SetREImage /Path r:RECOVERYWINDOWSRE /target w:windows w:windowssystem32reagentc /SetREImage /Path r:RECOVERYWINDOWSRE /target w:windows if %errorlevel% NEQ 0 echo "Failed to set recovery information" && goto :error @echo. rmdir /s /q w:recycler @echo. if "%FLASH_BIOS%"=="1" GOTO :FLASH_BIOS goto :END
: DualOS @echo. @echo ***************************************************************** @echo Write the diskpart script now that we know what disk to use @echo ***************************************************************** @echo.>x:winpart.txt @echo select disk "%Disk%">>x:winpart.txt rem @echo clean>>x:winpart.txt rem @echo convert gpt>>x:winpart.txt @echo select volume 0 >>x:winpart.txt @echo attributes volume set hidden >>x:winpart.txt @echo select volume 1 >>x:winpart.txt @echo attributes volume set hidden >>x:winpart.txt @echo select volume 2 >>x:winpart.txt @echo attributes volume set hidden >>x:winpart.txt @echo select volum 3 >>x:winpart.txt @echo attributes volume set hidden >>x:winpart.txt @echo select volume 4 >>x:winpart.txt @echo attributes volume set hidden >>x:winpart.txt @echo select volume 5 >>x:winpart.txt @echo attributes volume set hidden >>x:winpart.txt @echo select volume 6 >>x:winpart.txt @echo attributes volume set hidden >>x:winpart.txt @echo select volume 7 >>x:winpart.txt @echo attributes volume set hidden >>x:winpart.txt @echo select volume 8 >>x:winpart.txt @echo attributes volume set hidden >>x:winpart.txt @echo select volume 9 >>x:winpart.txt @echo attributes volume set hidden >>x:winpart.txt @echo select volume 10 >>x:winpart.txt @echo attributes volume set hidden >>x:winpart.txt @echo select volume 11 >>x:winpart.txt @echo attributes volume set hidden >>x:winpart.txt @echo select volume 12 >>x:winpart.txt @echo attributes volume set hidden >>x:winpart.txt @echo select volume 13 >>x:winpart.txt @echo attributes volume set hidden >>x:winpart.txt rem @echo create partition efi size=100>>x:winpart.txt rem @echo format quick fs=fat32 label="System">>x:winpart.txt rem @echo assign letter="S">>x:winpart.txt @echo create partition msr size=128>>x:winpart.txt @echo create partition primary>>x:winpart.txt @echo format quick fs=ntfs label="Windows">>x:winpart.txt @echo assign letter="W">>x:winpart.txt @echo shrink desired=450>>x:winpart.txt @echo create partition primary>>x:winpart.txt @echo format quick fs=ntfs label="Recovery">>x:winpart.txt @echo assign letter="R">>x:winpart.txt @echo set id="de94bba4-06d1-4d40-a16a-bfd50179d6ac">>x:winpart.txt @echo gpt attributes=0×8000000000000001>>x:winpart.txt @echo exit>>x:WinPart.txt @echo Winpart.txt now contains….. @echo. type x:winpart.txt @echo. @echo. @echo ***************************************************************** @echo Setting up the partition table @echo ***************************************************************** @echo call diskpart /s x:winpart.txt diskpart /s x:winpart.txt @echo. @echo. @echo ***************************************************************** @rem Map drive letter for Install.wim @echo ***************************************************************** @echo.>x:ListVol.txt @echo List volume>>x:ListVol.txt @echo exit>>x:ListVol.txt @echo call diskpart /s x:ListVol.txt call diskpart /s x:ListVol.txt>x:Output.txt @echo. @echo. @rem Go through each drive letter, looking for the imagesInstall.txt file for /f "skip=8 tokens=3" %%A in (x:Output.txt) do ( if exist %%A:imagesinstall.txt set InstallPath=%%A:images&& echo "Found device with images folder and install.txt file" if exist %%A:images set InstallPath=%%A:images&& echo "Found device with images folder" ) @echo. @echo. @rem Check InstallPath was found and there are images in it. @echo. @echo ***************************************************************** @rem Select WIM @echo ***************************************************************** @echo. setlocal enabledelayedexpansion cd /d %InstallPath% set num="" for /f "delims=" %%i in ('dir /a-d /b *.wim') do ( set /a num+=1 if "!num!" == "!num!" set WIM_NAME!num!=%%i ) if NOT "%WIM_NAME3%"=="" echo Can not specified *.WIM && goto :Error set TARGET_WIM=%WIM_NAME1% if /i "%TARGET_WIM%"=="Winre.wim" ( set TARGET_WIM=%WIM_NAME2% ) @echo %TARGET_WIM% if "%TARGET_WIM%"=="" echo The windows image name not specified && goto :Error if NOT EXIST %InstallPath%%TARGET_WIM% echo "Install.wim NOT found." && goto :Error @echo Install.wim FOUND at %InstallPath%imagesinstall.wim @echo. @echo. @echo Making directories… md w:recyclerscratch if %errorlevel% NEQ 0 echo "Failed to make w:recyclerscratch directory" && goto :error @echo. md r:recoverywindowsre if %errorlevel% NEQ 0 echo "Failed to make m:recoverywindowsre directory" && goto :error @echo. @echo ***************************************************************** @echo Applying the Windows image from the USB @echo ***************************************************************** @echo call dism /apply-image /imagefile:"%InstallPath%%TARGET_WIM%" /index:1 /applydir:w: /compact /scratchdir:"w:recyclerSCRATCH call dism /apply-image /imagefile:"%InstallPath%%TARGET_WIM%" /index:1 /applydir:w: /compact /scratchdir:"w:recyclerSCRATCH if %errorlevel% NEQ 0 echo "Failed to apply image to w:" && goto :error @echo. @echo. @echo. @echo ***************************************************************** @rem Move WinRE to Recovery Partition @echo ***************************************************************** @echo. @echo Modifying attributes of winre.wim so we can move it. attrib w:WindowsSystem32recoverywinre.wim -s -h -a -r @echo if EXIST w:WindowsSystem32recoverywinre.wim move w:WindowsSystem32recoverywinre.wim r:recoverywindowsre if EXIST w:WindowsSystem32recoverywinre.wim move w:WindowsSystem32recoverywinre.wim r:recoverywindowsre if %errorlevel% NEQ 0 echo "Failed to move winre.wim to r:recoverywindowsre" && goto :error @echo. @echo xcopy %InstallPath%WinreWinre.wim r:recoverywindowsre /y xcopy %InstallPath%Winre.wim r:recoverywindowsre /y if %errorlevel% NEQ 0 echo "Failed to copy winre.wim to r:recoverywindowsre" && goto :error @echo reset attributes now attrib r:RecoveryWindowsrewinre.wim +s +h +a +r @echo. @echo. @echo ***************************************************************** @echo Setting the boot environment @echo ***************************************************************** @echo call w:WINDOWSSYSTEM32BCDBOOT w:WINDOWS /s s: /f all @rem w:WINDOWSSYSTEM32BCDBOOT w:WINDOWS /s s: /f all w:WINDOWSSYSTEM32BCDBOOT w:WINDOWS if %errorlevel% NEQ 0 echo "Failed to set boot information" && goto :error @echo. @echo ***************************************************************** @echo Setting the recovery environment @echo ***************************************************************** @echo w:windowssystem32reagentc /SetREImage /Path r:RECOVERYWINDOWSRE /target w:windows w:windowssystem32reagentc /SetREImage /Path r:RECOVERYWINDOWSRE /target w:windows if %errorlevel% NEQ 0 echo "Failed to set recovery information" && goto :error @echo. rmdir /s /q w:recycler @echo. %WinPESource%ScriptsToolsH2OUVE-W-Q2S.exe IF EXIST w:"Program Files"H2OUVE-W.exe DEL /q w:"Program Files"H2OUVE-W.exe IF EXIST w:"Program Files"RunQ2S.bat DEL /q w:"Program Files"RunQ2S.bat IF EXIST w:"Program Files"VarDate.xml DEL /q w:"Program Files"VarDate.xml IF EXIST w:"Program Files"VarEdit.txt DEL /q w:"Program Files"VarEdit.txt IF EXIST %WinPESource%I-NET_x86.msi DEL /q w:WindowsOEMI-NET_x86.msi IF EXIST %WinPESource%I-NET_x86.msi COPY /y %WinPESource%I-NET_x86.msi w:WindowsOEM if "%FLASH_BIOS%"=="1" GOTO :FLASH_BIOS Goto :END
:FLASH_BIOS @echo. @echo ***************************************************************** @echo Flash BIOS @echo ***************************************************************** @echo. @echo BIOS file FOUND at %InstallPath%BIOS*.ROM @echo. xcopy /y %InstallPath%BIOS*.ROM %WinPESource%ScriptsTools for /r "%WinPESource%ScriptsTools" %%Z in (*.ROM) do ( ren "%%Z" "%%~na.fd" ) if NOT EXIST %WinPESource%ScriptsTools*.fd echo "Can not find the BIOS file" && goto :error @REM Flash BIOS %WinPESource%ScriptsToolsH2OFFT-W.exe Del /q %WinPESource%ScriptsTools*.fd if %errorlevel% NEQ 0 echo "Failed to flash BIOS" && goto :error @echo ***************************************************************** @echo Image deployment COMPLETE. Type EXIT from Command @echo Prompt to restart or turn off device. @echo ***************************************************************** goto :END
:ERROR color 4f @echo. @echo An error has been detected. @echo. pause >nul goto :ERROR
:ListPar @REM This section is to bring a disk number and use it to List Partitions @echo. set TempDisk=%1 diskpart /s x:Par.txt>x:ParOutput.txt for /f "skip=26 tokens=4" %%A in (x:ParOutput.txt) do ( if /i NOT "%%A"=="Winpe" set Disk=%TempDisk% ) Goto :EOF
:END @echo. @echo ***************************************************************** @echo Copy over Test tools to TEST_TOOL @echo TEST_TOOL SHOULD BE DELETED PRIOR TO SHIPPING @echo ***************************************************************** @echo %WinpeSource%Scripts7za.exe x w:TEST_TOOL.zip -oW: if EXIST %WinpeSource%TEST_TOOL.zip %WinpeSource%Scripts7za.exe x %WinpeSource%TEST_TOOL.zip -oW: @echo. @echo ***************************************************************** @echo Copying over Unattend.xml to use on factory floor if it exists @echo ***************************************************************** @echo if EXIST %InstallPath%Unattend.xml copy %InstallPath%Unattend.xml w:WindowsPanther /y if EXIST %InstallPath%Unattend.xml copy %InstallPath%Unattend.xml w:WindowsPanther /y @echo. @echo ***************************************************************** @echo Copying over NON Scanstate Packages, if they exist. @echo IF YOU COPY OVER SCANSTATE PPKG, THIS CAUSE IMAGE TO FAIL DURING RECOVERY @echo ***************************************************************** @echo. @echo if EXIST %InstallPath%*.ppkg copy %InstallPath%*.ppkg w:RecoveryCustomizations /y if EXIST %InstallPath%*.ppkg copy %InstallPath%*.ppkg w:RecoveryCustomizations /y @echo Apply PPKG setlocal enabledelayedexpansion set PPKG_PATH=w:RecoveryCustomizations cd /d %PPKG_PATH% set num="" for /f "delims=" %%i in ('dir /a-d /b *.ppkg') do ( set /a num+=1 if "!num!" == "!num!" ( @echo if /i "%%~ni"=="usmt" DISM /Apply-CustomDataImage /CustomDataImage:!PPKG_PATH!%%~ni.ppkg /ImagePath:w: /SingleInstance if /i "%%~ni"=="usmt" DISM /Apply-CustomDataImage /CustomDataImage:!PPKG_PATH!%%~ni.ppkg /ImagePath:w: /SingleInstance @echo if /i NOT "%%~ni"=="usmt" DISM.exe /Image:w: /Add-ProvisioningPackage /PackagePath:!PPKG_PATH!%%~ni.ppkg if /i NOT "%%~ni"=="usmt" DISM.exe /Image:w: /Add-ProvisioningPackage /PackagePath:!PPKG_PATH!%%~ni.ppkg ) ) @echo. @echo ***************************************************************** @echo Image deployment COMPLETE. Type EXIT from Command @echo Prompt to restart or turn off device. @echo ***************************************************************** @rem @rem Get finish time so we can evaluate total WinPE phase time. @rem call |time>x:StopTime.txt @rem @rem Now parse both files to display the Start and Finish Time @rem @echo. @echo. for /f "tokens=5" %%A in (x:starttime.txt) do echo Script Start Time is %%A for /f "tokens=5" %%A in (x:stoptime.txt) do echo Script Stop Time is %%A @echo. exit
| |
※Please make a backup of your device before installing or updating ROM


Member Info
Good day!
I have a laptop with keyboard, but without OS, and while im tried to install it i done something wrong and now i have only UEFI Shell but that is not so big problem – i can`t use any keyboards (with OTG neither). So i can`t interact with this sheild and now i don`t know how to make keyboard works again and install win10.
Please help me, thank you!!