By David A. Karp
Book Price: $9.95 USD
£6.95 GBP
PDF Price: $7.99
Cover | Table of Contents
Constant width
notepad
filename, where filename is
the full path and name of the document you wish to open.
Constant width
notepad
filename, where filename is
the full path and name of the document you wish to open.
|
Action
|
Key(s)
|
|---|---|
|
AutoPlay, disable temporarily
|
Shift (while inserting CD)
|
|
Checkbox, toggle on or off
|
Spacebar
|
|
Clipboard, copy
|
Ctrl-C
|
|
Clipboard, copy current window as a bitmap
|
Alt-PrintScreen
|
|
Clipboard, copy entire screen as a bitmap
|
PrintScreen
|
|
Clipboard, cut
|
Ctrl-X
|
|
Clipboard, paste
|
Ctrl-V
|
|
Close current document
|
Ctrl-F4
|
|
Close current window
|
Alt-F4
|
|
Close dialog box, message window, or menu
|
Esc
|
|
Command button, click
|
Spacebar
|
|
Context menu, open
|
Shift-F10, or context menu key on some keyboards
|
|
Controls, cycle focus on a dialog box
|
Tab (hold Shift to go in reverse)
|
|
Key
|
Action
|
|---|---|
|
F1
|
Start Help (supported in most applications)
|
|
F2
|
Rename selected icon or file in Windows Explorer or on the Desktop
|
|
F3
|
Open a Search window (in Windows Explorer or on the Desktop only)
|
|
F4
|
Open a drop-down list (supported in many dialog boxes)—for
example, press F4 in a File Open dialog to drop down the Look In list
|
|
F5
|
Refresh the view in Windows Explorer, on the Desktop, in the Registry
Editor, and in some other applications
|
|
F6
|
Move focus between panes in Windows Explorer
|
|
F10
|
Send focus to the current application's menu
|
|
Arrow keys
|
Basic navigation: move through menus, reposition the text cursor
(insertion point), change the file selection, and so on
|
|
Backspace
|
Move up one level in folder hierarchy (Windows Explorer only)
|
|
Delete
|
|
Setting
|
Location
|
|---|---|
|
Accessibility, additional settings for web pages
|
Control Panel → Internet Options →
General tab → Accessibility
|
|
. . . enable/disable warnings & notifications
|
Control Panel → Accessibility Options
→ General tab
|
|
. . . move Magnifier with focus change in web pages
|
Control Panel → Internet Options →
Advanced tab → Accessibility → Move
system caret with focus/selection changes
|
|
Address bar, Go button
|
See Go button
|
|
Setting
|
Location
|
|---|---|
|
Accessibility, additional settings for web pages
|
Control Panel → Internet Options →
General tab → Accessibility
|
|
. . . enable/disable warnings & notifications
|
Control Panel → Accessibility Options
→ General tab
|
|
. . . move Magnifier with focus change in web pages
|
Control Panel → Internet Options →
Advanced tab → Accessibility → Move
system caret with focus/selection changes
|
|
Address bar, Go button
|
See Go button
|
|
. . . history settings
|
Control Panel → Internet Options →
General tab → History section
|
|
. . . search settings
|
Control Panel → Internet Options →
Advanced tab → Search from the Address bar
|
|
. . . show in Explorer
|
Explorer → View → Toolbars
→ Address Bar
|
|
. . . show on taskbar
|
Right-click on empty area of taskbar → Toolbars
→ Address
|
|
. . . show the full path of current folder
|
Control Panel → Folder Options →
View tab → Display the full path in the address bar
|
Microsoft key under
SOFTWARE, which is under
HKEY_LOCAL_MACHINE, the Registry path is
HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-
00AA002F954E}\ShellFolder\
Attributes value to 70 01 00
20 for Delete and Rename, or 50
01
00
20 for
Rename only (the default is 40 01 00 20). Then, right-click the
Recycle Bin and select Rename or Delete.
HKEY_CURRENT_USER\Software\Microsoft\Windows\ CurrentVersion\Policies\Explorer
NoDesktop and set it
to 01
00
00
00 to hide all Desktop icons. Delete the
NoDesktop value to restore the Desktop icons.
{curly braces}. Class IDs are
stored in the Registry under
HKEY_CLASSES_ROOT\CLSID. Locate the key named for
a Class ID under this branch to change any settings or behavior of
the corresponding object. Use the Registry Editor's search feature to
find the Class ID for an object not listed here by searching for the
caption of the object.
|
Object
|
Class ID
|
|---|---|
|
Administrative Tools
|
{D20EA4E1-3957-11D2-A40B-0C5020524153}
|
|
Briefcase
|
{85BBD920-42A0-1069-A2E4-08002B30309D}
|
|
Control Panel
|
{21EC2020-3AEA-1069-A2DD-08002B30309D}
|
|
Desktop
|
{00021400-0000-0000-C000-000000000046}
|
|
Favorites
|
{1A9BA3A0-143A-11CF-8350-444553540000}
|
|
Fonts
|
{BD84B380-8CA2-1069-AB1D-08000948F534}
|
|
Internet Explorer
|
{FBF23B42-E3F0-101B-8488-00AA003E56F8}
|
|
Internet Explorer ActiveX Cache
|
{88C6C381-2E85-11d0-94DE-444553540000}
|
|
Internet Explorer Cache
|
{7BD29E00-76C1-11CF-9DD0-00A0C9034933}
|
cmd.exe.
del command (discussed later in
this chapter) is used to delete one or more files; it requires that
the name of the file be specified after the command, like this:
del /p myfile.txt
/p is an extra option used to modify the
behavior of del. Now, the fact that this usage is
not limited to internal commands (like del) is
what makes the command line such an important part of Windows
XP's design. For example:
notepad c:\folder\myfile.txt
cd command, later in this
chapter) or in a folder specified in the path (also discussed later
in this chapter).
|
Symbol
|
Description
|
|---|---|
*
|
Multiple-character wildcard, used to specify a group of files.
|
?
|
Single-character wildcard, used to specify multiple files with more
precision than *.
|
.
|
One dot represents the current directory; see
"cd."
|
..
|
Two dots represent the parent directory; see
"cd."
|
\
|
Separates directory names, drive letters, and filenames. By itself, \
represents the root directory of the current drive.
|
>
|
Redirect a command's text output into a file instead
of the console window; existing files will be overwritten.
|
>>
|
Redirect a command's text output into a file instead
of the console window, appending existing files.
|
<
|
Directs the contents of a text file to a command's
input; use in place of keyboard entry to automate interactive
command-line applications.
|
cd displays the full pathname
of the current directory. Given the pathname of an existing
directory, it changes the current directory to the specified
directory. The syntax is:
cd [directory]
cd
d:\nightmare),
the current working directory on that drive is
changed, but the current working drive is not;
that is, you'll still be in
c:\dream. To change the current drive, simply
type the letter followed by a colon, by itself, at the prompt. When
you subsequently switch to the D: drive by
typing d: at the prompt, you'll
be dumped right into the nightmare directory.
cd \chefs\Akira
cd ..
cd \
cls at the prompt to clear the screen and the
screen buffer, useful for privacy concerns or simply to reduce
clutter. The difference between using R to start the Windows Recovery Console.
\i386\winnt32.exe
/cmdcons, where d: is the drive
letter of your CD drive.
Which Windows installation would you like to logon to (enter to abort)?
1), and log in using your
Administrator password. If you've forgotten your
Administrator password (set when Windows XP was installed), WRC
won't let you in. You'll have three
tries before WRC reboots your system. If this is the case, and
Windows won't start, you may have to reinstall
Windows XP.
netstat
/a
/o. The Active Connections
utility displays its information in these five columns:
|
Column
|
Description
|
|---|---|
|
Proto
|
This will be either TCP or UDP, representing the protocol being used.
|
|
Local Address
|
This column has two components: the computer name and either a port number or the name of a service.
|
|
Foreign Address
|
For active connections, you'll see the name or IP address of the remote machine, followed by the port number. For inactive connections (showing only the open ports), you'll typically see only *:*.
|
|
State
|
This shows the state of the connection (TCP ports only). For server processes, you'll usually see LISTENING here, signifying that the process has opened the port and is waiting for an incoming connection. For connections originating from your computer, such as a web browser downloading a page or an active Telnet session, you'll see ESTABLISHED here.
|
|
PID
|
This is the Process Identifier of the application or service that is responsible for opening the port; see the rest of this section for help with matching up the PID with an application or process.
|
Return to Windows XP Pocket Reference