[SOLVED] Windows Server 2016 Update don't working

Ok and how I See which one is an domain account?

Are all Users in the ProfileList.txt then local accounts?
 
No, this command lists also the domain accounts in most cases. So you'll need to verify which accounts are still being used and which not.
 
Okay, please attempt to update again and post the result. If it fails attach the lastest CBS logs.
 
Please run the command diskmgmt.msc and provide a screenshot of Disk Management to check if the EFI partition exists.
 
Please run the following commands in an elevated prompt and copy and paste the result in your next post.
Code:
reagentc /info
diskpart
list disk
sel disk 0
list part
 
Theoretically this is possible, yes, I would have to wait for our external service provider.

But would there be data loss here?

As far as I know the Virtual Machines wasn't installed with a system reserved Partition.
 
The CBS logs showed the following:
Rich (BB code):
2024-07-08 17:45:12, Info                  CSI    00000ab1 BFSVC: 'ServiceBootFiles MuiOnly:n Res:n Fonts:n BootMgrOvw:nBootStatOvw:n DbgTransports:y CreateSetupObj:n SuspendBDE:n Offline:n'

2024-07-08 17:45:12, Info                  CSI    00000ab2 BFSVC: 'Failed to get system partition! Last Error = 0x3bc3'

2024-07-08 17:45:12, Info                  CSI    00000ab3 BFSVC: 'ServicingBootFiles failed. Error = 0x3bc3'

2024-07-08 17:45:12, Error                 CSI    00000ab4@2024/7/8:15:45:12.775 (F) onecore\base\wcp\plugins\bfsvc\bfsvc.cpp(536): Error HRESULT_FROM_WIN32(15299) originated in function Windows::WCP::Bfsvc::BasicInstaller::Install expression: HRESULT_FROM_WIN32(ErrorCode)
[gle=0x80004005]

Error 0x3bc3 means The requested system device cannot be found ~ ERROR_SYSTEM_DEVICE_NOT_FOUND

In this case the 99 MB or the 200 MB partition is the issue as it seems.
 
Ok, thank you, i will contact my external service provider. But I think this will be tomorrow.
 
When you can boot from the ISO in the RE environment you can rebuild the EFI partition with the following instructions.

1. Boot the computer into the Recovery Environment - open the command prompt and run the following commands.
2. Replace 0 with the actual number of the HDD/SSD where Windows is installed.
Rich (BB code):
diskpart
list disk
select disk 0
list partition
3. Then run the following command and replace 1 with the actual number of the Windows OS partition.
Rich (BB code):
select partition 1
4. The following commands will resize the Windows OS partition and create the new EFI System Partition. (Note: the driveletter W should be free!)
Rich (BB code):
shrink desired=100
create partition efi size=100
format quick fs=fat32
assign letter=w
5. Run the following commands to list the partitions and volumes.
Code:
list partition
list volume
6. Note the drive letter where the Windows OS is installed, which is displayed after running list volume.
7. Close diskpart.
Code:
exit
8. Run the following command: Replace X with the volume letter of the Windows OS partition.
Code:
bcdboot X:\windows /s W:
9. Now the BCDBoot command copies the boot files from the Windows partition into the EFI System Partition and re-create the BCD store.
 
I am now able to boot from the File, maybe I do something wrong, the Windows OS is installed on Volume 1 (partition 3)

But I get an Error:

1720523313995.png
1720523409704.png

Edit:

I am stupid, i selected the wrong partition.


Edit 2 :

I getting this Error Message:

1720523622196.png
 
Back
Top