This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Tuesday, October 16, 2012

Introduction To ASP


Microsoft Active Server Pages(ASP) is a server-side scripting  technology. ASP is a technology that Microsoft created to ease the development of interactive Web application. With ASP we can use client-side scripts as well as sever-side scripts. Maybe we want to validate use input or access a database. ASP provides solutions for transaction processing and managing session state. ASP is one of the most successful language used in web development.

Problems with Traditional ASP
  • Interpreted and Loosely-Typed Code :-
                                                                        ASP scripting code is usually written in language such as JScript or VBScript. The script-execution engine that Active Server Pages relies on interprets code line by line,  every time the page is called. In addition, although variables are supported, they are all loosely typed as variants and bound to particular types only when the code is run. Both these impede performance, and late binding of types marks it harder to catch errors whey you are writing code.
  • Mixes Layout (HTML) And Logic(Script Code):-
                                                                                 ASP files frequently combine script code with HTML. This result in ASP scripts that are lengthy, difficult to read and switch frequently between code and HTML. The interspersion of HTML with ASP code is particular problematic for large web applications, where content must be kept separate from business logic.
  • Limited Development And Debugging Tools :-
                                                                             Microsoft Visual InterDev, Macromedia Visual UltraDev, and other tools have attempted to increase the productivity of ASP programmers by providing graphical development environment.  However, these tools never achieved the ease of user or the level of acceptance achieved by Microsoft Windows application tools, such as Visual Basic or Microsoft Access. ASP developers still rely heavily or exclusively on Notepad.
Debugging is an unavoidable part of any software development process, and the debugging tools for ASP have been minimal. Most ASP programmers resort to embedding temporary Response. Write statement in their code to trace the progress of its execution.
  • No Real State Management :-
                                                       Session state is only maintained if the client   browser supports cookies. Session state information can only be held by using the ASP Session object. And we have to implement additional code if we want to identify the user.
  • Update Files Only When Server Is Down :-
                                                                           If our web application makes use of components, copying new files to our application should only be when the Web server is stopped. Otherwise it is like pulling the rug from under our application’s feet, because the components may be in use(and locked) and must be registered.
  • Obscure Configuration Settings :- 
                                                                             The Configuration Information for an ASP web application(such as session state and sever timeout) is stored in the IIS metabas. Because the metabase is stored in a property format, it can only be modified on the server machine with utilities such as the Internet Service Manger. With limited support for programmatically Manipulating or extracting these settings, it is often an arduous task to port an ASP application from one server to another.

Introduction To ASP.NET


ASP.NET INTRODUCTION

ASP.NET is a web application framework developed and marked by Microsoft to allow programmers to build dynamic websites, web application  and web services. It was first released in January 2002 with version 1.0 of the .NET framework, and it is successor to Microsoft’s Active Server Pages(ASP) technology. ASP.NET  is built on the Common Language Runtime(CLR) allowing programmers to write ASP.NET code using any supported .NET language.

Advantages Of ASP.NET
  • Separation Of Code From HTML :- 
                                                                    To make a clean sweep, with ASP.NET we have  the ability to completely separate layout and business logic. This makes it much easier for teams of programmer and designers to collaborate efficiently.
  • Support For Compiled Languages :-
                                                                   Developer can use VB.NET and access features such as strong typing and object – oriented programming. Using compiled languages also means that ASP.NET pages do not suffer the performance penalties associated with interpreted code. ASP.NET pages are pre-compiled to byte-code and Just In Time(JIT) compiled when first requested Subsequent request are directed to the fully compiled code, which is cached until the source changes.
  • Use Services Provided By The .NET Framework :-
                                                                    The .NET Framework provides class libraries that can be used by our application. Some of the key classes  help us with input/output, access to operating systems services, data access  or even debugging.
  • Graphical Development Environment :-
                                                                   Visual Studio.NET provides a very rich development environment  for web developers. You can drag and drop controls and set properties the way we do in Visual Basic and we have full IntelliSense support, not only for our code, but also for HTML and XML.
  • State Management :-
                                          To refer the problem mentioned before, ASP.NET provides solutions for session and application state management. State information can, for example, be kept in memory or stored in a database. It can be shared across Web farms, and state information can be recovered, even if the server fails or the connection breaks down.
  •  Update Files While The Server Is Running :-
                                                                      Components of our application can be updated while the server is online and clients  are connected.  The Framework will use the new files as soon as they are copied to the application. Removed or old files that are still in use are kept in memory until the clients have finished.
  • XML-Based Configuration Files :-
                                                                  Configuration  settings in ASP.NET are stored in XML files that we can easily read and edit. We can also easily copy these to another server, along with the other files that comprise our application.

