When you apply the image to the other machines are you using a USB to Ethernet dongle with those deployments also? Is the USB port on the Panasonic a USB3 port by chance? Also, according to the article I linked previously, you should remove the AppX package for the user that is going to run sysprep first and then remove the provisioning to ensure the configuration is correct. From your most recent response, it is clear that you are removing the provisioned apps but it appears that you may not be removing them for the admin user first. Again, in the article I linked above, under the “resolution” section, it states “The correct way of removing the package is to remove the package for the user running sysprep and also remove the provisioning. This can be done using the following Powershell cmdlets: Import-Module Appx Import-Module Dism Get-AppxPackage -AllUser | Where PublisherId -eq 8wekyb3d8bbwe | Format-List -Property PackageFullName,PackageUserInformation Notes: From the output of the above command, check the users for whom the package is showing up as Installed. Delete these user accounts from the reference machine, or log in to the machine using these user accounts and run Step 4 to remove the Appx Package. The above command lists all packages that were published by Microsoft and installed by any user of that reference machine. Since the machine is to be sysprepped, we assume that these user profiles no longer need the package. If you have manually provisioned apps belonging to other publishers, then use the command below to list them: Get-AppxPackage -AllUser | Format-List -Property PackageFullName,PackageUserInformation Remove-AppxPackage -Package <packagefullname> Remove the Provisioning using the following cmdlet: Remove-AppxProvisionedPackage -Online -PackageName <packagefullname>”If you do not remove the packages properly as outlined above it can affect sysprep and imaging settings for Windows 8.1 specifically for certain hardware. My suspicion is either the USB to Ethernet dongle driver, the USB port itself or the AppX package configuration is the culprit in this scenario. Please keep me posted! Jessica Windows Outreach Team – IT Pro The Springboard Series on TechNet