Saturday, January 15, 2011

Taking Remote and Working in Remote PC

I really come across a pretty cool Software "Team Viewer" really useful software download free from CNET-www.download.com
Its has many good functionality like u can install thus software in any pc and can take remote from other pc. I am explaning clearly with a scenario suppose u r using pc in a different location but u want to access ur friends pc to show how to do a work in his/her pc and by phone he/she not getting. Simply start ur Team Viewer Application tell ur friend to do so and ask for His/Her user Id and password which is generally regenerates at every login if u ve selected default setup while installing software. Now using ur friends User Id and password u can take remote by selecting radio button in the team viewer window and connect. Now here u r right in ur friends desktop as a separate window in ur desktop like a browser. Now u can simply work on this remote pc which ur friend watching over to get ur work done. its free for non commercial purpose.

i will come many more cool stuffs like this. though taking remote is possible in windows and other relevant softwares but for home user this software is really helpfull.

Tuesday, July 1, 2008

HTML Tag Reference:A quick guide to mastering forms of HTML

Forms
This section discusses the tags for creating forms.

* FORM
* INPUT
o INPUT TYPE="BUTTON"
o INPUT TYPE="CHECKBOX"
o INPUT TYPE="FILE"
o INPUT TYPE="HIDDEN"
o INPUT TYPE="IMAGE"
o INPUT TYPE="PASSWORD"
o INPUT TYPE="RADIO"
o INPUT TYPE="RESET"
o INPUT TYPE="SUBMIT"
o INPUT TYPE="TEXT"
* SELECT
* OPTION
* TEXTAREA
* KEYGEN
* ISINDEX

FORM
(form for user input)
The FORM tag creates an HTML form. The form can contain interface elements such as text fields, buttons, checkboxes, radio buttons, and selection lists that let users enter text and make choices. Each interface element in the form must be defined with an appropriate tag, such as or . All elements in the form must be defined between the
and
tags. As well as user input elements, the form can contain other elements such as headings, paragraphs, tables, and so on.

When the form is displayed in a web browser, the user can fill it out by making choices and entering text using the interface elements, and then submit the form by clicking a "Submit" button.

Kinds of Interface Elements
Several kinds of form elements can be defined using the INPUT tag, which uses the TYPE attribute to indicate the type of element, such as button, checkbox, and so on.

Two other kinds of interface elements you can put in a form are selection lists and text areas. Selection lists act as menus and are defined with the SELECT tag. Multi-line text-entry fields are defined with the TEXTAREA tag.

Submit Buttons and CGI Programs
To enable the form to process the data that the user enters, it must have a "Submit" button, which is a button defined by an or an tag.

The action invoked when the user clicks a "Submit" button is defined by the ACTION attribute of the FORM tag. The value of the ACTION attribute is usually a URL that points to a CGI program. A CGI program runs on a a server, processes arguments sent by the form, and returns data to the browser. The value of the form's METHOD attribute also affects the way the CGI program is invoked. It is beyond the scope of this reference to provide details of CGI programming, but many fine books are available on the subject, and also lots of information is available on the web. A good starting point is:

http://hoohoo.ncsa.uiuc.edu:80/cgi/overview.html
ONCLICK and ONSUBMIT
You can also define OnClick event handlers for several kinds of input elements. An OnClick event handler is a piece of JavaScript code that is executed when the element is clicked. For information about JavaScript, see the JavaScript Guide or the JavaScript Reference.

The FORM tag has an optional ONSUBMIT attribute, whose value is a JavaScript event handler that executes when a "Submit" button in the form is pressed. If the JavaScript code returns false, the form's action ends there, and the URL specified by the ACTION attribute is not invoked. If the JavaScript code returns anything else, the URL specified by the ACTION attribute is invoked. For example, you could use the ONSUBMIT attribute to check whether or not the user really wants to submit the form.

Name/Value Pairs
When a form is submitted, the data contained in the form is sent to the invoked CGI program as a series of name/value pairs. The name portion of each pair is the name of an interface element as specified by its NAME attribute. In most cases the value portion is the value displayed by the element, for example, the text displayed in a text field.

Nesting Forms
A document can have multiple forms, but forms cannot be nested -- you cannot have a form within a form. If your document uses positioned HTML content, each form must be completely contained within one positioned block. For more information on positioning HTML content, see Part 2, Positioning HTML Content in Dynamic HTML in Netscape Communicator.

