Forums on Intune, SCCM, and Windows 11

Welcome to the forums. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your topics and posts, as well as connect with other members through your own private inbox!

SOLVED Upgrade of CM didn't update my x64 default Boot Image

Status
Not open for further replies.

AlTu

Active Member
Messages
37
Solutions
1
Reaction score
5
Points
8
Hi,

I just upgraded CM 1606 to 1702.
Prior to the upgrade I updated ADK as well but my x64 boot image was not consumed during the upgrade process.

The x86 Boot image is updated successfully though.

I followed this guide, but it didn't work:
http://www.scconfigmgr.com/2014/02/...ot-updated-after-a-configmgr-2012-r2-upgrade/

It produced this error:
Code:
Invoke-WmiMethod : Generic failure
At line:1 char:109
+ ... ='BE200005'" | Invoke-WmiMethod -Name UpdateDefaultImage
+                    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidOperation: (:) [Invoke-WmiMethod], ManagementException
    + FullyQualifiedErrorId : InvokeWMIManagementException,Microsoft.PowerShell.Commands.InvokeWmiMethod

I also stumbled on this thread here:
https://prajwaldesai.com/community/threads/1511-upgrade-boot-images-not-upgraded.512/#post-2266

But the fifth step is not very clear to me.
Can anybody explain what exactly I need to do there?
Update default boot image. Click “Execute Method” -> input object path as SMS_BootImagePackage.PackageID=”” -> UpdateDefaultImage
 
Well, you could try removing the drivers from boot image first and try running the steps mentioned by Nicolaj. Let me know how it goes.
 
That's great. Another solution as per Nicolaj, you can try the below steps

Replace the WIM file like in the post but run this instead:

$SiteCode = "P01"
$PackageID = "P0100007"
$BootImage = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class SMS_BootImagePackage -Filter "PackageID = '$($PackageID)'"
$BootImage.ReloadImageProperties()

Then redistribute.
 
Status
Not open for further replies.

Forum statistics

Threads
7,143
Messages
27,887
Members
18,179
Latest member
Wjelana
Back
Top