Monday, October 15, 2012

About-Us

Friday, October 12, 2012

Asp.Net

Welcome to asp.net page

Wednesday, October 10, 2012

SQL QUERIES



/*creating Database Syntax*/
Create Database Sample
/*Create Table Syntax*/
create table Student(Sno numeric,Sname varchar(25),Sage numeric,Sdob datetime,Splace varchar(25))

/*Inserting Values in Table*/
insert into student values(103,'dhas',25,11/26/1990,'Tambaram')


/*select Table*/
select * from student

/*Drop Table Syntax */

drop table student

/*Truncate table Syntax*/
truncate table student
/*Delete table syntax */
delete from student
/*update table*/
update student set sname='amal' where sno=101

/*Primary Key without constraint name*/
create table Empdetails(Empno numeric primary key,Ename varchar(30),Edob datetime,Emobile numeric,Eemail varchar(50),Eplace varchar(30))

insert into Empdetails values(102,'Peter','02/23/1984',9233333,'reeed@rediffmail.com','India')


select * from Empdetails

/*foreign key without constraint name*/

create table Empsaldetails(Empno numeric foreign key references empdetails(empno),Ebpay numeric,Ehra numeric,Eda numeric,Esal numeric )

insert into empsaldetails values(103,25000,5000,500,30500)


/*primary key with constraint name*/

create table Persons(p_id numeric constraint pk_Persons primary key,Pname varchar(25),Pcity varchar(25))

insert into persons values(2,'ramky','trichy')

select * from persons


/*Drop Constraint Syntax*/
ALTER TABLE Persons
DROP CONSTRAINT pk_Persons

/*foreign key with constraint name */
create table orders(O_id numeric constraint fk_orders foreign key references persons(p_id),O_number numeric)

insert into orders values(3,875)
drop table orders

select * from orders

/*Drop Constraint Syntax*/
ALTER TABLE orders
DROP CONSTRAINT fk_orders

delete from orders where o_id=2



/*Joins*/

create table customers(c_id numeric primary key,c_fname varchar(25),c_Lname varchar(50),a_addr varchar(50),c_city varchar(25))
create table supplier(S_id numeric,S_num numeric,c_id numeric foreign key references customers(c_id))


insert into customers values(2,'asas','ghjj','kambar c8','trichy')
drop table supplier

select * from supplier
select * from customers
insert into supplier values(3,8967,3)

/*Inner Joins*/



SELECT customers.c_fname, customers.c_Lname, supplier.S_num
FROM customers
INNER JOIN supplier
ON customers.c_id=supplier.c_id
ORDER BY customers.c_Lname




/*join concept */

create table employee(ID int,name nvarchar(25),salary int)


create table job(ID int,title nvarchar(25),averageSalary int)



select * from employee;


select * from job;

/*Inner join */

 SELECT e.ID, e.Name, j.title FROM Employee e INNER JOIN Job j ON e.Id = j.ID

  /*leftOuter Join*/

SELECT e.id,e.name,j.title FROM Employee e LEFT OUTER JOIN job j ON e.id = j.id

/*Right Outer Join*/

SELECT e.id, e.name, j.title FROM Employee e RIGHT OUTER JOIN job j ON e.id = j.id
          