Syntax

...


The ACTION attribute is required if any action is to occur when the user presses a "Submit" button in the form.

ACTION="serverURL"

specifies the URL of the program to be invoked when the form is submitted. The action can also be a mailto: URL if the form results are to be mailed to someone.

ENCTYPE="encodingType"

specifies the MIME encoding of the data sent:

* "application/x-www-form-urlencoded" (the default), is usually used if the METHOD attribute has the value POST.
* "multipart/form-data" is used when the form contains a file upload element (INPUT TYPE="FILE").

METHOD

specifies how information is sent to program invoked by submitting the form.

* GET (the default) appends the input information to the URL which on most receiving systems becomes the value of the environment variable QUERY_STRING.
* POST sends the input information in a data body that is available on stdin with the data length set in the environment variable CONTENT_LENGTH.

NAME="formName"

specifies the name of the form. The name is not displayed on the form. JavaScript can use the NAME attribute to differentiate different forms if there are multiple forms on a page. For information about JavaScript, see the JavaScript Guide or the JavaScript Reference.

ONRESET="JScode"

specifies JavaScript code that executes when a user resets the form by using a RESET button.

ONSUBMIT="JScode"

specifies JavaScript code that executes when a user submits the form by clicking a "Submit" button.You can use the ONSUBMIT attribute to prevent a form from being submitted; to do so, put a return statement that returns false in the JavaScript code. Any other returned value lets the form submit. If you omit the return statement, the form is submitted.

TARGET="windowName"

specifies the window that displays the data returned by the invoked program. See the description of special target values in the "A as link" section for a list of the pre-defined target values. Navigator 2.

Example
The following example creates a form called LoginForm that contains text fields for user name and password, a submit button, and a cancel button.


User name:

Password:





The file forms.html shows this example in action in a separate window.

INPUT
(input element in a form)
The INPUT tag defines a form element that can receive user input. The TYPE attribute determines the specific sort of form element to be created. TYPE can be one of the following:

* BUTTON places a button on an HTML form. Use JavaScript code to make the button perform an action you define. See INPUT TYPE="BUTTON".

* CHECKBOX places a toggle switch on an HTML form, letting the user set a value on or off. See INPUT TYPE="CHECKBOX".

* FILE places an element on an HTML form letting the user supply a file as input. When the form is submitted, the content of the specified file is sent to the server along with the other form data. See INPUT TYPE="FILE". Navigator 2.0

* HIDDEN specifies an invisible text element. A hidden element is used for passing information to the server when a form is submitted. See INPUT TYPE="HIDDEN".

* IMAGE places an image, serving as a custom button, on an HTML form. When a user clicks an image element, the form is submitted to the server. See INPUT TYPE="IMAGE".

* PASSWORD places a text input field on an HTML form. Each character typed in the field is displayed as a character such as * or a black dot to conceal the actual value. See INPUT TYPE="PASSWORD".

* RADIO places a radio button on an HTML form. Radio buttons can be grouped into sets, and only one button per set can be selected at a time. See INPUT TYPE="RADIO".

* RESET places a reset button on an HTML form. When a user clicks a reset button, all elements in the form are reset to their default values. See INPUT TYPE="RESET".

* SUBMIT places a submit button on an HTML form. When a user presses a submit button, the form is submitted. See INPUT TYPE="SUBMIT".

* TEXT places a single line text input field on an HTML form. A text field lets the user enter text. See INPUT TYPE="TEXT".

INPUT TYPE="BUTTON"
A button apears in the form. You must specify JavaScript code as the value of the ONCLICK attribute to determine what happens when the user clicks the button.

Syntax


NAME="buttonName"

specifies the name of the button. The name does not appear in the form.

VALUE="buttonText"

specifies the text to be displayed in the button.

ONCLICK="JScode"

specifies JavaScript code to execute when a user clicks the button. For information about JavaScript, see the JavaScript Guide or the JavaScript Reference.

Example





The file forms.html shows this example in action in a separate window.

INPUT TYPE="CHECKBOX"
A checkbox is a toggle that the user can select (switch on) or deselect (switch off.)

Syntax


CHECKED

indicates that the checkbox is displayed with a tick mark to indicate that it is selected.

NAME="name"

specifies the name of the input element. This value is the name portion of the name/value pair for this element that is sent to the server when the form is submitted. The name is not displayed on the form.

