Skip to main content

Windows installation cannot proceed

I ran into error while reinstalling Microsoft Windows 10 Pro on Lenovo T420 laptop.

The computer restarted unexpectedly or encountered an unexpected error. Windows installation cannot proceed...

Workaround

Press SHIFT + F10 to open Command line windows.
Run regedit.exe to open Registry Editor
Go to Computer\HKEY_LOCAL_MACHINE\SYSTEM\Setup\Status\ChildCompletion
Look for Setup.exe on the right pane



Doubleclick on Setup.exe on the right pane, change Value data from 1 to 3, press OK.



Press OK again to close Install Windows dialog.


Reboot. The installation will continue.

Popular posts from this blog

Apache Airflow: Notes

Apache Airflow is used to programmatically author, schedule and monitor workflows.

Fedora Workstation: Install snapd

[tuyen@g73jh ~]$ sudo dnf -y install snapd Last metadata expiration check: 0:20:17 ago on Tue 01 Oct 2019 11:31:30 AM +07. Dependencies resolved. ================================================================================ Package Architecture Version Repository Size ================================================================================ Installing: snapd x86_64 2.41-1.fc30 updates 17 M Installing dependencies: snap-confine x86_64 2.41-1.fc30 updates 2.8 M snapd-glib x86_64 1.49-1.fc30 updates 133 k snapd-selinux noarch 2.41-1.fc30 updates 234 k Installing weak dependencies: gnome-software-snap x86_64 3.32.4-2.fc30 updates 86 k Transaction Summary ================================================================================ Install 5 Packages Total download size...

[Powershell]: Get-Date and commonly used date format

Get-Date and commonly used date format in powershell PS C:\Users\Administrator> get-date Thursday, June 25, 2015 9:42:24 AM PS C:\Users\Administrator> $today = get-date PS C:\Users\Administrator> echo $today Thursday, June 25, 2015 9:43:21 AM PS C:\Users\Administrator> $todayshort = get-date -format yyMMdd PS C:\Users\Administrator> echo $todayshort 150625 PS C:\Users\Administrator> $todaylong = get-date -format yyyyMMdd PS C:\Users\Administrator> echo $todaylong 20150625 PS C:\Users\Administrator>