Here's the situation:
Win 10 1709 -> Upgraded to 1803/also tried 1809
Ran the commands:
Get-AppxPackage -AllUser | Remove-AppxPackage
Get-AppxProvisionedPackage -Online | Remove-AppxProvisionedPackage
Also verified what I had left for apps by exporting this command:
Get-AppxPackage -AllUser | Where PublisherID -eq 8wekyb3d8bbwe | Format-List -Property PackageFullName,PackageUserInformation > C:\list.txt
I have gone through and removed each app specifically using the:
Remove-AppxPackage -Package [PackageName]
As well as:
Get-AppxProvisionedPackage -Online | where-object {$_.packagename -like "*packagename*"} | Remove-AppxProvisionedPackage
I have also turned off all windows features with the exception of Internet Explorer 11, because I need this app. Note: I managed to get this to work with 1809, once, and when I did, I turned off all features, and when I finally imaged the new 1809 on a device, I wanted to have Internet Explorer 11 to be included, or the feature to be turned on, or the application reinstalled. But, it's already installed, and the command to turn the feature on would require a RSAT install on the PC it gets to run the powershell module needed, which we didn't want to do.
I have ran the command in cmd:
msdtc -uninstall
msdtc -install
Made sure that SkipRearm located in: HLKM\SOFTWARE\Microsoft\Windows\Windows NT\CurrentVersion\SoftwareProtectionPlatform was set to "1".
Made sure that GeneralizationState located in: HKLM\SYSTEM\Setup\Status\SysprepStatus was set to "7".
Not sure what else I have done... it's been a wild ride, anyways, here's what I have left when I export that list:
Microsoft.AsyncTextService_10.0.17134.1_neutral__8wekyb3d8bbwe
Microsoft.ECApp_10.17134.1_neutral__8wekyb3d8bbwe
Microsoft.MicrosoftEdgeDevToolsClient_1000.17134.1.0_neutral__neutral_8wekyb3d8bbwe
Microsoft.MicrosoftEdge_42.17134.1.0_neutral__8wekyb3d8bbwe
And when I go through the sysprep Setupact.log, it looks like it breaks around:
SYSPRP ActionPlatform::LaunchModule: Failure occurred while executing 'Sysprep_Generalize_MountPointManager' from C:\Windows\System32\spmpm.dll; dwRet = 0x2
Any ideas?
Clik here to view.