ONCLICK="JScode"

specifies JavaScript code to execute when a user clicks the checkbox. For information about JavaScript, see the JavaScript Guide or the JavaScript Reference.

VALUE="checkboxValue"

specifies the value to be returned to the server if the checkbox is selected when the form is submitted. The default value is ON, but you can specify a different value if you want. When the form is submitted, only the name/value pairs for selected checkboxes are sent to the invoked CGI program.

Example

Specify your music preferences (check all that apply):



R&B

Jazz

Blues

New Age

The file forms.html shows this example in action in a separate window.

INPUT TYPE="FILE"
This places an element on an HTML form that lets the user supply a file as input. When the form is submitted, the content of the specified file is sent to the server as the value portion of the name/value pair for this input element. Netscape Navigator displays a "Browse" button next to the file input element that lets users select a file from their system to use as the value of the file input element. Navigator 2.0

If a a form contains a file input element, the value of the ENCTYPE attribute of the FORM tag should be "multipart/form-data".

Syntax


NAME=name

specifies the name of the input element. This value is used as the name portion of the name/value pair for this element that is sent to the server when the form is submitted. The name is not displayed on the form.

VALUE=filename

specifies the initial value of the input element.

Example


File name:



The file forms.html shows this example in action in a separate window.

INPUT TYPE="HIDDEN"
A hidden input element is an invisible element whose main purpose is to contain data that the user does not enter. This data gets sent to the invoked CGI program when the form is submitted.

This tag provides a mechanism for delivering a value to the CGI program without the user having entered it, but note that it is not very hidden because the user can discover it by viewing the document source.

Syntax


NAME="name"

specifies the name of the input element. This value is the name portion of the name/value pair sent to the invoked CGI program when the form is submitted. The name is not displayed on the form.

VALUE="value"

specifies the initial value of the input element.

Example
This example creates a form with a hidden element, DefaultPass, that stores the initial value of the password field.


Password:




The file forms.html shows this example in action in a separate window.

INPUT TYPE="IMAGE"
This places an image, serving as a custom button, on an HTML form. When a user clicks the image, the form is submitted to the server.

Syntax


ALIGN

specifies the alignment of the image in relation to the surrounding text. If you do not specify a value for ALIGN, Navigator uses BOTTOM as the default. The possible values are LEFT, RIGHT, TOP, ABSMIDDLE, ABSBOTTOM, TEXTTOP, MIDDLE, BASELINE, and BOTTOM. See the section "IMG" for a description of the values. Navigator 1.1

NAME=name

specifies the name of the input element. This value is used as the name portion of the name/value pair for this element that is sent to the invoked CGI program when the form is submitted. The name is not displayed on the form.When Navigator sends the offsets of the image to the server, it sends them as name.x and name.y.

SRC="location"

specifies the URL of the image to be displayed in the document.

Example



The file forms.html shows this example in action in a separate window.

INPUT TYPE="PASSWORD"
A password element is a text input field in which each character typed is displayed as a character such as * or a black dot to conceal the actual value.

Syntax


MAXLENGTH="maxChar"

specifies the maximum number of characters a password box can accept.

NAME="name"

specifies the name of the input element. This value is used as the name portion of thename/value pair for this element that is sent to the server when the form is submitted. The name is not displayed on the form.

ONSELECT="JScode"

specifies JavaScript code to execute when a user selects some of the text in the text element. For information about JavaScript, see the JavaScript Guide or the JavaScript Reference.

SIZE="charLength"

specifies the length of the input field, in characters. The value should be an integer.

VALUE="textValue"

specifies the initial value of the password, if any.

Example

Password:


The file forms.html shows this example in action in a separate window.

INPUT TYPE="RADIO"
A radio element is a radio button. A set of radio buttons consists of multiple radio buttons that all have the same NAME attribute. Only one radio button in the set can be selected at one time. When the user selects a button in the set, all other buttons in the set are deselected. If one radio button in a set has the CHECKED attribute, that one is selected when the set is first laid out on the window.

Syntax


CHECKED

indicates that the radio button is selected.

NAME="name"

specifies the name of the input element. This value is used as the name portion of the name/value pair for this element that is sent to the invoked CGI program when the form is submitted. The name is not displayed on the form. All radio buttons that have the same name constitute a radio group; only one radio button of a group can be set at one time.

ONCLICK="JScode"

