Skip to main content

TOP 10 NOTEPAD TRICKS,COMMAND

1. Create Diary on Notepad

This Notepad trick will allow you to create Notepad note in such a format that whenever you edit your note, it will get saved with date and timestamp automatically. To do this, follow these steps:

  • 1.Open Notepad
  • 2.Type .LOG in first line.
  • 3.Save the file as Log.txt
  • Now, write something to the file and it will automatically get saved with edited date and time.



  • 2. Force Shutdown Your Windows

    This trick will let you force shutdown your Windows in a single-click. So, if you don’t want to waste three clicks (Start >> Turn Off Computer >> Turn Off), this trick will help you in that. To do this:
    1. Open Notepad
    2. Paste @echo off in first line.
    3. Paste msg * Shutdown computer in second line.
    4. Paste shutdown -c “Sleep Tight” -s in third line
    5. Save the file with .BAT extension. For example, shutdown.bat
    6. Click on your file and it will automatically shutdown your Windows

    3. Create Password-protected Folder using Notepad

    Why to use any folder-locking software when your simple text editor, Notepad can lock your folders? To use this Notepad tricks, follow these steps:
    • Open Notepad
    • Copy the following code:
    @ECHO OFF
    title Folder Private
    if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK
    if NOT EXIST Private goto MDLOCKER
    :CONFIRM
    echo Are you sure you want to lock the 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 Private “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 folder
    set/p “pass=>”
    if NOT %pass%== Aashish goto FAIL
    attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
    ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” Private
    echo Folder Unlocked successfully
    goto End
    :FAIL
    echo Invalid password
    goto end:MDLOCKER
    md Private
    echo Private created successfully
    goto End
    :End
    • Aashish written in red is password. Change it to your own password.
    • Save the file as private.bat with File Type As All Files (*.*).
    • Now, when you click private.bat, it will create a Private folder. Move your private files, documents and folders here.
    • Close Private folder.
    • Now, no one will be able to open the folder without the password.


    4. Make CD Drive Open & Close Again and again

    This notepad prank will make your CD drive open and close again and again continually. To use this notepad trick, use these following steps:
    1.      Open Notepad
    2.      Enter following command:
    Set oWMP = CreateObject(“WMPlayer.OCX.7″)
    Set colCDROMs = oWMP.cdromCollection
    do
    if colCDROMs.Count >= 1 then
    For i = 0 to colCDROMs.Count – 1
    colCDROMs.Item(i).Eject
    Next
    For i = 0 to colCDROMs.Count – 1
    colCDROMs.Item(i).Eject
    Next
    End If
    wscript.sleep 5000
    loop
    1. Save your notepad file as cdopen.vbs
    2. Now, open cdopen.vbs and it will start the process to continuously open and close CD drive.
    To stop the process, open Task Manager by pressing Alt+Ctrl+Del and stop cdopen.vbs process.

    5. Make Computer To Speak Your Sentence

    This Notepad trick will make computer to speak whatever you type in the provided text-box. To use this trick, follow these steps:
    1. Open Notepad
    2. Copy & paste this command:
    Dim message, sapi
    message=InputBox(“What do you want me to say?”,”Speak to Me”)
    Set sapi=CreateObject(“sapi.spvoice”)
    sapi.Speak message
     
    1.  Save the file as speak.vbs.
    2. Double-click the file and it will open a prompt. Enter the sentence you want your computer to speak
    3. Click OK and Notepad will speak the sentence for you



    Comments

    Post a Comment

    Popular posts from this blog

    Hack Website with Sqlmap Using Termux In Android | Install Sqlmap In Termux

    Install Sqlmap In Termux Now First we need to Install Sqlmap Termux. Then Dump the vulnerable website database with sqlmap. Sqlmap is an open source penetration testing tool that automates the process of detecting and exploiting SQL injection flaws and taking over of database servers. Remember: Please do not use this method for illegal or malicious activities because hacking is crime. If you do this then it’s can land you in jail. Sqlmap Installation Command In Termux: Now paste this command into termux:    apt update && apt upgrade -y   apt install git -y   git clone https://github.com/sqlmapproject/sqlmap   cd sqlmap Now must install python   apt install python -y   chmod 777 sqlmap.py Now run this    python sqlmap.py Enjoy : )

    September 14, 2017Hunner Framework In Termux

    Hunner Framework In Termux, Here we’ll Talk about new framework, Hunner. Let’s we’ll discuss about what it does do qnd what nodule help to penetrate the system. Module: You can find website vulnerability Module: You can ddos on website Module: You can brute force on mail account Remember: Please do not use this method for illegal or malicious activities because hacking is crime. If you do this then it’s can land you in jail. Hunner Framework Installation Command: First you need to Install    apt install python && apt install git -y Now    git clone https://github.com/b3-v3r/Hunner Move into    cd Hunner   chmod 777 hunner.py Now Hit this command    python hunner.py

    START PROGRAMMING WITH C++

    # WHAT IS PROGRAM.? The set of instructions given to the computer in order to perform some specific task is known as program. #WHAT IS PROGRAMMING LANGUAGE.? It was the Medium of writing the program i.e it is the medium of giving instruction to the computer in order to perform a specific task. #DEVELOPMENT OF C++ C++ was developed in 1779 by    BJRANE STROUSTRUP  .  It was developed in  AT&T Bell lab.                            ( Click here to know more about development of C++ ) When C++ was developed its first name was "C with Classes" the after in year 1984 Bjarne  friend   " RICK MASCITTI "  c hange the into C++, where ++ means increment and decrement  operator.