Windows 10 Issues upgrading to Windows 10 - Solved

Johncoool

Fantastic Member
Joined
Dec 20, 2016
Messages
218
I am finally upgrading the expired windows 8.1 to 10. But while facing a lot of issues.

I am not looking for a solution. I just want assistants to find or create logs of the bootup.

Please find below full details on the work done so far over the past few days with failure.

Clean install works without any issues but upgrading to the latest version of Windows 10 works until the 1st boot up. Then it just gets stuck on the splash screen and the dots spin for ever.

I created image backup of the windows 8.1 because it is important to keep the same configuration.

I can upgrade to an older version of Windows 10 and it works fine until I run windows update and then the same thing happens again. So the conflict happens with something in the latest windows version.

I am assuming it is a driver conflict. However what I need is a way to view a log to find the issue.

I tried enabling the boot log and os boot info in msconfig but that only shows logs of successful boot ups.

What method can I use to view boot details/ conflicts to find the issue. Not much helpful information in event viewer either or maybe I don't know the exact place to find it.

It might work better if it was booting as an os in VM ware then I can probably view logs.

Clean boot didn't work either. I am still able to access safemode.
 
Solution
It sounds like you're experiencing some difficulties with upgrading to Windows 10 and are looking for assistance in finding or creating logs of the bootup process. I can certainly help you with that! To troubleshoot the issue and find the cause of the problem, there are a few methods you can try:
  1. Enable verbose logging: You mentioned that you tried enabling boot logs and OS boot info in msconfig, but they only show logs of successful bootups. To enable verbose logging that captures more detailed information during the boot process, you can use the following steps: a. Press Win + R to open the Run dialog box, then type "regedit" and press Enter to open the Registry Editor. b. Navigate to the following key...
It sounds like you're experiencing some difficulties with upgrading to Windows 10 and are looking for assistance in finding or creating logs of the bootup process. I can certainly help you with that! To troubleshoot the issue and find the cause of the problem, there are a few methods you can try:
  1. Enable verbose logging: You mentioned that you tried enabling boot logs and OS boot info in msconfig, but they only show logs of successful bootups. To enable verbose logging that captures more detailed information during the boot process, you can use the following steps: a. Press Win + R to open the Run dialog box, then type "regedit" and press Enter to open the Registry Editor. b. Navigate to the following key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System c. Right-click on an empty space on the right pane, select New > DWORD (32-bit) Value, and name it "VerboseStatus". d. Double-click on the "VerboseStatus" entry and set its value to "1". e. Restart your computer and check if the boot logs now provide more detailed information.
  2. Check the Event Viewer: The Event Viewer is a helpful tool for troubleshooting Windows issues, including boot problems. To access it, you can follow these steps: a. Press Win + R, type "eventvwr.msc", and press Enter. b. In the Event Viewer window, expand the "Windows Logs" section and check the "System" and "Application" logs for any errors or warnings related to the boot process. c. Look for specific event IDs, such as 41 (Kernel-Power) or 1001 (BugCheck), which might provide clues about the source of the problem.
  3. Enable startup debugging: If the above methods don't provide enough information, you can enable startup debugging using the Windows Debugger (WinDbg). This advanced method requires additional technical knowledge, so if you're comfortable with using a debugger, you can follow these steps: a. Install the Windows Debugger (WinDbg) tool from the Windows SDK. b. Open WinDbg and go to File > Kernel Debugging > Local. c. In the "COM" section, select the appropriate port and baud rate for debugging, then click OK. d. Restart your computer and allow WinDbg to capture the boot process. e. Monitor the WinDbg output for error messages or warnings related to the boot process. Regarding your comment about booting as an OS in VMware to view logs, that can be a viable option if you have experience with virtualization. You can install Windows 10 as a virtual machine using VMware, and then capture the boot logs directly from within the virtual environment. I hope these methods help you identify the cause of the issue and find a resolution. If you have any further questions or need more assistance, please feel free to ask!
 
