----T1690 HDD Prep---- It has been discovered the T1690 HDD is not showing up for the application of new images. Follow the steps below to all for the HDD to be seen by your deployment method. **T1690 needs to be connected to power for this process, if for some reason the power is disconnected during this process or before the application of the new image, you will need to start over. This is due to the HDD driver not staying loaded into memory.** -Copy the T1690HDDPrep.iso from the link provided -External USB stick needs to be at least 2GB in size -Using Rufus (https://rufus.ie/en/) or your preferred iso-burning software -Leave the format type as FAT 32 -Wait until the .iso is burned to the external media -Plug your T1690 into the power -Attach your USB media to the device -Boot into the USB device using 'F12' during boot -Select your boot media from the boot menu -Let the machine boot and give it 5 minutes to finish processing all automation steps -When the process is finished the T1690 will shut down -You should now be able to see the internal HDD for the image application **If the drive letters are not working as intended, you can modify the diskpart.txt to assign different letters. This file is located on the top level of the .iso after it is burned to the USB stick. ----End---- __Contents of T1690HDDPrep.iso__ WinPE10 bootable along with all the required files necessary for processing (314mb) __Added Files__ Diskpart.txt __Contents of diskpart.txt__ list disk select disk 0 clean create partition primary format fs=ntfs quick select disk 0 list volume select volume 0 assign letter=d select volume 1 assign letter=c exit __Modified Files of the WinPE Drive__ Startnet.cmd __Contents of startnet.cmd__ @ECHO off SETLOCAL ENABLEDELAYEDEXPANSION ECHO *************************************************************************** ECHO * Basic Boot WinPE image. ECHO * This WinPE bootable USB will: ECHO * 1. Format the installed HDD ECHO * 2. Run Diskpart to format and prep the internal HDD for imaging ECHO *************************************************************************** REM Initialize WinPE ECHO Initializing wpeinit please wait... wpeinit ECHO. ECHO Calling wpeutil UpdateBootInfo. ECHO Please wait... wpeutil UpdateBootInfo ECHO. ECHO ******************************************************************** ECHO * Running DiskPart.bat ECHO ******************************************************************** SET "BOOT_DEVICE=" FOR %%d IN (C D E F G H I J K L M N O P Q R S T U V W X Y Z) DO ( IF EXIST "%%d:\Boot" SET "BOOT_DEVICE=%%d:" ) IF NOT DEFINED BOOT_DEVICE ( ECHO Boot device not found. ECHO Exiting script. GOTO :ERROR ) ECHO Boot device found: %BOOT_DEVICE% diskpart /s "X:\diskpart.txt" GOTO :ERROR ) ECHO. ECHO ******************************************************************** ECHO * Script completed successfully. ECHO ******************************************************************** GOTO :END :ERROR ECHO. ECHO An error has been detected. ECHO Process halted. ECHO. GOTO :END :END ECHO ******************************************************************** ECHO * Processing Done. Preparing to Shutdown. ECHO ******************************************************************** wpeutil shutdown /s /t 60