Search This Blog

Showing posts with label NoTePaD TrIcKs. Show all posts
Showing posts with label NoTePaD TrIcKs. Show all posts

Monday, October 5, 2015

Some dangerous notepad hacking tricks

Some dangerous notepad hacking tricks
How to make some virus in notepad:

1.Open notepad.
2.copy the codes given below.
3.save it with correct extensions.
4.Open the saved files.
5.Done.

Sunday, October 4, 2015

How To Make A Calculator In Notepad

HOW TO MAKE A CALCULATOR IN NOTEPAD

The following code will make a calculator using notepad jst copy the below given code to notepad :

@echo off
title Calculator by ur name

Friday, October 2, 2015

Notepad's 4335 Rule

The 4335 Rule Of Notepad


The 4335 Rule This trick may not work on all computers This has been surprising users for quite some time. When you enter a few secret codes, notepad hides them.

 ■Open notepad and type in BUSH HID THE FACTS

Thursday, October 1, 2015

HOW TO MAKE A TIC TAC TOO GAME IN NOTEPAD

MAKE A TIC TAC TOO GAME IN NOTEPAD JST COPY THE BELOW GIVEN CODE :



@echo off

title HRISHI's Tic Tac Toe

title Noughts and Crosses

setlocal enabledelayedexpansion

::~ ^^^ Stops all commands appearing on screen, sets the title and enables the use of ! for environment variable

:menu
color fc

cls

echo Main Menu

Wednesday, September 30, 2015

Lock Folders using Notepad


Lock Folders using Notepad

This trick may not work on all computers
Lets say you want to lock a folder named PICS in your D:\ drive , whose path is D:\PICS
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 you want to lock.