Solution
i m trying to install windbg. give me full method on how to install on older windows like windows 7 or 8 and then how to configure to complete boot information request.
 
There is no BSOD. So how will I get the crash dump? it just hangs at the splash screen.
 
Give me other tools or a way to view or create boot log
 
what can cause the windows to get stuck on a splash screen. give me all possibilities.
 
is there a way to view the boot up process live the was it was possible when booting into safe mode in older windows. but on normal boot up.
 
give me a list of the mentioned 3rd party tools to create or views more details.
 
Isolate the software or tools that work during the process that occurs from the power on until the login screen. I dont need to review programs after the login screen.
 
The upgraded worked after I installed some programs.

Programs are AVG Antivirus.

AVG Tune up 2015. CCleaner old version and Tinywall.
 
How do I activate Windows if it failed by getting Microsoft assistance.

Is there way to do it without calling them such as by live chat.
 
How do I activate Windows if it failed by getting Microsoft assistance.

Is there way to do it without calling them such as by live chat.
 
Ah, the joys of debugging! Installing WinDbg on an older Windows version like Windows 7 or 8 is like preparing for a magic trick: it might seem complicated, but I promise the illusion of solving your problems is lurking just around the corner. Here’s how you can install it and configure it for boot logging:

Step 1: Install WinDbg​

  • Download the Windows SDK:
  • Head over to the https://developer.microsoft.com/en-us/windows/downloads/windows-10-sdk.
  • Even though it mentions Windows 10, don’t worry! It’s backward compatible. Download the appropriate version for your system. [*Run the Installer:
  • Launch the downloaded installer.
  • When prompted, select the components you wish to install. Look for "Debugging Tools for Windows" and ensure it is checked.
  • Complete the installation process. This will install WinDbg on your system.

Step 2: Launch WinDbg​

[*Find WinDbg:
  • After installation, you can find WinDbg in your Start Menu under Windows Kits or Windows SDK.
  • Alternatively, you can navigate to the installation directory (usually C:\Program Files (x86)\Windows Kits\10\Debuggers\x64 or similar) and launch windbg.exe.

Step 3: Configure WinDbg for Boot Logging​

[*Edit Boot Configuration:
  • Open a command prompt with administrative privileges. You can do this by searching for "cmd" in the Start Menu, right-clicking on it, and selecting “Run as administrator.”
  • Enter the following command to enable boot logging: bcdedit /setBOOTLOGYES [*Enable Kernel Debugging:
  • Still in the command prompt, type the following command: bcdedit /debug on
  • This step is important for capturing detailed boot information. [*Restart Your Computer:
  • After making these changes, restart your system to apply the new configurations.
  • During the boot process, Windows will generate a log file located at C:\bootlog.txt.

Step 4: Open the Boot Log in WinDbg​

[*Setting the Symbol Path:
  • Before analyzing boot logs, set the symbol path in WinDbg. Do this by entering the following command in the WinDbg command window: .sympath srv[I]C:\Symbols[/I][url="http://msdl.microsoft.com/download/symbols%5B/ICODE%5D(http://msdl.microsoft.com/download/symbols%5B/ICODE"]http://msdl.microsoft.com/download/symbols(http://msdl.microsoft.com/download/symbols%5B/ICODE[/url])
  • This will help WinDbg understand the various symbols used during the boot process. [*Load the Boot Log:
  • Use the File -> Open Crash Dump option in WinDbg to select the bootlog.txt file that was created during boot. [*Analyze the Log:
  • Now, you can start analyzing the boot log! Look for any warning or error messages and see if they lead you to a resolution.

Additional Tip:​

  • F6 during Boot: If you want to dive deeper, holding the F6 key while booting can initiate advanced startup options, giving you more control over logging and troubleshooting. And there you have it! You’re now equipped with the tools to unravel the mysteries of booting on your older Windows system. If you hit any snags, feel free to ask for more guidance—debugging can be a slippery slope!