Friday, December 17, 2010

 Google Launches ebook Store
Google opens its own online electronic bookstore in a bid to enter the lucrative ebook market hogged by Kindle-maker Amazon. Google's ebooks will be stored in the "cloud" and be available for reading from any computer connected to the Internet, or via applications on mobile devices such as smartphones.
 Android 2.3 Details Revealed, Google Nexus S Unveiled
Google's Android 2.3 is finally released and comes packing with plenty of features. The first to come packing Android 2.3? The long rumored, newly announced Google Nexus S (that's made by Samsung).
 Facebook Conducts Facelift For Profile Pages
Facebook is redesigning the profile pages of its users to make it more of a reflection of their real lives and emphasize one of the site's most popular features, photos.
 Atlona Releases HDMI to Mini DisplayPort Converter/Scaler for Home Theaters Everywhere
DP300 is the new accessory for playing video games or watching blue-ray movies. For Apple's 24 and 27-inch LED Cinema Displays and iMacs.
 PlayStation Phone's Test Pictures of the 5.0-MP Camera Leaked
Didn't believe the rumors about the PS Phone? Well, here's more proof. Guess we can expect a reveal soon, probably at CES 2011 in January.
 Google Fails to Land Groupon
Google's attempt to land Groupon appears to have broken down, making it the search giant's second failed acquisition of a social startup.


Regards,
darshana

Every Action has a Reaction !

Thursday, December 9, 2010

Chrome OS Cr-48 Caps Lock Key Not Missing After All

When the news broke that Google would be replacing the Caps Lock key for its new Chrome OS-based Cr-48 notebook with a Search function, many folks, including us here, were left scratching our heads at the move. Sure, it changed the seldom used (unless you were an internet troll) key to something that's used more often, but there may be occasions (admittedly few) that would require the use of the key. Thankfully it seems like the option is there to switch it back from being the Search key. We do wonder however, if getting used to a Search key may be a better idea in the long run after all.

pcmag.com - But wait, the ability to type in "ALL CAPS" is not entirely missing from the Cr-48 or Google Chrome OS. We found it during the laptops' built in tutorial. Here's how Google snarkily explains it: 

If you really need Caps Locks so you can post an INSIGHTFUL COMMENT ON YOUTUBE, click the wrench, click Settings, and then go to the System section for change the Modifier Key from a Search key to a Caps Lock key."

Full article here.


Regards,
darshana

Every Action has a Reaction !

Thursday, November 18, 2010

Foreign Key:

A foreign key is a field (or fields) that points to the primary key of another table. The purpose of the foreign key is to ensure referential integrity of the data. In other words, only values that are supposed to appear in the database are permitted.

Below are some examples of how to specify the foreign key when creating the ORDERS table:

MySQL:

CREATE TABLE ORDERS
(Order_ID integer,
Order_Date date,
Customer_SID integer,
Amount double,
Primary Key (Order_ID),
Foreign Key (Customer_SID) references CUSTOMER(SID));

Oracle:

CREATE TABLE ORDERS
(Order_ID integer primary key,
Order_Date date,
Customer_SID integer references CUSTOMER(SID),
Amount double);

SQL Server:

CREATE TABLE ORDERS
(Order_ID integer primary key,
Order_Date datetime,
Customer_SID integer references CUSTOMER(SID),
Amount double);

Monday, September 27, 2010

Find Linux installed date...

rpm -qi basesystem

Name        : basesystem                   Relocations: (not relocatable)
Version     : 8.0                               Vendor: Red Hat, Inc.
Release     : 5.1.1                         Build Date: Wed 12 Jul 2006 12:38:04 PM IST
Install Date: Mon 03 May 2010 03:05:35 PM IST      Build Host: ls20-bc2-14.build.redhat.com
Group       : System Environment/Base       Source RPM: basesystem-8.0-5.1.1.src.rpm
Size        : 0                                License: public domain
Signature   : DSA/SHA1, Thu 18 Jan 2007 09:03:57 PM IST, Key ID 5326810137017186
Packager    : Red Hat, Inc. <http://bugzilla.redhat.com/bugzilla>
Summary     : The skeleton package which defines a simple Red Hat Linux system.
Description :
Basesystem defines the components of a basic Red Hat Linux system (for
example, the package installation order to use during bootstrapping).
Basesystem should be the first package installed on a system, and it
should never be removed.

Sunday, September 26, 2010

