Skip to main content

How to start learning Web-development

Start menu are not open and showing " Critical Error"

How we solve start menu showing critical error -

Hello friends 
here we tell you about a critical problem of window 10 where the windows 10 start menu are not opening and showing critical error on desktop and here you are getting the simple solution of this problem and the solution of the problem is reset of your device and this is the one and last solution of this issue to reset your device by going your setting and format it if you have any important document , file , Photos , videos e.t.c are in your PC or laptop so you please take backup of that document for safer side else if you choose reset only windows application not your personal file then your files are doesn't effected by reset or formatting data by going 

YOU HAVE TO GO ON SETTING THEN UPDATE AND SECURITY THEN RECOVERY AND THEN GO TO RESET THIS PC 
 

After you clicking on reset pc you can get option to delete all personal files , pictures , videos or option to delete / reset only windows setting so this is all up to you which option you have to choose according to your preference if you want to fully RESET your pc you can go with second option which delete your pc fully.


Second Method of this problem -

In youtube videos and blogs identify that the issue was automatically resolve by rebooting or restarting into Safe-Boot mode by using MSConfig then from within Safe Mode again launching MsConfig, deselecting Safeboot, and rebooting. in this problem you can't do anthing and window shows error like it was corrupt I didn't suggesting a system reboot as a ‘repair’ of a problem since this does not to repair a system configuration problem. repair a setting , but totally removes your ability to capture or view the current system state since the reboot clears active settings.
 
In the windows 10 the problem is apparently related to operating system version, and may have been repaired in the more recent Windows 10 releases. Microsoft have not closed the door on the problem, and is still asking for examples from anyone for who have face the issue on it  Yet the recent Microsoft help pages suggest that the problem is now rare rather than the commonly with which it was occurring shortly after Windows 10 release and they solved it very well if you see this error  you have to reset you pc .

and the solution of this error is to reset our pc or in simple word format out windows which fix this error and we have less issues so for formatting pc go to setting and reset search and then reset it .

Also you can search this error problem in youtube and you can get videos on that praticular topic but i face this error issue and this cant be solve by simple method so simply Reset your windows and there is no requirement of  fully format or reinstall of windows in your computer .

Please take backup of the hard disk in case you lost your data by mistake  but if you have any backup you can be headaches free from your side so thats all for this blog 

thankyou for reading this






Comments

Popular posts from this blog

Funcation in c++ programming example in detail

Friend Funcation- 1. Adding to complex number in friend function #include<iostream> using namespace std; class container { float a,b; public: void get() { cout<<endl<<"Enter value for A="; cin>>a; cout<<endl<<"Enter value for B="; cin>>b; } void disp() { cout<<endl<<a; cout<<endl<<b; } friend container addition(container,container); }; container addition(container X,container y) { container Z; Z.a=X.a+y.a; Z.b=X.b+y.b; return Z; } int main() { container P,Q,R; P.get(); P.disp(); Q.get(); Q.disp(); R=addition(P,Q); R.disp(); return 0; } Output - Enter value for A=12 Enter value for B=12 12 12 Enter value for A=1 Enter value for B=1 1 1 13 13 2.  If class one is friend function of two it not means that two is friend functio...

C++ programming tutorial 2

Control statement in C++ PROGRAMMING - 1. if-else statement :    there are types below of if else statement so they are -     1. if-statement      In this if statement a condition was entered if the condition was match or say what we write in condition on it was true then program was run if it was false then the program in if statement was not run . Syntax - if(Condition){ //code you want to run } PROGRAM - // if-else statement  #include <iostream> using   namespace  std; int   main () {      int   a  ;      cout << "If the entered integer in equal to the condition they it run " << endl ;      cin >>   a ;      if ( a <= 6 )     {          cout << "Program was running" ...

C++ programming tutorial 5

 Call by value or reference - There are two type in function call by value or call by reference in it we pass the value in call by value we pass value and in call by reference we pass the reference of the value . Call by value in C++ Programming language  :- In call by value we pass the variable or say argument and then it used by function which we made so see the code given below  Syntax - #include <iostream > using namespace std; // making function  void fun_name(int a, int b) { ... } int main() { //calling function  fun_name(int n,int n1); return 0; } Code -  // function call by value in C++ programming #include <iostream> using namespace std; // call by value in function declaration void container(int a, int b); int main() {   int x,y;   cout<<"Enter the value of x :"<<endl;   cin>>x;   cout<<"Enter the value of y :"<<endl;   cin>>y;   // here we passing the value as argume...