/*cross Join*/

 SELECT e.ID,e.Name,j.title FROM Employee e CROSS JOIN job j ORDER BY j.ID


/*full join */
select * from employee full join job on employee.id=job.id
select * from employee
select * from job


/*Union Concept */

create table one(names varchar(30),age int)
insert into two values('five',5)

select * from one

select * from two

/*union*/

select * from one
union
select * from two

/*union all*/
select * from one
union all
select * from two


Thursday, June 14, 2012

மெல்லக் கொல்லும் செல் போனும் தப்பிக்க சில வழிமுறைகளும்!


மெல்லக் கொல்லும் செல் போனும் தப்பிக்க சில வழிமுறைகளும்!

 

இன்று செல்போன் அத்தியாவசியமான ஒன்றாகிவிட்டது. அதனால் பாதிப்புக்கள் பல இருந்தும், அதனை கைவிடமுடியாது தவிக்கிறோம்.
அவ்வாறான செல்போன் ஆபத்துக்களில் இருந்து குறிப்பிட்ட அளவில் நம்மை பாதுகாக்க சில பரிந்துரைகள் கீழே தரப்படுகின்றன,
மொபைல் போனில் ஸ்பெசிபிக் அப்சார்ப்ஷன் ரேட்(SARSpecific Absorption Rate) என்று ஒரு அளவைக் கூறுகின்றனர்.


மொபைல் போன்கள் வாய்ஸ் மற்றும் டெக்ஸ்ட் அனுப்பிப் பெறுவதற்கு ரேடியோ அலைவரிசையை சக்தியைப் பயன்படுத்து கின்றன.இதனை நம் உடல் தசைகள் உறிஞ்சுகின்றன. ஒரு கிலோ தசையில் எந்த அளவு உறிஞ்சப்படும் வகையில் வெளியாகிறதோ அதனை SAR ரேட் என அழைக்கின்றனர். ஒவ்வொரு போனுக்கும் ஒருSAR ரேட் உண்டு. இந்த SAR ரேட் அதிகமாக இருந்தால், போனின் கதிர்வீச்சும் அதிகமாக இருக்கும்.

உங்கள் போனின் பேட்டரிக்குக் கீழாக, போனுடைய FCC (Federal Communications Commission) எண் தரப்பட்டிருக்கும். FCC யின் இணைய தளம் சென்று, உங்கள் போனின் FCC எண் கொடுத்து அதன் கதிர்வீச்சு மற்றும் அபாய தன்மையினைத் தெரிந்து கொள்ளலாம்.




போனுடன் ஹெட்செட் அல்லது ஸ்பீக்கரை இணைத்துப் பயன்படுத்துவது பயன் தரும். ஏனென்றால் போனை உடலுடன் ஒட்டி இல்லாமல் வைத்துக் கொள்ளலாம். போனை ஸ்பீக்கர் மோடில் வைத்து இயக்குவதனால், போன் கதிர் வீச்சு தலைக்குச் செல்லாமல் பார்த்துக் கொள்ளலாம்.
போனில் பேசும் போதும், டெக்ஸ்ட் அனுப்பும்போதும் கதிர்வீச்சு அதிகம் இருக்கும். ஆனால் வரும் அழைப்பினைக் கேட்கும் போது இது குறைவாக இருக்கும். எனவே குறைவாகப் பேசுவது நல்லது. மிக அவசியமான நேரங்களில் மட்டும் மொபைல் ஐ பயன்படுத்துங்கள்.


உங்கள் போனுக்கான சிக்னல் குறைவாக இருந்தால், உங்கள் போன் ஒலி அலையைப் பெற முயற்சிக்கையில் கதிர் வீச்சு அதிகமாக இருக்கும். எனவே அப்போது பேச முயற்சிப்பதை நிறுத்தி, பின் சிக்னல் அதிகமாக இருக்கையில் பேசவும்.