specifies JavaScript code to execute when a user clicks the radio button. For information about JavaScript, see the JavaScript Guide or the JavaScript Reference.

VALUE="value"

specifies the value that is returned to the server when the radio button is selected and the form is submitted. Only name/value pairs for radio buttons that are selected are sent to the invoked CGI program. The value defaults to ON.

Example
The following example creates a radio button group.

Category:

Living

Dining

Bedroom

The file forms.html shows this example in action in a separate window.

INPUT TYPE="RESET"
When a user presses a reset button, all elements in the form are reset to their default values

Syntax


NAME="name"

specifies the name of the input element.

ONCLICK="JScode"

specifies JavaScript code to execute when a user clicks the button. For information about JavaScript, see the JavaScript Guide or the JavaScript Reference.

VALUE="label"

specifies the text to display on the face of the reset button.

Example
This example displays a text element with the default value CA and a reset button labelled Clear Form. If the user types a state abbreviation in the text element and then clicks the Clear Form button, the original value of CA is restored.


State:




The file forms.html shows this example in action in a separate window.

INPUT TYPE="SUBMIT"
When a user clicks a submit button, the form is submitted, which means that the ACTION specified for the form is invoked.

Syntax


NAME="name"

specifies the name of the input element. The name is not displayed on the form.

VALUE="label"

specifies the text to display on the face of the submit button.

Example



The file forms.html shows this example in action in a separate window.

INPUT TYPE="TEXT"
A text element is a single line text input field in which the user can enter text.

Syntax


MAXLENGTH="maxChars"

specifies the maximum number of characters a text box can accept.

NAME="name"

specifies the name of the input element. This value is used as the name portion of the name/value pair for this element that is sent to the invoked CGI program when the form is submitted. The name is not displayed on the form.

ONBLUR="JScode"

specifies JavaScript code to execute when the text element loses keyboard focus. For information about JavaScript, see the JavaScript Guide or the JavaScript Reference..

ONCHANGE="JScode"

specifies JavaScript code to execute when the text element loses focus and its value has been modified.

ONFOCUS="JScode"

specifies JavaScript code to execute when a user clicks the text element. See the JavaScript Guide forSee the JavaScript Guide for more information.

ONSELECT="JScode"

specifies JavaScript code to execute when a user selects some of the text in the text element.

SIZE="lengthChars"

specifies the length of the input field, in characters.

VALUE="text"

specifies the initial value of the text element.

Example

Last name:


The file forms.html shows this example in action in a separate window.

SELECT
(selection list in a form)
The SELECT tag defines a selection list on an HTML form. A selection list displays a list of options from which the user can select an item. If the MUTLIPLE attribute is supplied, users can select multiple options from the list at a time. If the MULTIPLE attribute is not supplied users can select only one option in the list at a time.

The SIZE attribute specifies how many options in the list are displayed at one time. For multiple-selection lists, if you do not specify the SIZE attribute, the browser displays some, maybe all, of the options. For single-selection lists, by default Navigator displays the list as a drop-down menu that initially shows only one option. The user can click the list to display the rest of the options. If you specify the SIZE attribute, the list is displayed as a scrolling list that shows the specified number of options, regardless of whether the list allows single or multiple selection..

The SELECT tag should be used between

and
tags. Use the OPTION tag to define options in the list.

When the form containing the selection list is submitted to the server, a name/value pair is sent for each selected option in the list.

Syntax


MULTIPLE

specifies that multiple items can be selected. If this attribute is omitted, only one item can be selected from the list. If multiple selection is enabled, the user usually needs to hold down the Shift key to select additional items.

NAME="selectName"

specifies the name of the select element. This value is the name portion of the name/value pair sent to the invoked CGI program when the form is submitted. The name is not displayed on the form.

ONBLUR="blurJScode"

specifies JavaScript code to execute when the select element loses focus. For information about JavaScript, see the JavaScript Guide or the JavaScript Reference..

ONCHANGE="changeJScode"

specifies JavaScript code to execute when the select element loses focus and its value has been modified.

ONCLICK="JScode"

specifies JavaScript code to execute when a user clicks an item in the list.

ONFOCUS="focusJScode"

specifies JavaScript code to execute when the element gets focus.

SIZE="ListLength"

specifies the number of options visible when the form is displayed. If the list contains more options than specified by size, the list is displayed with scrollbars.

Used Within
FORM

