Thursday, October 27, 2011

आप का कंप्यूटर कब शटडाउन हुवा था ?

अगर आप ये जानना चाहते है की आप का कंप्यूटर आखिर बार कब शटडाउन हुवा था तो सब से पहले स्टार्ट बटन को क्लिक कीजिये और फिर उस में event viewer टाइप कीजिये फिर खुले हुवे विंडो में सब से उपर आप को event viewer लिखा हुवा दिखेगा उसको क्लिक कीजिये |
अगर आप के पास Window XP है स्टार्ट बटन को क्लिक कीजिये और फिर रन बॉक्स को खोलिए और उसमे eventvwr.msc टाइप कीजिये और ओके दबा दीजिये |    



event viewer क्लिक करने के बाद एक विंडो खुलेगा उसमे बाये कलम में Window Log को क्लिक कीजिये और फिर System को क्लिक कीजिये |   


System को क्लिक करने के बाद विंडो के बिच वाले हिस्से को एस्क्रोल कीजिये और फिर Event 6006 को ढूंढ़ के क्लिक कीजिये| 


जब आप Event 6006 को क्लिक कीजियेगा तो एक विंडो खुलेगा जिसमे आप को आप के कंप्यूटर का पिछला शटडाउन टाइम और तारीख लिखा हुवा दिखेगा |  





 Subscribe via Google SMS Channel

VLC मिडिया प्लयेर में किसी विडियो को रोटेट करने का तरीका

VLC मिडिया प्लयेर में अगर आप चाहे तो किसी भी विडियो को रोटेट यानि घुमा सकते है |
विडियो को रोटेट करने के लिए सब से पहले विडियो को vlc मिडिया प्लयेर में प्ले करे |
उसके बाद उपर लिखे TOOLS को क्लिक करे |
Tools को क्लिक करने के बाद एक छोटा सा विंडो खुलेगा उसमे Effects and Filter को क्लिक करे|
अगर Effects and Filter का आप्शन नहीं है तो Extended Setting को क्लिक करे |    



Effects and Filter को क्लिक करने के बाद एक और विंडो खुलेगा उसमे उपर की ओर लिखे Video Effects को क्लिक कीजिये फिर Geometry को क्लिक कीजिये ओर फिर निचे लिखे Rotate को टिक कर दीजिये|
हो गया काम ख़तम अब निचे दिख रहे गोले को आप जिधर घुमाएंगे विडियो उधर ही रोटेट होगा|
    

अगर आप VLC में ऑडियो को अपने अनुसार अडजस्ट करना चाहते है तो Effects and Filter को क्लिक करने के बाद जो विंडो खुलेगा उसमे उपर के टेब में Audio Effects को क्लिक कर दीजिये और फिर Graphic Equalizer को क्लिक कीजिये और Enable को टिक कर दीजिये,अब आप अपने अनुसार ऑडियो को अडजस्ट कर सकते है |  





 Subscribe via Google SMS Channel

How to change your facebook theme

Bored with the same BLUE&WHITE facebook theme This is a very cool trick to change theme of your facebook profile and make it cool ... just look at my facebook page  below ... is'nt it looking cool..! huuha now i'll explain you how to do it in this post ....


BEFORE INSTALLING THEME
  

AFTER INSTALLING THEME


Requirement: The basic requirement for this to work is to have Mozilla Firefox 3.5 or higher





Steps To change facebook theme: The following steps should be carried out to successfully change Facebook theme.

  •    Follow the basic steps and install the addon.

  •     Restart Firefox after successfully installing the stylish addon.

  •     Login to your Facebook Account and click on the small 'S' button in your Firefox status bar.Stylish Button 
    •     Click on "Find Styles for this Site" to open a new tab with free themes to use for Facebook.

    •     Click on any theme and a preview will be shown.

      •     If everything is fine in the previewed theme, click on "Install with Stylish" button at the top right corner of the page
      Install with stylish
      .

        •     A dialog box will open.
        Installing Ferrari theme for Stylish Firefox


          •     Click on Install in the dialog box.
          Now your facebook will look different depends upon which theme you selected. 
          like I selected this One...cool naa..! enjoy..


            How to lock any file or folder without any software


            Most of us have private data. Not all of us have a private computer to keep that data. So, we just end up with other people viewing that data. Although password protecting software do work, it is almost useless to hide private data with these software(because we are always questioned as to what it is that we are hiding with the help of these software).


            Hidden folders do not work as they can be easily searched with Windows Search. So, we need an alternative way to create hidden password protected folders which only we can access. And that is exactly what we will learn in this post.

            With this trick, you can create a secure password protected folder in Windows which no one except you can access. To use this trick, follow the instructions given below:-

            • 1.  Open Notepad.
            • 2.  Copy and paste the exact code given below:-



            cls
            @ECHO OFF
            title computer-tricks-corner.blogspot.com
            if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
            if NOT EXIST MyFolder goto MDMyFolder
            :CONFIRM
            echo Are you sure to lock this folder? (Y/N)
            set/p "cho=>"
            if %cho%==Y goto LOCK
            if %cho%==y goto LOCK
            if %cho%==n goto END
            if %cho%==N goto END
            echo Invalid choice.
            goto CONFIRM
            :LOCK
            ren MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
            attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
            echo Folder locked
            goto End
            :UNLOCK
            echo Enter password to Unlock Your Secure Folder
            set/p "pass=>"
            if NOT %pass%== computer-tricks-corner.blogspot.com goto FAIL
            attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
            ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
            echo Folder Unlocked successfully
            goto End
            :FAIL
            echo Invalid password
            goto end
            :MDMyFolder
            md MyFolder
            echo MyFolder created successfully
            goto End
            :End
            • 3.  Click on the File Menu. Click on Save As.
            • 4.  Select All Types (or all files) in the Save As Type dropdown menu. Save the file as *.bat or Locker.bat 
            After creating the file, double click on the Saved file. A new folder will be created. Enter your data in the folder. Again, double click on the batch file. Type Y and press Enter. The folder will be hidden from view.

            To re-view your folder, double click on the saved batch file. Enter password as 
            " computer-tricks-corner.blogspot.com " without quotes ("") and press Enter key. This is also the default password. Your folder will be visible again.

            To change the default password, edit the part of the code given in blue and enter your own password.


            The overall usability of this trick can be improved by deleting the batch file after hiding your folder and re-creating it when you wish to access your folder again.


            If you face any problem using this trick, you can write a comment and I will do my best to help you.


            Note
            : This works on Windows 7, Windows XP and Vista. First try this on useless data to be sure and then only hide your personal data.