சிறுவர்களின் உடல் மற்றும் மூளையே பெரியவர்களைக் காட்டிலும் அதிகம் மொபைல் கதிர்வீச்சின் பாதிப்புக்குள்ளாகும். எனவே சிறுவர்களை மொபைல் பயன்படுத்துவதிலிருந்து தடுக்கவும். குழந்தைகளுக்கு அருகில் இருந்து மொபைலை பயன்படுத்தவேண்டாம். முக்கியமாக கர்ப்பினிகளுக்கு அருகில் மொபைலில் பேசுவதை தவிர்க்கவும்.


மொபைல் போன் உறைகள் போனுக்கு வரும் சிக்னல்களை ஓரளவிற்குத் தடுப்பதால், சிக்னல்களைத் தெளிவாகப் பெற உங்கள் போன் அதிக கதிர்வீச்சினை அனுப்பும். எனவேளுறைகள் பயன்படுத்துவதனைத் தடுக்கவும்.


சந்தையில் மலிவாக கிடைக்கும் சீன தயாரிப்பு மொபை போன்கள், ஏனையவற்றை காட்டிலும் அதிக கதிர்வீச்சை கொண்டவை என்பதை கவனத்தில் கொள்ளுங்கள்.




இவைதவிர, போக்குவரத்தில் வாகனம் ஓட்டும் போது மொபைல் பாவிப்பது உடனடி மரணத்தை விளைவிக்க கூடியது.




Thanks to www.tamilcloud.com

Thursday, May 31, 2012

Toll Free Numbers in India


                 Toll Free Numbers in India

Airlines

 Indian Airlines - 1800 180 1407    

  Jet Airways - 1800 22 5522

 Spice Jet - 1800 180 3333      

 Air India -- 1800 22 7722
Kingfisher - 1800 180 0101

Banks

ABN AMRO - 1800 11 2224 

 Canara Bank - 1800 44 6000

 Citibank - 1800 44 2265

 Corporation Bank - 1800 443 555

Development Credit Bank - 1800 22 5769

 HDFC Bank - 1800 227 227

ICICI Bank - 1800 333 499

ICICI Bank NRI - 1800 22 4848

 IDBI Bank - 1800 11 6999
Indian Bank - 1800 425 1400

 ING Vysya - 1800 44 9900

 Kotak Mahindra Bank - 1800 22 6022

Lord Krishna Bank - 1800 11 2300

 Punjab National Bank - 1800 122 222

 State Bank of India - 1800 44 1955
Syndicate Bank - 1800 44 6655

 

Automobiles

 Mahindra Scorpio - 1800 22 6006

 Maruti - 1800 111 515

 Tata Motors - 1800 22 5552
Windshield Experts - 1800 11 3636

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

Computers/IT
Adrenalin - 1800 444 445

AMD - 1800 425 6664

 Apple Computers - 1800 444 683

 Canon - 1800 333 366

Cisco Systems - 1800 221 777

Compaq - HP - 1800 444 999
Data One Broadband - 1800 424 1800

 Dell - 1800 444 026 Epson - 1800 44 0011

eSys - 3970 0011

Genesis Tally Academy - 1800 444 888
HCL - 1800 180 8080

IBM - 1800 443 333

 Lexmark – 180022 4477

Marshal's Point - 1800 33 4488

 Microsoft - 1800 111 100

Microsoft Virus Update - 1901 333 334
Seagate - 1800 180 1104

Symantec - 1800 44 5533

 TVS Electronics - 1800 444 566

WeP Peripherals - 1800 44 6446
Wipro - 1800 333 312

Xerox - 1800 180 1225

 Zenith - 1800 222 004

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

Indian Railway Enquiries

 Indian Railway General Enquiry 131
Indian Railway Central Enquiry 131

 

 

Indian Railway Reservation 131

Indian Railway Railway Reservation Enquiry 1345,1335,1330

 Indian Railway Centralised Railway Enquiry 1330/1/2/3/4/ 5/6/7/8/9
============ ========= ========= ========= ========= =====

 Couriers/Packers & Movers

 ABT Courier - 1800 44 8585

 AFL Wizz - 1800 22 9696

 Agarwal Packers & Movers - 1800 11 4321
