bootstat is just Windows boot-status tracking. It will not tell us why the repair/update failed with:0xC1900101Test-Path 'C:\$Windows.~BT'Get-ChildItem 'C:\$Windows.~BT\Sources' -Force | Select-Object Name,Mode,LastWriteTimeC:\$Windows.~BT\Sources\Rollback
C:\$Windows.~BT\Sources\Panther
Get-WinEvent -FilterHashtable @{LogName='System'; Id=1001,41,6008} -MaxEvents 20 | Format-List TimeCreated,Id,ProviderName,Messagewevtutil epl Setup "$env:USERPROFILE\Downloads\Setup.evtx"wevtutil epl Microsoft-Windows-WindowsUpdateClient/Operational "$env:USERPROFILE\Downloads\WindowsUpdateClient.evtx"Setup.evtx
WindowsUpdateClient.evtx
C:\$Windows.~BT\Sources\Rollback
C:\$Windows.~BT\Sources\Panther
0xC1900101 failure plus the PAGE_FAULT_IN_NONPAGED_AREA blue screen still points toward a driver/setup rollback problem.setupact.log alone is about:372,410 KBsetuperr.log
SetupPlatform.Drivers.ini
SetupPlatform.ini
rollbackinfo.ini
diagerr.xml
diagwrn.xml
WinSetupMon.log
FolderMoveLog.TXT
setupact.log$src='C:\$Windows.~BT\Sources\Rollback'
$dest="$env:USERPROFILE\Downloads\WU-Rollback-Small"
New-Item -ItemType Directory -Force $dest | Out-Null
Copy-Item "$src\setuperr.log" $dest -Force -ErrorAction SilentlyContinue
Copy-Item "$src\SetupPlatform.Drivers.ini" $dest -Force -ErrorAction SilentlyContinue
Copy-Item "$src\SetupPlatform.ini" $dest -Force -ErrorAction SilentlyContinue
Copy-Item "$src\rollbackinfo.ini" $dest -Force -ErrorAction SilentlyContinue
Copy-Item "$src\diagerr.xml" $dest -Force -ErrorAction SilentlyContinue
Copy-Item "$src\diagwrn.xml" $dest -Force -ErrorAction SilentlyContinue
Copy-Item "$src\WinSetupMon.log" $dest -Force -ErrorAction SilentlyContinue
Copy-Item "$src\FolderMoveLog.TXT" $dest -Force -ErrorAction SilentlyContinue
Get-Content "$src\setupact.log" -Tail 3000 | Out-File "$dest\setupact_tail_3000.txt" -Encoding utf8
Select-String -Path "$src\setupact.log" -Pattern "error","fail","rollback","bugcheck","0xC1900101","0x50","driver","PAGE_FAULT" -CaseSensitive:$false | Select-Object -Last 500 | Out-File "$dest\setupact_errors_extract.txt" -Encoding utf8
Compress-Archive -Path "$dest\*" -DestinationPath "$env:USERPROFILE\Downloads\WU-Rollback-Small.zip" -Force
C:\Users\Ron\Downloads\WU-Rollback-Small.zip0xC1900101PAGE_FAULT_IN_NONPAGED_AREA 0x50Retry
Retry all
Fix problems using Windows Update
KB5094126 manual install
setuperr.log
diagerr.xml
diagwrn.xml
rollbackinfo.ini
SetupPlatform.Drivers.ini
SetupPlatform.ini
WinSetupMon.log
MigLog.xml
LogRestore.TXT
FolderMoveLog.TXT
setupact.log yet.$src='C:\$Windows.~BT\Sources\Rollback'
$dest="$env:USERPROFILE\Downloads\WU-Rollback-Small"
New-Item -ItemType Directory -Force $dest | Out-Null
$files = @(
'setuperr.log',
'diagerr.xml',
'diagwrn.xml',
'rollbackinfo.ini',
'rollbackstate.dat',
'SetupPlatform.ini',
'SetupPlatform.Drivers.ini',
'WinSetupMon.log',
'MigLog.xml',
'LogRestore.TXT',
'FolderMoveLog.TXT'
)
foreach ($f in $files) {
Copy-Item (Join-Path $src $f) $dest -Force -ErrorAction SilentlyContinue
}
Compress-Archive -Path "$dest\*" -DestinationPath "$env:USERPROFILE\Downloads\WU-Rollback-Small.zip" -Force
C:\Users\Ron\Downloads\WU-Rollback-Small.zipsetuperr.log
diagerr.xml
diagwrn.xml
rollbackinfo.ini
SetupPlatform.Drivers.ini
SetupPlatform.ini
setuperr.logsetupact.logCode:Code: as a command, and of course it does not exist.Windows + R, paste this, and press Enter:%USERPROFILE%\DownloadsWU-Rollback-Small.zipdir "$env:USERPROFILE\Downloads" | findstr WU-RollbackWU-Rollback-Small
WU-Rollback-Small.zip
Code::$src='C:\$Windows.~BT\Sources\Rollback'
$dest="$env:USERPROFILE\Downloads\WU-Rollback-Small"
New-Item -ItemType Directory -Force $dest | Out-Null
$files = @(
'setuperr.log',
'diagerr.xml',
'diagwrn.xml',
'rollbackinfo.ini',
'rollbackstate.dat',
'SetupPlatform.ini',
'SetupPlatform.Drivers.ini',
'WinSetupMon.log',
'MigLog.xml',
'LogRestore.TXT',
'FolderMoveLog.TXT'
)
foreach ($f in $files) {
Copy-Item (Join-Path $src $f) $dest -Force -ErrorAction SilentlyContinue
}
Compress-Archive -Path "$dest\*" -DestinationPath "$env:USERPROFILE\Downloads\WU-Rollback-Small.zip" -Force
WU-Rollback-Small.zipC:\$Windows.~BT\Sources\Rollback\setuperr.log0xC1900101setupact.log . But I do not have the contents of the rollback log to read yet.C:\Users\Ron\Downloads\WU-Rollback-Small.zipC:\$Windows.~BT\Sources\Rollback\setuperr.logC:\$Windows.~BT\Sources\Rollbacksetuperr.logCtrl + A.Ctrl + C.0xC1900101PAGE_FAULT_IN_NONPAGED_AREA
0x50
setuperr.log or the small rollback zip.