Skip to main content

Change the Administrator password without knowing.

Best Laptop For Student Click Here To Know
Friends.

Did you know how to change the Administrator Account Password if you don't know.

So lets start:-

1. Click on Run Button

2. Type control and click ok.

3. Double click on Administrative Tools

4. Select Computer Management Options.

5. Double Click on Local User and Group Option and Select User options.

6. In Side Panel you see the list of Account 

7. Right click on particular account and then select Set Password option.

8. Input the password and then click ok.


Comments

Post a Comment

Popular posts from this blog

Multiple Inheritance

Multiple Inheritance In multiple inheritance a class can access the property of more than one class. This inheritance is use for multiple accessing of properties. In multiple inheritance ambiguty is  occured when same name function is declare in both class and the object is confuse with function is called.  syntax − class derived-class: access baseA, access baseB.... Where access is one of public, protected, or private and would be given for every base class and they will be separated by comma as shown above. Let us try the following  example − #include <iostream.h> #include <conio.h>  // Base Class class Shape  {    public:       void getwidth(int w) {          width = w;       }       void getheight(int h) {          height = h;       }           prot...

CODD RULES of RDBMS

Codd’s rules for RDBMS (i)                 The information rule. (ii)              Guaranteed access of   data (iii)            Systematic treatment of null value. (iv)            On line DB support. (v)              Comprehensive sup-language rule. (vi)            The view update rule. (vii)         Insert update rule. (viii)       Physical data independence. (ix)            Logical data independence. (x)              Integrity rule (xi)  ...