Select Example 1:Single Item Selection


Shipping method:




Example 2: Multiple Selection


...
Music types for your free CDs:


.


Example 3: Multiple Selection With Default
In the following example, all seven options can be chosen, but bananas are selected by default. The list is displayed as a scrollable menu that fits four options at a time.





The file forms.html shows this example in action in a separate window.

OPTION
(option in a SELECT list)
The OPTION tag specifies an option in a selection list. Use the OPTION tag inside a SELECTION tag. When the form containing the selection list is submitted to the server, a name/value pair is sent for each selected option in the list. The value portion of an option is the value of the VALUE attribute, if it has one, otherwise, it is the text that follows the tag.

Syntax

...


VALUE="OptionValue"

specifies a value that is returned to the server when the option is selected and the form is submitted. When no VALUE attribute is present, the value returned is the same as the text following the tag.

SELECTED

specifies that the option is selected by default.

Used within
FORM

Example
See Select Example 1:Single Item Selection.

TEXTAREA
(text field on a form)
The TEXTAREA tag defines a multiline input field on an HTML form. A text area field lets the user enter words, phrases, or numbers.

You can defines the number of characters per line the text area can accommodate without scrolling by supplying the COLS attribute. You can specify that the number of lines that can appear without scrolling by supplying the ROWS attribute.

Scrollbars appear in the text area if the text in the text area element exceeds the number of specified columns or rows.

To begin a new line in a text area element, use a new paragraph. For example, the following text area element contains two lines, a blank line, then one line:


Description:




Syntax


COLS="columns"

defines the width (number of characters per line) the text area can accommodate without scrolling.

NAME="name"

specifies the name of the text area element. This value is the name portion of the name/value pair sent to the invoked CGI program when the form is submitted. The name is not displayed on the form.

ONBLUR="JScode"

specifies JavaScript code to execute when the text area element loses focus. For information about JavaScript, see the JavaScript Guide or the JavaScript Reference..

ONCHANGE="JScode"

specifies JavaScript code to execute when the text area element loses focus and its value has been modified..

ONFOCUS="JScode

specifies JavaScript code to execute when a text area element receives focus.

ONSELECT="JScode"

specifies JavaScript code to execute when a user selects some of the text in the text area element.

ROWS="rows"

defines the number of lines (number of rows) the text area can accommodate without scrolling.

WRAP

specifies whether lines longer than the text area's column width wrap to the next line. Navigator 2.0.

The value of WRAP can be one of the following:

* OFF disables word wrap. Text the user types is displayed with the exact line breaks that the user types. If the user explicitly inserts a line break, however, the break is included as part of the text area's value. The user has to scroll horizontally to see the ends of lines that do not fit in the text area element.
* HARD causes word wrap, and the line breaks are included when the form is submitted. The text wraps inside the text area element, and that the user does not need to scroll horizontally.
* SOFT causes word wrap, but the line breaks are not included when the form is submitted.

Used Within
FORM

Example
The following example creates a text area element that is 4 rows long and 40 columns wide. When the form loads, the text area element contains several lines of text, including one blank line.





The file forms.html shows this example in action in a separate window.

KEYGEN
(generate key material)
The KEYGEN tag facilitates the generation of key material and submission of the public key as part of an HTML form. This mechanism is designed for use in web-based certificate management systems. It displays a menu of key-size choices from which the user must choose one. Then, when the submit button is clicked, a key pair of the selected size is generated. The private key is encrypted and stored in the local key database.

The public key and challenge string are DER encoded as PublicKeyAndChallenge and then digitally signed with the private key to produce a SignedPublicKeyAndChallenge. The SignedPublicKeyAndChallenge is base64 encoded, and the ASCII data is finally submitted to the server as the value of a name-value pair, where the name is specified by the NAME attribute of the KEYGEN tag.

Syntax


The NAME attribute is required

NAME="name"

specifies the name for the name/value pair.

CHALLENGE="challenge"

specifies the challenge string to be packaged with the public key in the PublicKeyAndChallenge for use in verification of the form submission. If no challenge string is provided, then it is encoded as an IA5STRING of length zero.

Used Within
FORM

Example


...

...


ISINDEX
(searchable index)
The ISINDEX tag causes the web page to display a text entry field in which the user can type a string. The intent of this tag is that it "switches on searching" in the page, but in reality, this tag is useful only if the page is generated by a CGI program.