Associated Packers P Ltd - 1800 21 4560

 DHL - 1800 111 345

 FedEx - 1800 22 6161

Goel Packers & Movers - 1800 11 3456

UPS - 1800 22 7171

 ============ ========= ========= =========
Home Appliances

Aiwa/Sony - 1800 11 1188

 Anchor Switches - 1800 22 7979

 Blue Star - 1800 22 2200

 Bose Audio - 1800 11 2673
Bru Coffee Vending Machines - 1800 44 7171

 Daikin Air Conditioners - 1800 444 222

 DishTV - 1800 12 3474

 Faber Chimneys - 1800 21 4595

 Godrej - 1800 22 5511
Grundfos Pumps - 1800 33 4555

 LG - 1901 180 9999

 Philips - 1800 22 4422

 Samsung - 1800 113 444

Sanyo - 1800 11 0101

 Voltas - 1800 33 4546
WorldSpace Satellite Radio - 1800 44 5432

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

Investments/ Finance

CAMS - 1800 44 2267

 Chola Mutual Fund - 1800 22 2300

 Easy IPO's - 3030 5757

 Fidelity Investments - 1800 180 8000

 Franklin Templeton Fund - 1800 425 4255

J M Morgan Stanley - 1800 22 0004

Kotak Mutual Fund - 1800 222 626
LIC Housing Finance - 1800 44 0005

 SBI Mutual Fund - 1800 22 3040

 Sharekhan - 1800 22 7500

 Tata Mutual Fund - 1800 22 0101

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

Travel

 Club Mahindra Holidays - 1800 33 4539

 Cox & Kings - 1800 22 1235

 God TV Tours - 1800 442 777

 Kerala Tourism - 1800 444 747

 Kumarakom LakeResort - 1800 44 5030
Raj Travels & Tours - 1800 22 9900

 Sita Tours - 1800 111 911 SOTC

Tours - 1800 22 3344

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

Healthcare

 Best on Health - 1800 11 8899

 Dr Batras - 1800 11 6767
GlaxoSmithKline - 1800 22 8797

Johnson & Johnson - 1800 22 8111

 Kaya Skin Clinic - 1800 22 5292

 LifeCell - 1800 44 5323
Manmar Technologies - 1800 33 4420

 Pfizer - 1800 442 442

Roche Accu-Chek - 1800 11 45 46

 Rudraksha - 1800 21 4708

Varilux Lenses - 1800 44 8383
VLCC - 1800 33 1262

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

Insurance

AMP Sanmar - 1800 44 2200

Aviva - 1800 33 2244

 Bajaj Allianz - 1800 22 5858

Chola MS General

 Insurance - 1800 44 5544
HDFC Standard Life - 1800 227 227

LIC - 1800 33 4433

Max New York Life - 1800 33 5577

Royal Sundaram - 1800 33 8899

SBI Life Insurance - 1800 22 9090

============ ========= ========= =======
Hotel Reservations

GRT Grand - 1800 44 5500

 InterContinental Hotels Group - 1800 111 000

 Marriott - 1800 22 0044

Sarovar Park Plaza - 1800 111 222

Taj Holidays - 1800 111 825
============ ========= ========= ======

Teleshopping

 Asian Sky Shop - 1800 22 1800

 Jaipan Teleshoppe - 1800 11 5225

Tele Brands - 1800 11 8000

 VMI Teleshopping - 1800 447 777

WWS Teleshopping - 1800 220 777

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

 Others

Domino's Pizza - 1800 111 123
============ ========= ========= ====

Cell Phones

 BenQ - 1800 22 08 08

Bird CellPhones - 1800 11 7700

Motorola MotoAssist - 1800 11 1211

Nokia - 3030 3838

Sony Ericsson - 3901 1111


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





 


Wednesday, May 30, 2012

Run Commands In Windows XP


                      Run Commands In Windows XP


1.      You can access all these programs by going through START/RUN or Simply Click Windows Key+r

