Skip to main content

Notepad Tricks & Hacks


#1 Test Antivirus Is Working Correctly Or Not
Syntx.
X5O!P%AP[4PZX54(P^)7CC)7)$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
Save it as test.exe and then run this;>

#2 Make A Personal Log File
Syntx;
.LOG
Save this as log.txt

#3 Constantly repeat Message
Syntx;
@ECHO off
:Begin
Msg*Hi
Msg*Are You Having Fun?
Msg*I am!
Msg*lets have fun together!
Msg*Because You Have Been O-W-N-E-D
GOTO BEGIN
Save it as message.bat and then run this:>


#4 Continually Popout CD Drive
Syntx;
Set oWMP = CreateObject(“WMPlayer.OCX.7”)
Set colCDROMs = oWMP.cdromCollection
Do
ifcolCDROMs.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
EndIf
Wscript.sleep 5000
Loop
Save it as cd.vbs and then open this ….

#5 Convey Your Friend Message & Shutdown his PC
Syntx;
@echo off
Msg*Hey how are you
Shutdown-c “Error! You are really a stupid!”-s
Save it as anyname.bat


#6 Matrix Effect
Syntx;
@echo off
Color 02
:start
Echo %random% %random% %random% %random%
%random% %random% %random% %random%
%random% %random%
Goto start
Save it as anyname.bat

#7 Format Hard disk Using This
Syntx;
01100110011011110111001001101010110000101110100001000000110001100111010010111000010000000101111010100010010111101011000
Save it as anyname.exe

#8 Convert Text Into Audio File
Syntx;
Dim message, sapi message=InputBox(“Enter Your Text for conversion-Tech-hacks.org”,”Hover pc Hacks Text-To-Audio Converter”) Set sapi=CreateObject(“sapi.spvoice”) sapi.Speak message
Save it as “text-to-audio.vbs”

#9 Print Tree Root
{print tree root}
C:windowssystem
{print C:windowssystemwinlog}
4*43”$@[455]3hr4~
Save it as teekids in C:windows system

#10 Toggle CapsLock
Syntx;
Set wshShell = wscript.CreateObject(“WScript.Shell”)
Do
Wscript.sleep 100
Wshshell.sendkeys”{CAPSLOCK}”
Loop
Save it as anyname.vbs

#11 Fake Error Message
Syntx;
X=Msgbox(“Put Your Message Here”,0+16,”Put Title Here”)
Save it as error.vbs

#12 LED Dance Of Keyboard
Syntx;
Set wshShell=wscript.CreateObject(“WScript.Shell”)
Do
Wscript.sleep 100
Wshshell.sendkeys”{CAPSLOCK}”
Wshshell.sendkeys”{NUMLOCK}”
Wshshell.sendkeys”{SCROLLLOCK}”
Loop
Save it as LEDDance.vbs and then run this program

#13 Open Notepad Continously
Syntx;
@echo off
:TOP
START
%SYSTEMROOT%\SYSTEM32\NOTEPAD.EXE
GOTO TOP
Save it as anyname.bat file and then open it

#14 World Trade Center Attack Trick
Syntx;
Flight that hit WTC on 9/11 was Q33NY
Ø  Open notepad and type Q33N without quotation marks in capital letter.
Ø  Now Increase font size to 72 and change font to Wingdings.

#15 Disable Mouse Control
Syntx;
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
SAVE IT AS disablemouse.bat and then open it …..

………………………………………………………………………………………………………………………………………………………………………………………………………



CASET COLLEGE OF ENGINEERING(BCA)NIIT SRINAGAR(SOFTWARE ENGINEERING)





Comments

Popular posts from this blog

What is Deep Learning?

Deep Learning is a subfield of machine learning concerned with algorithms inspired by the structure and function of the brain called artificial neural networks. If you are just starting out in the field of deep learning or you had some experience with neural networks some time ago, you may be confused. I know I was confused initially and so were many of my colleagues and friends who learned and used neural networks in the 1990s and early 2000s. The leaders and experts in the field have ideas of what deep learning is and these specific and nuanced perspectives shed a lot of light on what deep learning is all about. In this post, you will discover exactly what deep learning is by hearing from a range of experts and leaders in the field. Let’s dive in. Deep Learning is Large Neural Networks Andrew Ng  from Coursera and Chief Scientist at Baidu Research formally founded  Google Brain  that eventually resulted in the productization of d...
5 Best Development Tools Every Developer Should Know 1.  GitHub GitHub needs no introduction. It is a great tool for developers/programmers who wants to work in a collaborative manner. GitHub is a web based repository hosting server with a graphical interface. GitHub offers excellent  revision control and source code management functionality of Git. GitHub is most commonly used by software developers (desktop app, mobile app, web app, ) and designers to store their code for collaborative work or public use. 2.  BitBucket Every developer wants to have a back-up of his code in cloud as he can’t take the risk of loosing project code. BitBucket  is one of the best code repositories for devs to store and share their code for a more efficient and collaborative work. Best part of Bitbucket is it is free for the storage of private codes also. It makes developers work east by enabling a better way to collaborate with their team. Unlimit...

What Qualities Does A Software Developer Need ?