The intent is that when the user enters text into the text entry field and presses the Return key (or clicks an appropriate button on the browser), the CGI program is invoked again, with the arguments generated from the data in the text field. The browser outputs a new page whose content is determined by what the user entered in the text field.

The CGI program should test for the presence of arguments. If there are none, it should display a default page that includes the ISINDEX tag in the header. If there are arguments, the script does whatever it needs to do. The string entered by the user is the first argument, and the language your script uses determines how you access the first argument.

It is beyond the scope of this reference to provide details on CGI programming, but many fine books are available on the subject, and lots of information is available on the web. A good starting point is:

http://hoohoo.ncsa.uiuc.edu:80/cgi/overview.html
Note that ISINDEX does not require a closing tag.

Syntax


PROMPT="text"

specifies the text that appears as the search prompt in the browser. Navigator 1.1.

Used Within
HEAD

Example
The following snippet of code from a CGI program generates the header for an HTML page. When the page is displayed, it has a text entry field whose prompt is "Enter a search keyword:".

cat << EOF


EOF

Saturday, June 28, 2008

Secretes Of Windows XP

Defrag Defrag

Secret - Hidden Command Line Switch
Instructions - Go to "Start", "Run" and Type defrag c: -b to defragment the Boot and Application Prefetch information.

Notes - Windows XP will run this automatically every three days or so, during system idle periods. BootVis will evoke this when you run the "Optimize System" function. There is no need to manually run this unless you wish to immediately optimize a newly installed application's load time.


IExpress IExpress

Secret - Hidden Install Creator
Instructions - Go to Start, Run, type iexpress -

Notes - IExpress is a technology designed to simplify creation of a setup program. Using the step-by-step IExpress Wizard, you can create self-extracting files that automatically run the setup program contained inside. The setup program can be an .inf file or an executable program. IExpress technology automatically removes the setup files after installation, saving the user time and frustration.


Edit.com MS-DOS Editor

Secret - Hidden Text Editor
Instructions - Go to Start, Run, type edit -

Notes - Windows XP comes with another text editor besides Notepad - it's called the MS-DOS Editor, and it's commonly referred to simply as Edit. It has features similar to Notepad, as well as additional features such as the ability to work with multiple text files and change the background and text colors.


Conf Netmeeting

Secret - Hidden Internet Conference Application
Instructions - Go to Start, Run, type conf -

Notes - Windows XP is the last version of Microsoft Windows to include NetMeeting. NetMeeting delivers a complete Internet conferencing solution for all Windows users with multi-point data conferencing, text chat, whiteboard, and file transfer, as well as point-to-point audio and video.


Notepad Notepad

Secret - Create a Log File
Instructions - Launch Notepad, Type .LOG on the first line, and then press Enter to move to the next line. On the File menu, click Save As, type a descriptive name for your file in the File name box, and then click OK. When you next open the file, note that the date and time have been appended to the end of the log, immediately preceding the place where new text can be added. You can use this functionality to automatically add the current date and time to each log entry. -


Paint Paint

Secret - Image Trails
Instructions - Open an image and hold down Shift then drag the image around to create an image trail.

Secret - 10x Zoom
Instructions - Open an image and select the magnifying glass icon. Left-Click exactly on the line below the 8x.


Eudcedit Private Character Editor

Secret - Hidden Font Editor
Instructions - Go to Start, Run, type eudcedit -

Notes - You can use Private Character Editor to create unique letters and logos for your font library.


WinChat Windows Chat

Secret - Hidden Windows Chat Program
Instructions - Go to Start, Run, type winchat -

Notes - You can use Windows Chat on your computer to communicate with someone on another computer. Both computers must be connected to the same network (for example, a local area network [LAN] or the Internet). Also, each computer must be running a similar protocol, such as TCP/IP.


mplay32 Windows Media Player 5.1

Secret - Hidden Windows Media Player
Instructions - Go to Start, Run, type mplay32


mplayer2 Windows Media Player 6.4

Secret - Hidden Windows Media Player
Instructions - Go to Start, Run, type mplayer2 -

Notes - Windows Media Player 6.4 (Classic) is installed along with Windows Media Player 7. The only update is that it now supports the latest codecs.


Game Secrets



FreeCell FreeCell

Secret - Instant Win
Instructions - Hold down Ctrl + Shift + F10 during game play. Then you will be asked if you want to Abort, Retry or Ignore. Choose Abort, then move any card to instantly win.