HAPPY BIRTHDAY GOOGLE

Wish you Happy Birth Day GOOGLE. My total IT career dependent with you. :D

 

THERE IS NO ME WITHOUT YOU!

 

Thanks

 

Wednesday, September 22, 2010

Active RSS feeds in MS outlook to read posts in mislanka blog

01.   Got o RSS feeds in Microsoft Outlook

02.   Right click and select “Add a New RSS feed”
03.    

04.   Type http://mislanka.blogspot.com/feeds/posts/default and press Add button.
05.   If you use proxy to browse internet please set proxy settings in Internet Explorer.
06.   Then it will download new post when we update the blog.



Tuesday, September 14, 2010

Disk space not updating in linux df -h after deleted files

If the partition used space increase in to 100%, we had to delete unnecessary file to have more space.

But after deleting the files df –h command not updating the actual space details and we are unable to create any file.

So solve this issue we need to follow following trick.

 

ls -ld /proc/*/fd/* 2>&1 | fgrep '(deleted)'

 

It shows the files that are deleted but  still in use by a running process.
 
lrwx------ 1 root root 64 Sep 15 10:45 /proc/2958/fd/12 -> /tmp/ibSAlc0V (deleted)
lrwx------ 1 root root 64 Sep 15 10:45 /proc/2958/fd/5 -> /tmp/ibUpZrp7 (deleted)
lrwx------ 1 root root 64 Sep 15 10:45 /proc/2958/fd/6 -> /tmp/ibUmDSgz (deleted)
lrwx------ 1 root root 64 Sep 15 10:45 /proc/2958/fd/7 -> /tmp/ibcLKj80 (deleted)
lrwx------ 1 root root 64 Sep 15 10:45 /proc/2958/fd/8 -> /tmp/ibubhw0s (deleted)
lrwx------ 1 root root 64 Sep 15 10:45 /proc/32645/fd/0 -> /dev/pts/1 (deleted)
lrwx------ 1 root root 64 Sep 15 10:45 /proc/32645/fd/1 -> /dev/pts/1 (deleted)
lrwx------ 1 root root 64 Sep 15 10:45 /proc/32645/fd/2 -> /dev/pts/1 (deleted)
lrwx------ 1 root root 64 Sep 15 10:45 /proc/32645/fd/255 -> /dev/pts/1 (deleted)
lrwx------ 1 root root 64 Sep 15 10:44 /proc/6788/fd/0 -> /dev/pts/38 (deleted)
lrwx------ 1 root root 64 Sep 15 10:44 /proc/6788/fd/1 -> /dev/pts/38 (deleted)
lrwx------ 1 root root 64 Sep 15 10:44 /proc/6788/fd/2 -> /dev/pts/38 (deleted)
 
so we need to stop or restart that process to update the disk space.
 
 

ps ax | grep 2958

 

kill -9 2958

 

 

Sunday, September 5, 2010

Add date and time to Linux command history ..

Add following line to /etc/bashrc

01.     Vim /etc/bashrc

02. export HISTTIMEFORMAT="%h/%d - %H:%M:%S "

03. save and quit

04. logout and login

05. history

  995  Sep/06 - 10:46:24 w

  996  Sep/06 - 10:46:24 w

  997  Sep/06 - 10:46:24 top -c

  998  Sep/06 - 10:46:30 date

  999  Sep/06 - 10:46:34 history

 

 

 

Tuesday, August 24, 2010

SanDisk Reveals World's Smallest SSD, the 'iSSD'

SanDisk Reveals World's Smallest SSD, the 'iSSD'


No, this is not Apple's SSD... unless it ends up in a Mac.


SanDisk has announced what it claims to be the world's smallest SSD. Of course, with SSDs being made up of flash memory, it shouldn't be hard to imagine just how much storage one could fit on a drive the size of a postage stamp.

SanDisk calles it the integrated SSD, or iSSD for short, and it's designed for tablet PCs and ultra-thin notebooks. The iSSD is the first flash SSD device to support the industry standard SATA interface in a small BGA (Ball Grid Array) package that can be soldered onto any motherboard, and is fast enough to use as a boot drive.

The iSSD is advertised by SanDisk as offering 160MB/sec sequential read and 100MB/sec sequential write speeds. It measuring 16mm x 20mm x 1.85mm and weighs less than one gram.

The SanDisk iSSD is available now for sampling to OEMs in capacities ranging from 4GB to 64GB.


Regards,
darshana

Every Action has a Reaction !

Thursday, August 19, 2010

Usefull snmp OIDs for CPU, Memory, Disk usage.

CPU Statistics

Load
1 minute Load: .1.3.6.1.4.1.2021.10.1.3.1
5 minute Load: .1.3.6.1.4.1.2021.10.1.3.2
15 minute Load: .1.3.6.1.4.1.2021.10.1.3.3

CPU
percentage of user CPU time: .1.3.6.1.4.1.2021.11.9.0
raw user cpu time: .1.3.6.1.4.1.2021.11.50.0
percentages of system CPU time: .1.3.6.1.4.1.2021.11.10.0
raw system cpu time: .1.3.6.1.4.1.2021.11.52.0
percentages of idle CPU time: .1.3.6.1.4.1.2021.11.11.0
raw idle cpu time: .1.3.6.1.4.1.2021.11.53.0
raw nice cpu time: .1.3.6.1.4.1.2021.11.51.0

Memory Statistics

Total Swap Size: .1.3.6.1.4.1.2021.4.3.0
Available Swap Space: .1.3.6.1.4.1.2021.4.4.0
Total RAM in machine: .1.3.6.1.4.1.2021.4.5.0
Total RAM used: .1.3.6.1.4.1.2021.4.6.0
Total RAM Free: .1.3.6.1.4.1.2021.4.11.0
Total RAM Shared: .1.3.6.1.4.1.2021.4.13.0
Total RAM Buffered: .1.3.6.1.4.1.2021.4.14.0
Total Cached Memory: .1.3.6.1.4.1.2021.4.15.0

Disk Statistics

The snmpd.conf needs to be edited. Add the following (assuming a machine with a single ‘/’ partition):

disk / 100000 (or)

includeAllDisks 10% for all partitions and disks

The OIDs are as follows

Path where the disk is mounted: .1.3.6.1.4.1.2021.9.1.2.1
Path of the device for the partition: .1.3.6.1.4.1.2021.9.1.3.1
Total size of the disk/partion (kBytes): .1.3.6.1.4.1.2021.9.1.6.1
Available space on the disk: .1.3.6.1.4.1.2021.9.1.7.1
Used space on the disk: .1.3.6.1.4.1.2021.9.1.8.1
Percentage of space used on disk: .1.3.6.1.4.1.2021.9.1.9.1
Percentage of inodes used on disk: .1.3.6.1.4.1.2021.9.1.10.1

System Uptime: .1.3.6.1.2.1.1.3.0

 

Wednesday, August 11, 2010

Mount ISO images on Linux

Subject: Mount ISO images on Linux

Run as root (or superuser):
mount -o loop -t iso9660 <path-to-iso-image> <mount-point>

Tuesday, July 27, 2010

Complaints against Facebook

By Indika Sri Aravinda


The police women and child’s bureau has received over 50 complaints against the social networking website Facebook. According to the bureau the complaints include individuals copying pictures of Facebook account holders and creating indecent images.

The bureau said they have received close to 20 such complaints within the last two months and they have launched an investigation into these complaints. The bureau added these perpetrators use the Facebook account holder’s name when they commit these acts.

When Daily mirror online inquired from the Telecommunications Regulatory Commission (TRC) the Director General of TRC, Anusha Palpita said they have not received complaints regarding the misuse of Facebook.

The police women and child’s bureau said that they have requested TRC to look into the possibility to restrict access to Facebook. However the TRC says access to Facebook is an individual right.

“Access to Facebook is a human right so we can’t take measures to block the site. Besides, if we take measures to block the site, the internet speed will reduce and this will effect the country’s reputation in the technological aspect,” Palpita said.

However, he added individuals can take measures to block the site within the company but added that although there are laws to prevent computer related crimes; it is difficult to implement such laws in the country.

Facebook; a social network site which has immense popularity universally was blocked in Pakistan in May when certain individuals had created a blasphemous page regarding Prophet Muhammad. However, two weeks later Pakistan lifted the ban and said it would continue to block individual pages containing "blasphemous" content.

Similarly, Bangladesh also banned Facebook in May after the arrest of a youth in connection with uploading satiric images of some politicians including the prime minister and the leader of the opposition. The Bangladesh Telecom Regulatory Commission (BTRC) accounted reasons such as posting anti- religious and pornographic links by users across the globe were some of the reasons for restricting the access. In June, a week after the ban on Facebook was implemented the government lifted it.


(Daily Mirror online TUESDAY, 13 JULY 2010 20:31)

Tuesday, June 29, 2010

How Configure MYSQL master-master replication

Assume

Master1 = 172.16.1.1
Master2 = 172.16.1.2


Database users
GRANT ALL PRIVILEGES ON *.* TO 'slaveuser'@'localhost'IDENTIFIED BY 'slavepw' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON *.* TO 'slaveuser'@'%' IDENTIFIED BY 'slavepw' WITH GRANT OPTION;

Master1

=========================================================
[mysqld]
auto_increment_increment=2
auto_increment_offset=1

# Replication Master Server
# binary logging is required for replication

log-bin=master1-bin
binlog-ignore-db=mysql
binlog-ignore-db=test

# required unique id between 1 and 2^32 - 1
server-id = 1

#following is the slave settings so this server can connect to master2

master-host = 172.16.1.2
master-user = slaveuser
master-password = slavepw
master-port = 3306

#If you want to enable log add this entry for [mysqld] section:
log-error=/var/log/mysqld.log

========================================================


Master 2

==========================================================
[mysqld]


auto_increment_increment=2
auto_increment_offset=2

# Replication Master Server
# binary logging is required for replication

log-bin=master2-bin
binlog-ignore-db=mysql
binlog-ignore-db=test

# required unique id between 1 and 2^32 - 1
server-id = 2

#following is the slave settings so this server can connect to master2
master-host = 172.16.1.1
master-user = slaveuser
master-password = slavepw
master-port = 3306

#If you want to enable log add this entry for [mysqld] section:
log-error=/var/log/mysqld.log

==============================================================



Master 1

grant replication slave on *.* to slaveuser@'172.16.1.2' identified by 'slavepw';

Master 2

grant replication slave on *.* to slaveuser@'172.16.1.1' identified by 'slavepw';


=============================================
Restart both
=============================================


show slave status\G





Configure High Availability Heartbeat in RHEL5

Required RPMs.

heartbeat-2.99.0-3.1.i386.rpm
heartbeat-common-2.99.0-3.1.i386.rpm
heartbeat-common-devel-2.99.0-3.1.i386.rpm
heartbeat-debuginfo-2.99.0-3.1.i386.rpm
heartbeat-devel-2.99.0-3.1.i386.rpm
heartbeat-ldirectord-2.99.0-3.1.i386.rpm
heartbeat-pils-2.1.4-9.el5.i386.rpm
heartbeat-resources-2.99.0-3.1.i386.rpm

Dependencies.

ipvsadm-1.24-8.1.i386.rpm
ipvsadm-debuginfo-1.24-8.1.i386.rpm
libltdl3-1.4.3-9sls.i586.rpm
libnet-1.1.2.1-1.1.i386.rpm
libnet-1.1.2.1-2.rf.i386.rpm
libnet-debuginfo-1.1.2.1-1.1.i386.rpm
libnet-debuginfo-1.1.2.1-2.rf.i386.rpm
lynx-2.8.5-11.i386.rpm
lynx-debuginfo-2.8.5-11.i386.rpm
openais-0.80.3-6.1.i386.rpm
openais-debuginfo-0.80.3-6.1.i386.rpm
openais-devel-0.80.3-6.1.i386.rpm
perl-libwww-perl-5.805-1.1.1.noarch.rpm
perl-MailTools-1.76-1.noarch.rpm
perl-Net-SSLeay-1.32-1.el5.rf.i386.rpm
perl-TimeDate-1.16-3.2.1.noarch.rpm

Pre-Configuration Requirements

  1. Assign hostname node01 to primary node with IP address 172.16.4.80 to eth0.
  2. Assign hostname node02 to slave node with IP address 172.16.4.81.

Configuration files

  1. authkeys
  2. ha.cf
  3. haresources
vim /etc/ha.d/authkeys
================================================================================== 
#Add Following
auth 2 
2 sha1 test-ha 
 
================================================================================== 
chmod 600 /etc/ha.d/authkeys 
vim /etc/ha.d/ha.cf
================================================================================== 
#Add following lines
logfile /var/log/ha-log  
logfacility local0 
keepalive 2  
deadtime 30 
initdead 120 
bcast eth0 
udpport 694 
auto_failback on
node node01
node node02 
================================================================================== 
vim /etc/ha.d/haresources
================================================================================== 
#Add following line node01 172.16.4.82 httpd
================================================================================== 
Copy the /etc/ha.d/ directory from node01 to node02:
scp -r /etc/ha.d/ root@node02:/etc/

vim /etc/httpd/conf/httpd.conf
#Add following line
Listen 172.16.4.82:80 
 
Copy the /etc/httpd/conf/httpd.conf file to node02:  

scp /etc/httpd/conf/httpd.conf root@node02:/etc/httpd/conf/

Create the file index.html on both nodes (node01 & node02):

Now start heartbeat on the primary node01 and slave node02  

/etc/init.d/heartbeat start

Monday, June 21, 2010

(Informative) Windows Run Command




Accessibility Controls---- --- access.cpl
Add Hardware Wizard------ - hdwwiz.cpl
Add/Remove Programs---- --- appwiz.cpl
Administrative Tools------- control admintools
Automatic Updates----- -- wuaucpl.cpl
Bluetooth Transfer Wizard------ - fsquirt
Calculator-- ----- calc
Certificate Manager certmgr.msc
Character Map charmap
Check Disk Utility----- -- chkdsk
Clipboard Viewer------ - clipbrd
Command Prompt------ - cmd
Component Services---- --- dcomcnfg
Computer Management-- ----- compmgmt.msc
Timedate.cpl- ------ ddeshare
Device Manager----- -- devmgmt.msc
Direct X Control Panel (If Installed)*- ------ directx.cpl
Direct X Troubleshooter- ------ dxdiag
Disk Cleanup Utility----- -- cleanmgr
Disk Defragment-- ----- dfrg.msc
Disk Management-- ----- diskmgmt.msc
Disk Partition Manager----- -- diskpart
Display Properties-- ----- control desktop
Display Properties-- ----- desk.cpl
Display Properties (w/Appearance Tab Preselected) ------- control color
Dr. Watson System Troubleshooting Utility----- -- drwtsn32
Driver Verifier Utility----- -- verifier
Event Viewer------ - eventvwr.msc
File Signature Verification Tool------- sigverif
Findfast---- --- findfast.cpl
Folders Properties-- ----- control folders
Fonts------- control fonts
Fonts Folder------ - fonts
Free Cell Card Game------- freecell
Game Controllers- ------ joy.cpl
Group Policy Editor (XP Prof)------- gpedit.msc
Hearts Card Game------- mshearts
Iexpress Wizard------ - iexpress
Indexing Service----- -- ciadv.msc
Internet Properties-- ----- inetcpl.cpl
IP Configuration (Display Connection Configuration) ------- ipconfig /all
IP Configuration (Display DNS Cache Contents)--- ---- ipconfig /displaydns
IP Configuration (Delete DNS Cache Contents)--- ---- ipconfig /flushdns
IP Configuration (Release All Connections) ------- ipconfig /release
IP Configuration (Renew All Connections) ------- ipconfig /renew
IP Configuration (Refreshes DHCP & Re-Registers DNS)------- ipconfig /registerdns
IP Configuration (Display DHCP Class ID)------- ipconfig /showclassid
IP Configuration (Modifies DHCP Class ID)------- ipconfig /setclassid
Java Control Panel (If Installed) jpicpl32.cpl
Java Control Panel (If Installed)-- ----- javaws
Keyboard Properties-- ----- control keyboard
Local Security Settings---- --- secpol.msc
Local Users and Groups------ - lusrmgr.msc
Logs You Out Of Windows----- -- logoff
Microsoft Chat------- winchat
Minesweeper Game------- winmine
Mouse Properties-- ----- control mouse
Mouse Properties-- ----- main.cpl
Network Connections- ------ control netconnections
Network Connections- ------ ncpa.cpl
Network Setup Wizard------ - netsetup.cpl
Notepad----- -- notepad
Nview Desktop Manager (If Installed)-- ----- nvtuicpl.cpl
Object Packager---- --- packager
ODBC Data Source Administrator- ------ odbccp32.cpl
On Screen Keyboard---- --- osk
Opens AC3 Filter (If Installed)-- ----- ac3filter.cpl
Password Properties-- ----- password.cpl
Performance Monitor----- - perfmon.msc
Performance Monitor----- -- perfmon
Phone and Modem Options----- -- telephon.cpl
Power Configuration- ------ powercfg.cpl
Printers and Faxes------- control printers
Printers Folder------ - printers
Private Character Editor------ - eudcedit
Quicktime (If Installed)-- ----- QuickTime.cpl
Regional Settings---- --- intl.cpl
Registry Editor------ - regedit
Registry Editor------ - regedit32
Remote Desktop----- -- mstsc
Removable Storage----- -- ntmsmgr.msc
Removable Storage Operator Requests---- --- ntmsoprq.msc
Resultant Set of Policy (XP Prof)------- rsop.msc
Scanners and Cameras----- -- sticpl.cpl
Scheduled Tasks------- control schedtasks
Security Center------ - wscui.cpl
Services---- --- services.msc
Shared Folders----- -- fsmgmt.msc
Shuts Down Windows----- -- shutdown
Sounds and Audio------- mmsys.cpl
Spider Solitare Card Game------- spider
SQL Client Configuration- ------ cliconfg
System Configuration Editor------ - sysedit
System Configuration Utility----- -- msconfig
System File Checker Utility (Scan Immediately) ------- sfc /scannow
System File Checker Utility (Scan Once At Next Boot)------- sfc /scanonce
System File Checker Utility (Scan On Every Boot)------- sfc /scanboot
System File Checker Utility (Return to Default Setting)---- --- sfc /revert
System File Checker Utility (Purge File Cache)------ - sfc /purgecache
System File Checker Utility (Set Cache Size to size x)------- sfc /cachesize=x
System Properties-- ----- sysdm.cpl
Task Manager----- -- taskmgr
Telnet Client------ - telnet
User Account Management-- ----- nusrmgr.cpl
Utility Manager----- -- utilman
Windows Firewall---- --- firewall.cpl
Windows Magnifier--- ---- magnify
Windows Management Infrastructure- ------ wmimgmt.msc
Accessibility Controls --------- access.cpl
Accessibility Wizard --------- accwiz
Add Hardware Wizard --------- hdwwiz.cpl
Add/Remove Programs --------- appwiz.cpl
Administrative Tools --------- control admintools
Adobe Acrobat (if installed) --------- acrobat
Adobe Designer (if installed) --------- acrodist
Adobe Distiller (if installed) --------- acrodist
Adobe ImageReady (if installed) --------- imageready
Adobe Photoshop (if installed) --------- Photoshop
Automatic Updates --------- wuaucpl.cpl
Bluetooth Transfer Wizard --------- fsquirt
Calculator --------- calc
Certificate Manager --------- certmgr.msc
Character Map --------- Charmap
Check Disk Utility --------- chkdsk
Clipboard Viewer --------- clipbrd
Command Prompt --------- cmd
Component Services --------- dcomcnfg
Computer Management --------- compmgmt.msc
Control Panel --------- control
Date and Time Properties --------- timedate.cpl
DDE Shares --------- ddeshare
Device Manager --------- devmgmt.msc
Direct X Control Panel (If Installed)* --------- directx.cpl
Direct X Troubleshooter --------- dxdiag
Disk Cleanup Utility --------- cleanmgr
Disk Defragment ------- dfrg.msc
Disk Management -------- diskmgmt.msc
Disk Partition Manager --------- diskpart
Display Properties ----------- control desktop
Display Properties ----------Desk. cpl
Display Properties (w/Appearance Tab Preselected) --------- control color
Dr. Watson System Troubleshooting Utility ------------ drwtsn32
Driver Verifier Utility ------------ verifier
Minesweeper Game -------- winmine
Mouse Properties --------- control mouse
Mouse Properties ---------- main.cpl
Nero (if installed) --------- nero
Netmeeting ------------ - conf
Network Connections ---------- control netconnections
Network Connections --------- ncpa.cpl
Network Setup Wizard ---------- netsetup.cpl
Notepad --------- notepad
Nview Desktop Manager (If Installed) ------- nvtuicpl.cpl
Object Packager ---------- packager
ODBC Data Source Administrator ------ odbccp32.cpl
On Screen Keyboard --------- osk
Opens AC3 Filter (If Installed) --------- ac3filter.cpl
Outlook Express ------------ - msimn
Paint ------------ pbrush
Password Properties -------- password.cpl
Performance Monitor ------- perfmon.msc
Performance Monitor --------- perfmon
Phone and Modem Options ------- telephon.cpl
Phone Dialer --------- dialer
Pinball Game ------------ --- pinball
Power Configuration --------- powercfg.cpl
Printers and Faxes ------- control printers
Printers Folder --------- printers
Private Character Editor --------- eudcedit
Quicktime (If Installed) --------- QuickTime.cpl
Quicktime Player (if installed) ------------ - quicktimeplayer
Real Player (if installed) ------------ - realplay
Regional Settings ----------- intl.cpl
Registry Editor --------- regedit
Registry Editor -------- regedit32
Remote Access Phonebook -------- rasphone
Remote Desktop --------- mstsc
Removable Storage --------- ntmsmgr.msc
Removable Storage Operator Requests --------- ntmsoprq.msc
Resultant Set of Policy (XP Prof) ---------- rsop.msc
Scanners and Cameras ------------ sticpl.cpl
Scheduled Tasks ----------- control schedtasks
Security Center ----------- wscui.cpl
Services ------------ -- services.msc
Shared Folders ----------- fsmgmt.msc
Shuts Down Windows ------- shutdown
Sounds and Audio ------------ mmsys.cpl
Spider Solitare Card Game -------- spider
SQL Client Configuration --------- cliconfg
System Configuration Editor --------- sysedit
System Configuration Utility --------- msconfig
System File Checker Utility (Scan Immediately) ---------- sfc /scannow
System File Checker Utility (Scan Once At Next Boot) ---------- sfc /scanonce
System File Checker Utility (Scan On Every Boot) ------------ -- sfc /scanboot
System File Checker Utility (Return to Default Setting) ----------- sfc /revert
System File Checker Utility (Purge File Cache) ------------ sfc /purgecache
System File Checker Utility (Set Cache Size to size x) ------------ sfc /cachesize=x
System Information ----------- msinfo32
System Properties --------- sysdm.cpl
Task Manager ------------ taskmgr
TCP Tester ------------ tcptest
Telnet Client --------- telnet
Tweak UI (if installed) ------------ tweakui
User Account Management ------------ nusrmgr.cpl
Utility Manager --------- utilman
Windows Address Book --------- wab
Windows Address Book Import Utility ----------- wabmig
Windows Backup Utility (if installed) ------------ ntbackup
Windows Explorer ------------ - explorer
Windows Firewall ---------- firewall.cpl
Windows Magnifier ------------ - magnify
Windows Management Infrastructure ----------- wmimgmt.msc
Windows Media Player ----------- wmplayer
Windows Messenger ------------ msmsgs
Windows Picture Import Wizard (need camera connected) --------- wiaacmgr
Windows System Security Tool ------- syskey
Windows Update Launches ------------ -- wupdmgr
Windows Version (to show which version of windows) --------- winver
Windows XP Tour Wizard ------------ - tourstart
Event Viewer ----------- eventvwr.msc
Files and Settings Transfer Tool ---------- migwiz
File Signature Verification Tool -------- sigverif
Findfast ---------- findfast.cpl
Firefox (if installed) -------- firefox
Folders Properties ---------- control folders
Fonts ---------- control fonts
Fonts Folder ------------ fonts
Free Cell Card Game ------- freecell
Game Controllers --------- joy.cpl
Group Policy Editor (XP Prof) --------- gpedit.msc
Hearts Card Game ----------- mshearts
Help and Support ------- helpctr
HyperTerminal ----------- hypertrm
Iexpress Wizard ---------- iexpress
Indexing Service ---------- ciadv.msc
Internet Connection Wizard -------- icwconn1
Internet Explorer ---------- iexplore
Internet Properties --------- inetcpl.cpl
Internet Setup Wizard ------- inetwiz
Java Control Panel (If Installed) --------- jpicpl32.cpl
Java Control Panel (If Installed) --------- javaws
Keyboard Properties ----------- control keyboard
Local Security Settings --------- secpol.msc
Local Users and Groups ------------ - lusrmgr.msc
Logs You Out Of Windows ---------- logoff
Malicious Software Removal Tool ----------- mrt
Microsoft Access (if installed) ------------ - access.cpl
Microsoft Chat ------------ - winchat
Microsoft Excel (if installed) ----------- excel
Microsoft Frontpage (if installed) ----------- frontpg
Microsoft Movie Maker ----------- moviemk
Microsoft Paint ------------ mspaint
Microsoft Powerpoint (if installed) --------- powerpnt
Microsoft Word (if installed) ---------- winword
Microsoft Syncronization Tool
---------- mobsync