SCCM | Intune | Windows 365 | Windows 11 Forums

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!

PENDING Configuration Manager 2403 - Status Installing

dmanrez

Member
Messages
12
Reaction score
1
Points
3
Hi
Trying to upgrade to Configuration Manager 2403 from 2303 and it's been two days and the state is installing.
Went into update pack installation and it's stuck at step Install files In progress
Not sure what is going on. Any ideas?
 
Hi
Trying to upgrade to Configuration Manager 2403 from 2303 and it's been two days and the state is installing.
Went into update pack installation and it's stuck at step Install files In progress
Not sure what is going on. Any ideas?
You need to clear the upgrade from DB. Here are some commands that can help to clear that state

First find the packageid or GUID and make sure you have all backups in place [DB, SCCM,Servers]

Upgrade got stuck in download or pre-req check state

SELECT * FROM dbo.CM_UpdatePackages

SELECT * FROM dbo.CM_UpdatePackages where PackageGuid = '1C02A325-C78B-438B-8A08-B9D0D45E136E' [Replace with the GUID that you found from SCCM]

DELETE FROM dbo.CM_UpdatePackages WHERE PackageGuid = '1C02A325-C78B-438B-8A08-B9D0D45E136E' -- of the upgrade package
 
DELETE FROM dbo.CM_UpdatePackages WHERE PackageGuid = '1C02A325-C78B-438B-8A08-B9D0D45E136E'
Tried the following commands above and the package was removed from Updates and servicing in the console. I have no idea how to see the progress now of the upgrade. I did look at the log file CMupdate.log, it seems the update has stopped working

1729266309761.png
 
Tried the following commands above and the package was removed from Updates and servicing in the console. I have no idea how to see the progress now of the upgrade. I did look at the log file CMupdate.log, it seems the update has stopped working

View attachment 6667
Did you use the right GUID for the stuck package? Did you run check for updates?
 
You need to clear the upgrade from DB. Here are some commands that can help to clear that state

First find the packageid or GUID and make sure you have all backups in place [DB, SCCM,Servers]

Upgrade got stuck in download or pre-req check state

SELECT * FROM dbo.CM_UpdatePackages

SELECT * FROM dbo.CM_UpdatePackages where PackageGuid = '1C02A325-C78B-438B-8A08-B9D0D45E136E' [Replace with the GUID that you found from SCCM]

DELETE FROM dbo.CM_UpdatePackages WHERE PackageGuid = '1C02A325-C78B-438B-8A08-B9D0D45E136E' -- of the upgrade package
It is completely unsupported to delete anything from the ConfigMgr database. Doing so may cause more problems.
 
My Install is not getting stuck on downloading but is get stuck in a loop of Upgrade ConfigMgr database and Install files. Tried reboot with no luck

View attachment 6710
Did you make sure the account that you used for upgrade is Full SCCM admin and has sa admin in SQL. Also make sure all the service accounts used have proper SCCM roles and SQL permissions
 
My Install is not getting stuck on downloading but is get stuck in a loop of Upgrade ConfigMgr database and Install files. Tried reboot with no luck

View attachment 6710
Review the Log to see what is going on. Some thing when added to the DB take a long time, particularly on a underpowered system.
 
Any update on this? I'm having the same problem. Pre-reqs passed just fine. No actual legit errors in the CMupdate.log file. I've tried resetting the update with CMUpdateReset.exe and that didn't work.
 
Here is my CMUpdate.log file (scrubbed of course).

I noticed that it gets to the last few lines where it shows, "Successfully reported ConfigMgr update status (SiteCode=MGM, SubStageID=0xd0012, IsComplete=1, Progress=1, Applicable=1)" then shows, "INFO: Successfully created local user group SMS Admins on the local machine with NT AUTHORITY\SYSTEM as the member." Then it starts over with "Upgrade ConfigMgr database" in the MECM Upgrade Monitoring window.
1732279964943.png

Hman.log doesn't really show anything helpful unless I'm missing something. Are there any other logs I should be monitoring here?
 

Attachments

This log file seem to indicate that the setup is still running. e.g. if you look at the log now, is it showing something different?
 
This log file seem to indicate that the setup is still running. e.g. if you look at the log now, is it showing something different?
It just loops through the same steps in about one hour intervals. It goes from "Upgrading ConfigMgr database" to "Install Files" and then rinse and repeat. I've been stuck on this for days now.
 
Back
Top