Secret - Hidden Game Modes
Instructions - In the "Game" menu choose "Select Game". Enter -1 or -2 to activate the hidden game modes.


Hearts Hearts

Secret - Show All Cards
Instructions - Edit this registry key: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\Hearts and create a new String value named ZB with a Data value of 42. Start Hearts and Press Ctrl + Alt + Shift + F12 to show all the cards.

Background - This secret is a reference to Douglas Adams' book the Hitch Hiker's Guide to the Galaxy. 'ZB' is the initials of the character Zaphod Beeblebrox, the Galactic President. '42' is the answer to The Ultimate Question Of Life, the Universe and Everything.


Minesweeper Minesweeper

Secret - Reveal Mines
Instructions - Minimize or close all running applications. Launch Minesweeper, then type xyzzy. Next hold down either shift key for one second. Now when you move the mouse cursor over a Minesweeper square you will see a tiny white pixel in the top left corner of your desktop screen. This pixel will change to black when your mouse moves over a mine. You may need to change you desktop background to a solid color other then white or black to see the pixel.

Secret - Stop Timer
Instructions - Launch Minesweeper and start a game so the timer starts counting, then press the Windows Key + D to show the desktop. Now when you select minesweeper from the taskbar you can continue playing with the timer stopped.


Pinball Pinball

Secret - Extra Balls
Instructions - Type 1max at the start of a new ball to get extra balls.

Secret - Gravity Well
Instructions - Type gmax at the start of a new game to activate the Gravity Well.

Secret - Instant Promotion
Instructions - Type rmax at the start of a new game to go up in ranks.

Secret - Skill Shot
Instructions - Launch the ball partially up the chute past the third yellow light bar so it falls back down to get 75,000 points. There are six yellow light bars that are worth a varying amount of points:

First: 15,000 points
Second: 30,000 points
Third: 75,000 points
Fourth: 30,000 points
Fifth: 15,000 points
Sixth: 7,500 points

Secret - Test Mode
Instructions - Type hidden test at the start of a new ball to activate Test Mode. No notification will be given that this is activated but you can now left-click the mouse button and drag the ball around. While in test mode press the following keys for more secrets:

H - Get a 1,000,000,000 High Score
M - Shows the amount of system memory
R - Increases your rank in game
Y - Shows the Frames/sec rate

Secret - Unlimited Balls
Instructions - Type bmax at the start of a new ball. No notification will be given that this is activated but when a ball is lost a new ball will appear from the yellow wormhole indefinitely. Once this is activated you will be unable to activate other secrets without restarting the game.


Solitaire Solitaire

Secret - Instant Win
Instructions - Press Alt + Shift + 2 during game play to instantly win.

Secret - Draw single cards in a Draw Three game
Instructions - Hold down CTRL + ALT + SHIFT while drawing a new card. Instead of drawing three cards you will only draw one.


OS Secrets

Add/Remove Add/Remove

Secret - Hidden Uninstall Options
Instructions - Warning: Proceed at your own risk! Browse to C:\Windows\inf\ and make a backup copy of sysoc.inf. Then open the original file C:\Windows\inf\sysoc.inf in notepad. Go to "Edit" and select "Replace". In "Find what:" type ,hide and in "Replace with:" type , then select "Replace All", save and close the file. Go to the "Control Panel", "Add/Remove", select "Add/Remove Windows Components". You will now see many more Windows components to uninstall. Do not remove anything with no label or that you do not recognize or fully understand what it does. Doing so can break certain functionality in Windows.


Control Panel Control Panel

Secret - Hidden Control Panel Extensions
Instructions - Download and install TweakUI, launch, go to "Control Panel" and check any item not selected, then "Apply" and "OK". You will now see the hidden control panel extensions.


Device Manager Device Manager

Secret - Hidden Devices
Instructions - Go to the "Control Panel", "System" icon, "Hardware" tab and select "Device Manager". Select "View" and Show hidden devices.

Secret - Phantom Devices
Instructions - Go to "Start", "Programs", "Accessories" and select "Command Prompt". At the command prompt, type "set devmgr_show_nonpresent_devices=1" and press Enter. At the command prompt, type "start devmgmt.msc" and press Enter. Select "View" and Show hidden devices. You can see devices that are not connected to the computer. -

