Showing posts with label Tools and Techniques. Show all posts
Showing posts with label Tools and Techniques. Show all posts

October 26, 2013

Windows 8.1 Password Resolved

In daily use, we do not really prefer to always type a long password that we have for our live account. Instead, what we can do is, we can very easily alter it or you can say bypass it by applying the following procedure.

Click on the search in the right panel as shown in the figure below.

 

1

 

After you click on search, the following panel will open. Type password. Here you see, as highlighted in the figure below. Click on “Sign-in options”.

 

 2

 

Now, here you have different options, the most suitable and easier way is to have a four digit pin.

Click, on the change button in the “PIN” option which is the third one here.

 

3

 

First it will prompt you to enter your Hotmail account password which you are using to log into your windows.

Enter your password. As i did mine in the following diagram.

 

 4

 

Now, enter your four digit pin number.

 5

 

Like this.

 

 6

 

And here you go, now when you want to log into your windows you will just have to enter the pin and it logs in.

 

C program to Read From a File

#include <stdio.h> #include <stdlib.h> void main() {     FILE *fptr;     char filename[15];     char ch;   ...