background

Blazing Fast Full Premium Downloads

Enjoy whole new world of Softwares. Use Premium Features without purchasing One.

@Mediastar91 . Powered by Blogger.

Mediastar91

  • Home
  • Follow
    • Find us on Facebook
    • +1 us on Google+
    • Pin us on PinInterest
  • Contact me
    • Contact us
  • Download Google Chrome 35
  • Download CyberLink Director Suite 2.0

    VisitorZz


    Facebook Fanpage

    Showing posts with label Notepad. Show all posts



    3.jpg     2.jpg       1.jpg

       Adobe Acrobat reader always consumes more memory when it starts. The reason behind is, it loads all the plugins, even the plugins that you do not use. This trick is to remove all the plugins from the plugins directory to elsewhere. Hence, whenever you open Acrobat reader it directly opens the files without loading any plugins and the speed is just like Notepad.
     
    1. Go to the installation folder of acrobat reader
    (C:\program files\adobe\acrobat\reader\.. whatever)

    2. Move all the files and folders from the "plugins" directory to the "Optional" directory. (I repeat.. cut and paste the files NOT copy & paste).

    Also make sure that acrobat reader is not open else it will lock the files and not allow you to move the files).

    Now your acrobat reader will load very fast and almost as good as notepad.


    efsfsf.gif


    This is very good and interesting javascript trick which let your computer speaks whatever you type. There is no requirement of any software. Just follow below simple steps.

    First open Notepad and copy below codes

    1. Dim message, sapi
    2.       message=InputBox("What do you want me to say?","Mediastar91.tk")
    3.      Set sapi=CreateObject("sapi.spvoice")
    4.      sapi.Speak message
    Now save the notepad file as talk.vbs

    Now close the notepad file and open it again.

    Done !!!
    Notepad-Tricks.jpg
    Here are the 14 Notepad Tricks for you:
    1) Notepad trick to use it as a Diary
    Open notepad
    Type .LOG
    Save the file as LOG.txt
    Write anything in it and it will be saved with the time when you edit it.

    2) Notepad trick to Test Antivirus
    Open Notepad.
    Copy the code give below in the notepad file:
    X5O!P%@AP[4PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
    Save it with an .exe extension like testvirus.exe

    3) Matrix Notepad Trick
    @echo off
    color 2
    :start
    echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
    goto start
    Save this file as Matrix.bat
    Make sure the file type is kept as ALL FILES while saving it as a .bat file.
    Don't forget to Download Revo Uninstaller free.

    4) Notepad Trick to Open DVD Drive
    Open Notepad.
    Copy the code given below onto the notepad file:
    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
    Save it as “Anything.VBS”.
    You should also check out Windows 7 Keyboard Shortcuts which has all the keyboard tricks that you can think of.

    5) Notepad Trick to annoy your friends
    Open Notepad.
    Paste the following code in the notepad file:
    @ECHO off
    :Begin
    msg * Hey
    msg * Want to have Fun?
    msg * You do?
    msg * We will both have fun, alright?
    msg * More fun?
    GOTO BEGIN
    Save the file with any file name but with .bat as extension and close it. For eg. cool.bat

    6) Notepad Trick to shutdown computer forcefully
    Open Notepad.
    Paste the following code in it:
    @echo off
    msg * Shutdown computer.
    shutdown -c “Sleep Tight” -s

    7) Notepad Trick to Lock Folders
    Lets lock a folder using notepad trick which is named as PICS in your D: drive , whose path is DICS
    Then the code should be something like this:
    ren pics pics.{21EC2020-3AEA-1069-A2DD-08002B30309D}
    Pics is your folder name. Use the name of the folder in place for pics. Save the text file as lock.bat in the same drive.
    To unlock this locked folder:
    Open another new notepad text file and type the following:
    ren pics.{21EC2020-3AEA-1069-A2DD-08002B30309D} pics
    Save the text file as key.bat in the same drive. Here again, pics is the name of the folder. Change it to the folder name you want to lock it.
    Have you tried Internet Explorer 9 yet? It's free:
    Download Internet Explorer 9

    8 ) Notepad Trick to type slowly
    Open Notepad.
    Paste the following code in the notepad file:
    WScript.Sleep 180000
    WScript.Sleep 10000
    Set WshShell = WScript.CreateObject(“WScript.Shell”)
    WshShell.Run “notepad”
    WScript.Sleep 100
    WshShell.AppActivate “Notepad”
    WScript.Sleep 500
    WshShell.SendKeys “Hel”
    WScript.Sleep 500
    WshShell.SendKeys “lo ”
    WScript.Sleep 500
    WshShell.SendKeys “, ho”
    WScript.Sleep 500
    WshShell.SendKeys “w a”
    WScript.Sleep 500
    WshShell.SendKeys “re ”
    WScript.Sleep 500
    WshShell.SendKeys “you”
    WScript.Sleep 500
    WshShell.SendKeys “? ”
    WScript.Sleep 500
    WshShell.SendKeys “I a”
    WScript.Sleep 500
    WshShell.SendKeys “m g”
    WScript.Sleep 500
    WshShell.SendKeys “ood”
    WScript.Sleep 500
    WshShell.SendKeys ” th”
    WScript.Sleep 500
    WshShell.SendKeys “ank”
    WScript.Sleep 500
    WshShell.SendKeys “s! “
    Save the file with any name and with .vbs extension and close it.
    Now open the file and see how freakishly slow the messages appear!
    NOTE: In order to stop it. Follow the “Note” given in 10th Trick.

    9) Infinite Notepad Trick
    Open Notepad.
    Paste the following code in your notepad file:
    @ECHO off
    :top
    START %SystemRoot%system32notepad.exe
    GOTO top
    Save the file with any name nut with .bat extension and close it.
    10) Notepad Trick - Text to Audio
    Open Notepad file on your Windows PC.
    Copy and paste the below mentioned code :

    Dim msg, sapi
    msg=InputBox("Enter your text for conversion–www.techvorm.com","TechVorm Text-To-Audio Converter")
    Set sapi=CreateObject("sapi.spvoice")
    sapi.Speak msg
    Save this file with any name with .vbs as extension. For eg. Text-To-Audio.vbs
    11) Notepad Trick - BUSH HID THE FACTS
    Open notepad.
    Type BUSH HID THE FACTS
    Save that file.
    Close it
    Open It Again See…

    12) Notepad Trick Print Tree Root
    Open NOTEPAD and enter {print tree root}
    After that hit enter and type C:windowssystem
    After that hit enter and type {print C:windowssystemwinlog
    Hit enter and type 4*43″$@[455]3hr4~
    Then save the file as teekids in C:windowssystem.

    13) World Trade Center Notepad Trick
    Open your Notepad
    Type the flight number Q33N
    Increase the Font Size to 72
    Change the Font to Wingdings

    14) Notepad Trick to Format Hard disk
    Open Notepad and type:
    a) Code : 01001011000111110010010101010101010000011111100000
    b) Save As it as  anything.EXE
    c) Run it. Beware that the entire HDD will be erased
    I hope you enjoyed these awesome and cool Notepad tricks, if you liked it then share it with your friends.
    Notepad Secrets
    1. Create a log
    Open Notepad
    On the very first line, type in“.LOG” (without quotes) then press Enter for a new line
    Now you can type in some text if you want, then save the file.
    Next time when you open thefile, notice its contents. Notepad automatically adds atime/date log every time you open the file.
    2.Text becomes unreadable
    Open Notepad
    On the very first line, type in“dont eat the donut” (withoutquotes) then save and close the file. Note: the file should have only one line of the text above.
    Now, open the same file. You’ll notice the text becomes unreadable squares. (try this with different text with the same format and length).
    Paint Secrets
    1. Create a trail image
    Open Paint, then open an image.
    Right-click on the image and select “Select All”
    Now hold the “Shift” key andmove the image around. The image will be drawn with trail.
    2. 10x Zoom
    Open Paint, then open a smallimage.
    Select the zoom “Magnifier” tool.
    Windows Paint lists out the zoom options from 1x to 8x, but there is a 10x…
    After selecting the Magnifier tool, point the mouse right at the border line right under “8x” and left-click. There you go.. the hidden 10x.
    Other Secrets
    1. Where is the relaxing music that you’ve heard during Windows XP Installation?
    The file is in:
    C:\Windows\system32\oobe\images\title.wma
    Game Secrets
    1. Solitaire: Instant Win
    Press Alt + Shift + 2 to instantly win
    Solitaire: Draw only 1 card (instead of 3)
    Hold down Ctrl + Alt + Shift then click on unopen cards todraw.
    2. FreeCell: Instant Win
    Hold down Ctrl + Shift + F10 while playing, then click Abort.
    Now move one card.
    FreeCell: Hidden Game Modes
    Go to “Game” menu choose “Select Game”
    Here you can choose from game mode 1 to 1,000,000. But -1 and -2 will also work (hidden modes)
    3.Hearts: Show All Card
    Warning! this requires a modification on your registry.Be sure you follow the steps carefully. Damage your registry might damage your Windows.
    Open the “Registry Editor” by: “Start” >> “Run” then type “regedit” and press Enter
    Expand to HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\Hearts
    Right-click on the right panel and create a new String value with the name “ZB”
    Double-click to open this key “ZB” to edit its value. Then enter “42″ and close the Registry Editor.
    Start Hearts and Press Ctrl +Alt + Shift + F12 to show all the cards
    4. Minesweeper: Stop The Timer
    When you start to play a newgame, the timer is ticking…
    Press Windows Key + D to show desktop.
    Now come back to the game by selecting it from the taskbar. The timer is stopped.
    5. Pinball
    Unlimited Balls: Type bmax at a new game to get unlimited balls (no notification).
    Extra Balls: Type 1max at a new game to get extra balls.
    Gravity Well: Type gmax at anew game to activate GravityWell.
    Promotion: Type rmax at a new game or while playing to get instant promotion and raising rank.
    Extra points with partial shots: Partially shot the ball just to pass the yellow light bars. There are 6 bars. With the first bar, you’ll get 15,000 points, 2nd: 30,000,…
    Extra points with partial shots: Partially shot the ball just to pass the yellow light bars. There are 6 bars. With the first bar, you’ll get 15,000 points, 2nd: 30,000,…
    Test Mode: Type hidden test with a new ball or new game. Now you can use your mouseto drag and move the ball where you want

    Total Pageviews

    Connect With Us

    Recommend us on Google!

    Popular Posts

    • Antenna Theory: Analysis and Design, 3rd Edition Constantine A. Balanis CD
    • Download Google Chrome 35.0.1916.114 Final - Google Chrome Software
    • VeryPDF PDF Editor v2.6 + serial
    • Download CyberLink Director Suite 2.0 - collection of photo and video editing tools
    • Download HDClone Enterprise Edition 5.0.7 - backup software, hard disk data
    • Download HelpSmith 5.0.2 Build 14.624 - Advanced Software Help File
    • Optical Fiber Communications 4th ed Gerd keiser
    • Iobit.Security.360.v1.05
    • Physics of Semiconductor Devices: Simon M. Sze
    • How to download youtube videos
    • Comments
    • Tags

    Favorite


    Slider

    Latest From

    About Us

    Mediastar91 - Premium free blogger template developed by Mdstar91.tk.

    Follow Us

    Copyright 2012 Blazing Fast Full Premium Downloads. All rights reserved.

    Designed by Mediastar91 Admin.