├── README.md ├── boot-menu.png ├── chipset-drivers-list.png ├── chipset-drivers.png ├── chipset-extract.png ├── create-new-disk-1.png ├── create-new-disk-2.png ├── create-new-disk-3.png ├── create-new-disk-4.png ├── custom-winpe-1.png ├── custom-winpe-2.png ├── custom-winpe-3.png ├── dism-1.png ├── dism-2.png ├── dism-3.png ├── dism-4.png ├── dism-5.png ├── dism-6.png ├── display-settings-1.png ├── display-settings-2.png ├── display-settings.png ├── format-usb-1.png ├── format-usb-2.png ├── format-usb-3.png ├── format-usb-4.png ├── format-usb-5.png ├── format-usb-6.png ├── heci-rel.png ├── import-ova-1.png ├── import-ova-2.png ├── import-ova-3.png ├── import-ova-4.png ├── make-media.png ├── mei-extract.png ├── meupdate-cmd-2.png ├── meupdate-cmd-3.png ├── meupdate-cmd.png ├── ms-edge-win10-vm.png ├── select-vm.png ├── start-vm.png ├── startup-menu.png ├── vm-settings.png ├── vm-storage-1.png ├── vm-storage-2.png ├── win-adk-1.png ├── win-adk-2.png ├── win-adk-3.png ├── win-adk-4.png ├── win-adk-5.png ├── win-adk-6.png ├── wpeutil-shutdown.png └── xcopy-1.png /README.md: -------------------------------------------------------------------------------- 1 | 2 | # How to update Intel ME firmware for Lenovo T460 using Linux 3 | 4 | _TL;DR_ - Intel and Lenovo release the firmware updates as Windows executables 5 | so you'll have to build a USB drive with 6 | [Windows PE](https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/winpe-intro) 7 | with all the necessary drivers and update utilities. 8 | You boot your PC with the USB and execute the updates from _WinPE_. 9 | If you have an spare PC with Windows, you're lucky and can skip all the 10 | virtual machine part, if you don't, you can use use a virtualized Windows 10 11 | for the USB preparation. 12 | 13 | I spent 2 days fiddling with [Windows PE 7 (x86)](https://www.thinkwiki.org/wiki/Windows_PE) 14 | but didn't managed to get it to work. Using Windows 10 (amd64) worked just fine. 15 | 16 | ## Disclaimer 17 | 18 | The contents of this document are provided "AS IS" without warranty of 19 | any kind. This document could contain technical inaccuracies, 20 | typographical errors and out-of-date information. This document may be 21 | updated or changed without notice at any time. Use of the information 22 | is therefore at your own risk. 23 | 24 | ## Emulating Windows 10 using VirtualBox 25 | 26 | For Windows 10 emulation you'll need [VirtualBox](https://www.virtualbox.org/) and because 27 | we'll emulate a 64bit Windows 10 machine, you must have 28 | [Intel VT-X](https://support.lenovo.com/es/en/solutions/ht500006) enabled. 29 | 30 | Instead of creating a virtual machine from scratch, we can use the work done 31 | by Microsoft. Microsoft releases a set of virtual machines with some 32 | combination of operating system and browser version. This machines are _Enterprise_ versions 33 | of Windows and the license is a valid one for 90 days. 34 | 35 | Visit [Microsoft Edge](https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/) VM website 36 | and download the file select: 37 | 38 | * Virtual machine: __MSEdge on Win10(64bit) Stable (16.16299)__ 39 | * Select platform: VirtualBox 40 | * Click: _Download ZIP_ 41 | 42 | __Note:__ The zip file is a ~4.9GB file. 43 | 44 | ![VM download](ms-edge-win10-vm.png) 45 | 46 | After downloading the `MSEdge.Win10.VirtualBox.zip` you must unzip it to get a final `MSEdge - Win10.ova` file. 47 | 48 | ### Import the Windows 10 ova file 49 | 50 | * File > Import Appliance 51 | 52 | ![Import](import-ova-1.png) 53 | 54 | * Select the file `MSEdge - Win10.ova` 55 | 56 | ![Appliance to import](import-ova-2.png) 57 | 58 | * Modify the CPU count to 2 59 | 60 | ![Appliance settings](import-ova-3.png) 61 | 62 | * Click _Import_ and wait ... 63 | 64 | ![Importing appliance](import-ova-4.png) 65 | 66 | ### Modify display settings 67 | 68 | * Use 128MB of _Video Memory_ and enabled _3D Acceleration_ 69 | 70 | ![Display settings](display-settings.png) 71 | 72 | ### Adding an extra drive to the VM 73 | 74 | I didn't manage to make VirtualBox to detect and _share_ 75 | a physical USB to the guest machine -- even with Oracle's 76 | [extension pack](https://www.virtualbox.org/wiki/Downloads). 77 | My workaround was to add an extra virtual disk (`.vdi`) and use it as a USB device 78 | on Windows. 79 | 80 | Let's create a 1GB additional disk 81 | 82 | * Select the machine _MSEdge - Win10_ 83 | 84 | ![Select vm](select-vm.png) 85 | 86 | * Click _Settings_ button 87 | 88 | ![VM settings](vm-settings.png) 89 | 90 | * Click _Storage_ option 91 | 92 | ![VM storage](vm-storage-1.png) 93 | 94 | * Under the main IDE controller, click the _Add hard drive_ 95 | 96 | ![Add hard drive](vm-storage-2.png) 97 | 98 | * Select _Create new disk_ 99 | 100 | ![Create new disk](create-new-disk-1.png) 101 | 102 | * Select _VDI (Virtual Box Image)_ 103 | 104 | ![Select VDI](create-new-disk-2.png) 105 | 106 | * Select _Fixed size_ 107 | 108 | ![Fixed size](create-new-disk-3.png) 109 | 110 | * Save the `usb.vdi` in a known location and use `1.00 GB` as size 111 | 112 | ![1GB vdi](create-new-disk-4.png) 113 | 114 | * Click _Create_ 115 | 116 | ## Starting the VM 117 | 118 | * Select the _MSEdge - Win 10_ machine 119 | * Click Start 120 | 121 | ![Start VM](start-vm.png) 122 | 123 | * Now you have a running Windows 10 VM 124 | 125 | ### Modifying the VM display resolution 126 | 127 | To have a more comfortable workspace, modify the default display 128 | resolution. 129 | 130 | * Right-click on the _Desktop_ 131 | * Select _Display settings_ 132 | 133 | ![Display settings](display-settings-1.png) 134 | 135 | * Select _1280 x 960_ option 136 | * Select _Keep changes_ 137 | 138 | ![Keep changes](display-settings-2.png) 139 | 140 | ## Formatting extra drive (usb.vdi) 141 | 142 | * Click Windows key 143 | 144 | * Type `disk partitions` 145 | 146 | * Select _Create and format hard disk partitions_ 147 | 148 | ![Select format and hard disk partitions](format-usb-1.png) 149 | 150 | * Select __MBR__ for _Disk 1_ 151 | 152 | ![Select MBR](format-usb-2.png) 153 | 154 | * Select _Disk 1_ 155 | * Right-click on the disk and select _New Simple Volume_ 156 | 157 | ![New Simple Volume](format-usb-3.png) 158 | 159 | 160 | * Accept all defaults and assign drive letter __D__ 161 | * Format with FAT32 file system 162 | 163 | ![FAT32](format-usb-4.png) 164 | 165 | * Format the drive by clicking _Finish_ 166 | 167 | ![Format](format-usb-5.png) 168 | 169 | * You have now 2 drives and we'll use __D:__ as a USB drive 170 | 171 | ![2 Drives](format-usb-6.png) 172 | 173 | ## Installing Windows ADK 174 | 175 | * Open Microsoft Edge browser 176 | * Visit: http://go.microsoft.com/fwlink/?LinkId=526803 177 | 178 | * Click _Download now_ 179 | 180 | ![ADK download](win-adk-1.png) 181 | 182 | * Select the option: _Run_ 183 | 184 | ![Run the installer](win-adk-2.png) 185 | 186 | * Select default location and accept the License 187 | 188 | ![Accept license](win-adk-3.png) 189 | 190 | * From the default selected packages I removed: 191 | 192 | - Windows Performance Toolkit 193 | - Microsoft User Experience Virtualization (UE-V) Template 194 | - Microsoft Application Virtualization (App-V) Sequencer 195 | - Microsoft Application Virtualization (App-V) Auto Sequencer 196 | 197 | ![ADK features](win-adk-5.png) 198 | 199 | * Click _Install_ -- and wait, you'll download ~ 6.4 GB 200 | 201 | ![Win PE download](win-adk-6.png) 202 | 203 | 204 | ## Customizing a Windows PE 205 | 206 | The available documentation in 207 | [Microsoft Docs](https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/winpe-intro) gives you all you need 208 | to customize a Windows PE. 209 | 210 | * Use the Windows key 211 | 212 | * Search for _deployment_ 213 | 214 | * Right-click in the option _Deployment and Imaging Tools Environment_ 215 | 216 | * Run as administrator 217 | 218 | ![Deployment tools](custom-winpe-1.png) 219 | 220 | * Using the console: `copype amd64 C:\WinPE_amd64` 221 | 222 | ![copype](custom-winpe-2.png) 223 | 224 | * We're now ready to load some additional drivers 225 | 226 | ### Intel Chipset and ME drivers 227 | 228 | In order to use the firmware update you need to have some additional 229 | drivers in WinPE environment. You can find the required drivers on 230 | [Lenovo's support portal](https://pcsupport.lenovo.com/es/en/products/laptops-and-netbooks/thinkpad-t-series-laptops/thinkpad-t460/20fn/downloads) under the 231 | __Chipset__ section. 232 | 233 | In my case I downloaded: 234 | 235 | - Intel Management Engine 11.8 Firmware for Windows 10 (64-bit): https://download.lenovo.com/pccbbs/mobiles/r02rg06w.exe 236 | - Intel(R) Management Engine Interface for Windows 10 (64-bit): https://download.lenovo.com/pccbbs/mobiles/r02mk15w.exe 237 | - Intel(R) Chipset Device Software for Windows 10 (64-bit): https://download.lenovo.com/pccbbs/mobiles/r02ia08w.exe 238 | 239 | ![Additional drivers](custom-winpe-3.png) 240 | 241 | * Save the files and execute them. This are self extractable zip files. 242 | * __NOTE:__ Make sure you don't attempt to install this drivers on the virtual machine. 243 | * Use the default path to extract the content: 244 | - `C:\DRIVERS\WIN\ME` 245 | - `C:\DRIVERS\WIN\MEI` 246 | - `C:\DRIVERS\WIN\Chipset` 247 | 248 | ### Extracting the content of the driver executables 249 | 250 | * The first folder `C:\DRIVERS\WIN\ME` contains the firmware (`.bin` files) 251 | plus the necessary script to update: `MEUpdate.CMD` -- We'll add this folder to the WinPE distribution. 252 | 253 | * Using the same console... 254 | 255 | * Move to `C:\DRIVERS\WIN\MEI` 256 | - `cd C:\DRIVERS\WIN\MEI` 257 | 258 | * Create a new folder name `Drivers` 259 | - `mkdir Drivers` 260 | 261 | * Execute `SetupME.exe` using the flags `-A` and `-P` to extract the content 262 | of the file 263 | - `SetupME.exe -A -P C:\DRIVERS\WIN\MEI\Drivers` 264 | 265 | ![MEI extract](mei-extract.png) 266 | 267 | * You'll find 2 new folders in under the `Drivers`, `HECI_REL` and `SOL_REL` 268 | 269 | ![HECI_REL](heci-rel.png) 270 | 271 | * Move to the `Chipset` folder 272 | - `cd C:\DRIVERS\WIN\Chipset` 273 | 274 | * Create a `Drivers` folder inside 275 | - `mkdir Drivers` 276 | 277 | ![Chipset drivers](chipset-drivers.png) 278 | 279 | * Execute `SetupChipset.exe` with `-extract` flags 280 | - `SetupChipset.exe -extract C:\DRIVERS\WIN\Chipset\Drivers` 281 | 282 | ![Chipset drivers extract](chipset-extract.png) 283 | 284 | * List the files under `Drivers` and you'll find a folder per processor 285 | architecture. I'll use the `skylake` in this case 286 | 287 | ![Chipset drivers list](chipset-drivers-list.png) 288 | 289 | ## Customizing our WinPE environment with the firmware and drivers 290 | 291 | The [Microsoft documentation](https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/winpe-mount-and-customize) 292 | shows how to mount and customize our WinPE. 293 | 294 | * Mount the image file 295 | 296 | - `Dism /Mount-Image /ImageFile:"C:\WinPE_amd64\media\sources\boot.wim" /index:1 /MountDir:"C:\WinPE_amd64\mount"` 297 | 298 | ![Dism 1](dism-1.png) 299 | 300 | * Add the Intel Chipset driver 301 | - `Dism /Add-Driver /Image:"C:\WinPE_amd64\mount" /Driver:"C:\DRIVERS\WIN\Chipset\Drivers\skylake\SkylakeSystem.inf"` 302 | 303 | ![Dism 2](dism-2.png) 304 | 305 | * Add the Intel ME driver 306 | - `Dism /Add-Driver /Image:"C:\WinPE_amd64\mount" /Driver:"C:\DRIVERS\WIN\MEI\Drivers\HECI_REL\win10\heci.inf"` 307 | 308 | ![Dism 3](dism-3.png) 309 | 310 | - `Dism /Add-Driver /Image:"C:\WinPE_amd64\mount" /Driver:"C:\DRIVERS\WIN\MEI\Drivers\SOL_REL\mesrl.inf"` 311 | 312 | ![Dism 4](dism-4.png) 313 | 314 | * Add the firmware update and script by copying the `C:\DRIVERS\WIN\*` folder to the mount point 315 | 316 | - `xcopy /s C:\DRIVERS\WIN\* C:\WinPE_amd64\mount` 317 | - NOTE: While is not strictly necessary to copy the drivers binaries I did it for troubleshooting 318 | 319 | ![xcopy](xcopy-1.png) 320 | 321 | * Add more temporary space 322 | 323 | - `Dism /Set-ScratchSpace:512 /Image:"C:\WinPE_amd64\mount"` 324 | 325 | ![Dism 5](dism-5.png) 326 | 327 | * Unmount the file and __commit__ the changes 328 | 329 | - `Dism /Unmount-Image /MountDir:"C:\WinPE_amd64\mount" /commit` 330 | 331 | ![Dism 6](dism-6.png) 332 | 333 | ## Create a bootable media 334 | 335 | * We'll use the extra drive added to the virtual machine 336 | * `MakeWinPEMedia /UFD C:\WinPE_amd64 D:` 337 | 338 | ![Make media](make-media.png) 339 | 340 | ## Burning the created media to a USB drive 341 | 342 | * Make sure to shutdown the Windows 10 virtual machine 343 | 344 | * We have a bootable media under a .vdi format and we need to convert it to be able to _burn_ it 345 | 346 | * Using `VBoxManage` we'll convert the `.vdi` in raw format. __NOTE:__ Change the command to the correct path to `usb.vdi` 347 | 348 | 349 | VBoxManage clonehd usb.vdi winpe_amd.img --format RAW 350 | 0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100% 351 | Clone medium created in format 'RAW'. UUID: b4e20b0b-302d-44d4-8b10-40801fb35b88 352 | 353 | 354 | * Using `dd` you can copy the resulting `winpe_amd64.img` to your usb. 355 | 356 | __WARNING: Make sure you choose the correct output otherwise you could delete something from your computer__ 357 | 358 | In my case `/dev/sdb` is the USB device 359 | 360 | sudo dd if=winpe_amd.img of=/dev/sdb bs=4M 361 | 256+0 records in 362 | 256+0 records out 363 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 87.5253 s, 12.3 MB/s 364 | 365 | ## Booting from USB and executing the firmware update 366 | 367 | * Hit `` when the Lenovo logo shows up 368 | * Select an alternative boot device - Your USB drive 369 | 370 | ![Boot Menu](boot-menu.png) 371 | 372 | * Wait for Windows PE to boot 373 | * Move to `X:\ME\` -- `cd X:\ME` 374 | * Execute `UpdateME.CMD` 375 | 376 | ![MEUpdate](meupdate-cmd.png) 377 | 378 | * Wait for the update to finish 379 | 380 | ![MEUpdate 2](meupdate-cmd-2.png) 381 | 382 | ![MEUpdate 3](meupdate-cmd-3.png) 383 | 384 | * Use `wpeutil shutdown` to shutdown 385 | 386 | ![wpeutil](wpeutil-shutdown.png) 387 | 388 | ## Links 389 | 390 | * https://www.thinkwiki.org/wiki/Windows_PE 391 | * https://www.thinkwiki.org/wiki/Intel_Active_Management_Technology_(AMT)#Firmware_update 392 | * https://www.reddit.com/r/thinkpad/comments/7ek838/how_to_patch_intel_sa00086_vulnerability_from/ 393 | * https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/winpe-intro 394 | * https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/winpe-create-usb-bootable-drive 395 | * https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/ 396 | * https://developer.microsoft.com/en-us/windows/hardware/windows-assessment-deployment-kit#winADK 397 | -------------------------------------------------------------------------------- /boot-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/boot-menu.png -------------------------------------------------------------------------------- /chipset-drivers-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/chipset-drivers-list.png -------------------------------------------------------------------------------- /chipset-drivers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/chipset-drivers.png -------------------------------------------------------------------------------- /chipset-extract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/chipset-extract.png -------------------------------------------------------------------------------- /create-new-disk-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/create-new-disk-1.png -------------------------------------------------------------------------------- /create-new-disk-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/create-new-disk-2.png -------------------------------------------------------------------------------- /create-new-disk-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/create-new-disk-3.png -------------------------------------------------------------------------------- /create-new-disk-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/create-new-disk-4.png -------------------------------------------------------------------------------- /custom-winpe-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/custom-winpe-1.png -------------------------------------------------------------------------------- /custom-winpe-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/custom-winpe-2.png -------------------------------------------------------------------------------- /custom-winpe-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/custom-winpe-3.png -------------------------------------------------------------------------------- /dism-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/dism-1.png -------------------------------------------------------------------------------- /dism-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/dism-2.png -------------------------------------------------------------------------------- /dism-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/dism-3.png -------------------------------------------------------------------------------- /dism-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/dism-4.png -------------------------------------------------------------------------------- /dism-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/dism-5.png -------------------------------------------------------------------------------- /dism-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/dism-6.png -------------------------------------------------------------------------------- /display-settings-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/display-settings-1.png -------------------------------------------------------------------------------- /display-settings-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/display-settings-2.png -------------------------------------------------------------------------------- /display-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/display-settings.png -------------------------------------------------------------------------------- /format-usb-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/format-usb-1.png -------------------------------------------------------------------------------- /format-usb-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/format-usb-2.png -------------------------------------------------------------------------------- /format-usb-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/format-usb-3.png -------------------------------------------------------------------------------- /format-usb-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/format-usb-4.png -------------------------------------------------------------------------------- /format-usb-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/format-usb-5.png -------------------------------------------------------------------------------- /format-usb-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/format-usb-6.png -------------------------------------------------------------------------------- /heci-rel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/heci-rel.png -------------------------------------------------------------------------------- /import-ova-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/import-ova-1.png -------------------------------------------------------------------------------- /import-ova-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/import-ova-2.png -------------------------------------------------------------------------------- /import-ova-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/import-ova-3.png -------------------------------------------------------------------------------- /import-ova-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/import-ova-4.png -------------------------------------------------------------------------------- /make-media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/make-media.png -------------------------------------------------------------------------------- /mei-extract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/mei-extract.png -------------------------------------------------------------------------------- /meupdate-cmd-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/meupdate-cmd-2.png -------------------------------------------------------------------------------- /meupdate-cmd-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/meupdate-cmd-3.png -------------------------------------------------------------------------------- /meupdate-cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/meupdate-cmd.png -------------------------------------------------------------------------------- /ms-edge-win10-vm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/ms-edge-win10-vm.png -------------------------------------------------------------------------------- /select-vm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/select-vm.png -------------------------------------------------------------------------------- /start-vm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/start-vm.png -------------------------------------------------------------------------------- /startup-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/startup-menu.png -------------------------------------------------------------------------------- /vm-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/vm-settings.png -------------------------------------------------------------------------------- /vm-storage-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/vm-storage-1.png -------------------------------------------------------------------------------- /vm-storage-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/vm-storage-2.png -------------------------------------------------------------------------------- /win-adk-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/win-adk-1.png -------------------------------------------------------------------------------- /win-adk-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/win-adk-2.png -------------------------------------------------------------------------------- /win-adk-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/win-adk-3.png -------------------------------------------------------------------------------- /win-adk-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/win-adk-4.png -------------------------------------------------------------------------------- /win-adk-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/win-adk-5.png -------------------------------------------------------------------------------- /win-adk-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/win-adk-6.png -------------------------------------------------------------------------------- /wpeutil-shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/wpeutil-shutdown.png -------------------------------------------------------------------------------- /xcopy-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iperdomo/update-intel-me-using-linux/0902347505b9754f0feab86ab2f3e4bc82b8e630/xcopy-1.png --------------------------------------------------------------------------------