Skip to main content

HOW TO SOLVE WINDOWS 10 BLACK SCREEN WITH CURSOR PROBLEM

Perhaps you have done some updates or installed new software on your windows computer and then all you can see after logging in is a black screen with a white mouse cursor. Something more like this..


This could have happened due to some malware or some system update that is conflicting with your system settings.

There are various methods you can solve this;

- Manually correcting the user shell

- Troubleshooting from advanced start-up option.

Method 1: Manually correct the user shell

1. Open task manager while on the black screen. Press the keyboard combination Ctrl+Alt+Del or right-click at the bottom part of your black screen then move three times with your upper arrow key and press enter to open task manager.
2. A task manager window will show. Go to File >> Run new task >> type in regedit >> check the checkbox (create this task with administrator privileges) >> then click OK.
3. Double click / Expand the HKEY_LOCAL_MACHINE folder.
4. Double click / Expand the SOFTWARE folder.
5. Double click / Expand the Microsoft folder.
6. Double click / Expand the Windows NT folder.
7. Double click / Expand the Current Version folder.
8. Left click once on the winlogon folder then you will see files load on your right side screen.
9. Find "shell" (double click on it to open).
10. Make sure the value data is explorer.exe if it's something else, Delete and replace it with explorer.exe

Method 2: Using troubleshooting tools from the advanced startup option

In this method, you will boot in safe mode into your computer if you suspect the problem could have occurred due to some software you installed. You will boot in safe mode then your computer will boot in a safe mode. You will then uninstall that program you installed recently then restart your PC to boot in normal mode.

1. While on the black screen, open task manager; Ctrl+Alt+Del.
2. Press and hold the shift key (don't release this key yet) then go to power options and select restart while you keep pressing on shift till you see a blue window appear (advanced startup window).
3. Select troubleshoot.
4. Advanced options.
5. Startup settings
6. Press Restart
7. Select "safe mode" press F4 or 4
8. Once it finishes booting up, search for "Add or remove programs" in your windows all programs >> Find the program you had installed recently and suspect it.
9. Restart again to boot in normal mode.



Comments

Popular posts from this blog

ACTIVATING MS OFFICE WITHOUT KEY

Step1 Open cmd as admin Step2 copy office directory Step3  Go to office directory, type cd on cmd then paste the office directory you copied e.g., for a 64-bit machine it will look like this. cd C:\Program Files (x86)\Microsoft Office\Office16 Step4 Type in the following commands into cmd then hit enter after every command: cscript ospp.vbs /inpkey:XQNVK-8JYDB-WJ9W3-YJ8YR-WFG99 cscript ospp.vbs /unpkey:BTDRB >nul cscript ospp.vbs /unpkey:KHGM9 >nul cscript ospp.vbs /unpkey:CPQVG >nul cscript ospp.vbs /sethst:kms8.msguides.com cscript ospp.vbs /setprt:1688 cscript ospp.vbs /act METHOD 2 Copy script https://gist.github.com/amitbd1508/fe64e926005c85d424e8e79a943b3b60 @echo off title Activate Microsoft Office 2019 (ALL versions) for FREE - MSGuides.com&cls&echo =====================================================================================&echo #Project: Activating Microsoft software products for FREE without additional software&echo =====================...
1. activity_main.xml Inside the activity_main.xml. <? xml version ="1.0" encoding ="utf-8" ?> <androidx.constraintlayout.widget.ConstraintLayout xmlns: android ="http://schemas.android.com/apk/res/android" xmlns: app ="http://schemas.android.com/apk/res-auto" xmlns: tools ="http://schemas.android.com/tools" android :layout_width ="match_parent" android :layout_height ="match_parent" tools :context =".MainActivity" android :background ="#182b5c" > <WebView android :layout_width ="match_parent" android :layout_height ="match_parent" android :id ="@+id/webView" android :layout_alignParentLeft ="true" android :layout_alignParentStart ="true" android :layout_alignParentTop ="true" android :layout_alignParentRight ="true" android...
 HOW TO USE MESSAGE BOX TO DISPLAY OUTPUT FROM A SELECTION CASE IN VB Public Class Form1     Dim mark As Double     Private Sub txtTest_TextChanged(sender As Object, e As EventArgs) Handles txtTest.TextChanged     End Sub     Private Sub btnok_Click(sender As Object, e As EventArgs) Handles btnok.Click         mark = Double.Parse(txtTest.Text)         Select Case (mark)             Case 0 To 49                 MsgBox("Fail!", MsgBoxStyle.Information, "COMMENT")             Case 50 To 64                 MsgBox("Pass", MsgBoxStyle.Information, "COMMENT")             Case 65 To 74                 MsgBox("Credit", MsgBoxStyle.Information, "COMMENT")             Case 75 To...