2.      SQL Client Configuration - cliconfg
3.      System Configuration Editor - sysedit
4.      System Configuration Utility - msconfig
5.      System File Checker Utility (Scan Immediately)- sfc /scannow
6.      System File Checker Utility (Scan Once At Next Boot)- sfc /scanonce
7.      System File Checker Utility (Scan On Every Boot) - sfc /scanboot
8.      System File Checker Utility (Return to Default Setting)- sfc /revert
9.      System File Checker Utility (Purge File Cache)- sfc /purgecache
10.  System File Checker Utility (Set Cache Size to size x)-sfc/cachesize=x
11.  System Information - msinfo32.
12.  Task Manager – taskmgr
13.  System Properties - sysdm.cpl
14.  Task Manager – taskmgr
15.  TCP Tester - tcptest
16.  Telnet Client - telnet
17.  Tweak UI (if installed) - tweakui
18.  User Account Management- nusrmgr.cpl
19.  Utility Manager - utilman
20.  Windows Address Book - wab
21.  Windows Address Book Import Utility - wabmig
22.  Windows Backup Utility (if installed)- ntbackup
23.  Windows Explorer - explorer
24.  Windows Firewall- firewall.cpl
25.  Windows Magnifier- magnify
26.  Windows Management Infrastructure - wmimgmt.msc
27.  Windows Media Player - wmplayer
28.  Windows Messenger - msmsgs
29.  Windows Picture Import Wizard (need camera connected)- wiaacmgr
30.  Windows System Security Tool – syskey
31.  Windows Update Launches - wupdmgr
32.  Windows Version (to show which version of windows)- winver
33.  Windows XP Tour Wizard - tourstart
34.  Wordpad - write
35.  Password Properties - password.cpl
36.  Performance Monitor - perfmon.msc
37.  Phone and Modem Options - telephon.cpl
38.  Phone Dialer - dialer
39.  Pinball Game - pinball
40.  Power Configuration - powercfg.cpl
41.  Printers and Faxes - control printers
42.  Printers Folder – printers
43.  Private Character Editor - eudcedit
44.  Quicktime (If Installed)- QuickTime.cpl
45.  Real Player (if installed)- realplay
46.  Regional Settings - intl.cpl
47.  Registry Editor - regedit
48.  Registry Editor - regedit32
49.  Remote Access Phonebook - rasphone
50.  Remote Desktop - mstsc
51.  Removable Storage - ntmsmgr.msc
52.  Removable Storage Operator Requests - ntmsoprq.msc
53.  Resultant Set of Policy (XP Prof) - rsop.msc
54.  Scanners and Cameras - sticpl.cpl
55.  Scheduled Tasks - control schedtasks
56.  Security Center - wscui.cpl
57.  Services - services.msc
58.  Shared Folders - fsmgmt.msc
59.  Shuts Down Windows - shutdown
60.  Sounds and Audio - mmsys.cpl
61.  Spider Solitare Card Game - spider
62.  Malicious Software Removal Tool - mrt
63.  Microsoft Access (if installed) - access.cpl
64.  Microsoft Chat - winchat
65.  Microsoft Excel (if installed) - excel
66.  Microsoft Frontpage (if installed)- frontpg
67.  Microsoft Movie Maker - moviemk
68.  Microsoft Paint - mspaint
69.  Microsoft Powerpoint (if installed)- powerpnt
70.  Microsoft Word (if installed)- winword
71.  Microsoft Syncronization Tool - mobsync
72.  Minesweeper Game - winmine
73.  Mouse Properties - control mouse
74.  Mouse Properties - main.cpl
75.  Nero (if installed)- nero
76.  Netmeeting - conf
77.  Network Connections - control netconnections
78.  Network Connections - ncpa.cpl
79.  Network Setup Wizard - netsetup.cpl
80.  Notepad - notepad
81.  Nview Desktop Manager (If Installed)- nvtuicpl.cpl
82.  Object Packager - packager
83.  ODBC Data Source Administrator- odbccp32.cpl
84.  On Screen Keyboard - osk
85.  Opens AC3 Filter (If Installed) - ac3filter.cpl
86.  Outlook Express - msimn
87.  Paint – pbrush
88.  Keyboard Properties - control keyboard
89.  IP Configuration (Display Connection Configuration) - ipconfi/all
90.  IP Configuration (Display DNS Cache Contents)- ipconfig /displaydns
91.  IP Configuration (Delete DNS Cache Contents)- ipconfig /flushdns
92.  IP Configuration (Release All Connections)- ipconfig /release
93.  IP Configuration (Renew All Connections)- ipconfig /renew
94.  IP Configuration(RefreshesDHCP&Re-RegistersDNS)-ipconfig/registerdns
95.  IP Configuration (Display DHCP Class ID)- ipconfig/showclassid
96.  IP Configuration (Modifies DHCP Class ID)- ipconfig /setclassid
97.  Java Control Panel (If Installed)- jpicpl32.cpl
98.  Java Control Panel (If Installed)- javaws
99.  Local Security Settings - secpol.msc
100.                      Local Users and Groups - lusrmgr.msc
101.                      Logs You Out Of Windows - logoff.....
102.                      Accessibility Controls - access.cpl
103.                      Accessibility Wizard - accwiz
104.                      Add Hardware - Wizardhdwwiz.cpl
105.                      Add/Remove Programs - appwiz.cpl
106.                      Administrative Tools control - admintools
107.                      Adobe Acrobat (if installed) - acrobat
108.                      Adobe Designer (if installed)- acrodist
109.                      Adobe Distiller (if installed)- acrodist
110.                      Adobe ImageReady (if installed)- imageready
111.                      Adobe Photoshop (if installed)- photoshop
112.                      Automatic Updates - wuaucpl.cpl
113.                      Bluetooth Transfer Wizard – fsquirt
114.                      Calculator - calc
115.                      Certificate Manager - certmgr.msc
116.                      Character Map - charmap
117.                      Check Disk Utility - chkdsk
118.                      Clipboard Viewer - clipbrd
119.                      Command Prompt - cmd
120.                      Component Services - dcomcnfg
121.                      Computer Management - compmgmt.msc
122.                      Control Panel - control
123.                      Date and Time Properties - timedate.cpl
124.                      DDE Shares - ddeshare
125.                      Device Manager - devmgmt.msc
126.                      Direct X Control Panel (If Installed)- directx.cpl
127.                      Direct X Troubleshooter- dxdiag
128.                      Disk Cleanup Utility- cleanmgr
129.                      Disk Defragment- dfrg.msc
130.                      Disk Management- diskmgmt.msc
131.                      Disk Partition Manager- diskpart
132.                      Display Properties- control desktop
133.                      Display Properties- desk.cpl
134.                      Display Properties (w/Appearance Tab Preselected)- control color
135.                      Dr. Watson System Troubleshooting Utility- drwtsn32
136.                      Driver Verifier Utility- verifier
137.                      Event Viewer- eventvwr.msc
138.                      Files and Settings Transfer Tool- migwiz
139.                      File Signature Verification Tool- sigverif
140.                      Findfast- findfast.cpl
141.                      Firefox (if installed)- firefox
142.                      Folders Properties- control folders
143.                      Fonts- control fonts
144.                      Fonts Folder- fonts
145.                      Free Cell Card Game- freecell
146.                      Game Controllers- joy.cpl
147.                      Group Policy Editor (XP Prof)- gpedit.msc
148.                      Hearts Card Game- mshearts
149.                      Help and Support- helpctr
150.                      HyperTerminal- hypertrm
151.                      Iexpress Wizard- iexpress
152.                      Indexing Service- ciadv.msc
153.                      Internet Connection Wizard- icwconn1
154.                      Internet Explorer- iexplore
155.                      Internet Setup Wizard- inetwiz
156.                      Internet Properties- inetcpl.cpl