Notes - When you close the command prompt window, Windows clears the "devmgr_show_nonpresent_devices=1" variable that you set and prevents phantom devices from being displayed when you select "Show hidden devices".


MIDI Files MIDI Files

Secret - Hidden MIDI Files
Instructions - Browse to C:\Windows\Media and you will find 3 hidden MIDI files:

flourish.mid
onestop.mid
town.mid


Notes - "MIDI" stands for "Musical Instrument Digital Interface" - A compression format for encoding music.


Music Music

Secret - Music from the Installer
Instructions - Browse to C:\Windows\system32\oobe\images\title.wma and play.

Notes - "OOBE" stands for "Out-of-Box Experience".


Shutdown Shutdown

Secret - Display Hibernate Option on the Shut Down dialog
Instructions - Go to "Start", "Turn Off Computer..." and press either Shift key to change the "Stand By" button to "Hibernate".


Support Tools Support Tools

Secret - Over 100 Windows XP Support Utilities are on the install CD

Instructions for Pre-SP2 users - If you do not have SP2 installed, put the original Windows XP CD in the CD-ROM Drive, run the D:\Support\Tools\setup.exe file.

Instructions for SP2 users - If you have SP2 installed, Download the Windows XP Service Pack 2 Support Tools and install.


End

Friday, June 27, 2008

Recently Updated Viruses That can be treated with Mcafee Enterprise Edition 8.5i with respective DAT versions

Virus Name Date Updated Virus Type Virus
Sub-Type
DAT File
Included
Risk for
Homes
Risk for
Businesses
W32/Nuwar@MM!F684DC6A 06/27/2008 Virus - 5326 Low Low

W32/Nuwar@MM!BC9A6D0A 06/27/2008 Virus - 5326 Low Low

W32/Nuwar@MM!8A7BB98B 06/27/2008 Virus - 5326 Low Low

W32/Nuwar@MM!8A344965 06/27/2008 Virus - 5326 Low Low

W32/Nuwar@MM!97974296 06/27/2008 Virus - 5326 Low Low

W32/Nuwar@MM!57D1F872 06/27/2008 Virus - 5326 Low Low

W32/Nuwar@MM!B2B68915 06/27/2008 Virus - 5326 Low Low

W32/Nuwar@MM!99D153CF 06/27/2008 Virus - 5326 Low Low

W32/Nuwar@MM!B231A2F8 06/27/2008 Virus - 5326 Low Low

W32/Nuwar@MM!8D9D71ED 06/27/2008 Virus - 5326 Low Low

W32/Nuwar@MM!90CA5FD2 06/27/2008 Virus - 5326 Low Low

JS/Generic AdClicker.w 06/27/2008 Trojan Script 5322 Low Low

W32/Nuwar@MM!2566D669 06/27/2008 Virus - 5326 Low Low

W32/Nuwar@MM!F59BBCF9 06/27/2008 Virus - 5326 Low Low

W32/Kantak.worm 06/26/2008 Virus Worm 5327 Low Low

RootKit-VAnti 06/26/2008 Trojan Malware Tool 4670 Low Low

JS/Tenia.d 06/26/2008 Trojan Script 5325 Low Low

VAnti!rootkit 06/26/2008 Trojan
5001 Low Low

W32/Nuwar@MM!EE88EDF3 06/26/2008 Virus - 5326 Low Low

W32/Nuwar@MM!AF594B60 06/26/2008 Virus - 5326 Low Low

W32/Nuwar@MM!C16D1D48 06/26/2008 Virus - 5326 Low Low

W32/Nuwar@MM!D853FA0C 06/26/2008 Virus - 5326 Low Low

W32/Nuwar@MM!86CE5A16 06/26/2008 Virus - 5326 Low Low

W32/Nuwar@MM!C43DFD46 06/26/2008 Virus - 5326 Low Low

W32/Nuwar@MM!67BF895D 06/26/2008 Virus - 5326 Low Low

W32/Nuwar@MM!2AA513D5 06/26/2008 Virus - 5326 Low Low

W32/Nuwar@MM!0389D9A5 06/26/2008 Virus - 5326 Low Low

W32/Nuwar@MM!0C572880 06/26/2008 Virus - 5326 Low Low

W32/Nuwar@MM!DCB18015 06/26/2008 Virus - 5326 Low Low

W32/Nuwar@MM!006E9D9A 06/26/2008 Virus - 5326 Low Low