Tuesday 5 March 2013

How to Know The Last Restarted Time Of The PC


It is always good to know useful tips and tricks when it comes to working with Command Prompt. So today I'm going to share a simple command with you that will tell you the exact timing on which you last restarted your PC. Well there is another way that allows you to see the last restarted time by going to the Event Viewer, but that is quite complex. Therefore, let me tell you a simple and straightforward way that contains only a single command.

Simply open the CMD and type the following into it and hit enter:
systeminfo | find /i "Boot Time"


It will take a couple of seconds to display the information. In case if you don’t want to open the CMD and want to see the information, then you need to open the Run box, type the following command and hit enter:
cmd /k systeminfo | find /i "Boot Time"


This is it, pretty simple and cool. Stay tuned for more cool tips and tricks.