Using Remote Desktop


You must first enable the Remote Desktop feature on your office computer so that you can control it remotely from another computer. You must be logged on as an administrator or a member of the Administrators group to enable Remote Desktop on your Windows XP Professional-based computer.

To setup your office computer to use Remote Desktop:

  • Open the System folder in Control Panel. Click Start, point to Settings, click Control Panel, and then double-click the System icon.

  • On the Remote tab, select the Allow users to connect remotely to this computer check box, as shown below.

  • Ensure that you have the proper permissions to connect to your computer remotely, and click OK.

  • Leave your computer running and connected to the company network with Internet access. Lock your computer, and leave your office.

    The Remote Desktop Connection client software allows a computer running Windows 95, Windows 98, Windows 98 Second Edition, Windows Me, Windows NT 4.0 or Windows 2000 to control your Windows XP Professional computer remotely. The client software is available on the installation CD for Windows XP Professional and Windows XP Home Edition. The client software is installed by default on computers running Windows XP Professional and Windows XP Home Edition.

To install Remote Desktop Connection software on a client computer

  • Insert the Windows XP compact disc into your CD-ROM drive.

  • When the Welcome page appears, click Perform additional tasks, and then click Setup Remote Desktop Connection as shown below.

  • When the installation wizard starts, follow the directions that appear on your screen.

    Once you have enabled your Windows XP Professional computer to allow remote connections, and installed client software on a Windows-based client computer, you are ready to start a Remote Desktop session.


To create a new Remote Desktop Connection

  • Open Remote Desktop Connection. (Click Start, point to Programs or All Programs, point to Accessories, point to Communications, and then click Remote Desktop Connection.)

  • In Computer, type the computer name for your computer running Windows XP Professional that has Remote Desktop enabled and for which you have Remote Desktop permissions

  • Click Connect.

  • The Log On to Windows dialog box appears.

  • In the Log On to Windows dialog box, type your user name, password, and domain (if required), and then click OK. The Remote Desktop window will open and you will see the desktop settings, files, and programs that are on your office computer. Your office computer will remain locked.

  • Nobody will be able to work at your office computer without a password, nor will anyone see the work you are doing on your office computer remotely. Note: To change your connection settings, (such as screen size, automatic logon information, and performance options), click Options before you connect.

To open a saved connection

  • In Windows Explorer, open the My DocumentsRemote Desktops folder.

  • Click the .Rdp file for the connection you want to open. Note: A Remote Desktop file (.rdp) file contains all of the information for a connection to a remote computer, including the Options settings that were configured when the file was saved. You can customize any number of .rdp files, including files for connecting to the same computer with different settings. For example, you can save a file that connects to MyComputer in full screen mode and another file that connects to the same computer in 800×600 screen size. By default, .rdp files are saved in the My DocumentsRemote Desktops folder. To edit an .rdp file and change the connections settings it contains, right-click the file and then click Edit.


To log off and end the session

  • In the Remote Desktop Connection window, click Start, and then click Shut Down.

  • The Shut Down Windows dialog box appears.

  • In the drop-down menu, select Log Off , and then click OK.

User Accounts and Fast User Switching


Introduction


Windows XP represents Microsoft's big push to get the largely Windows 9X-based user community to an operating system family based on the Windows NT-kernel. In Windows XP, new client services not only blend the ease of use of familiar Windows 9X profiles with the robustness of Windows NT (and Windows 2000) user management, but significantly improve on the combination. While the majority of these advancements will be appreciated most by home users, enterprise customers that share assets-for instance, with shift workers and telecommuters or with users who access e-mail from multiple machines while roaming-will also see improvements.

Many computers are shared between multiple users, particularly in the home environment where studies have shown that 80% of computers are used routinely by multiple people. In previous versions of Windows NT, user account management-which could be strictly enforced across the enterprise by administrators-was a somewhat tricky process that was beyond the abilities of most non-computing professionals. Simple-to-use Windows 9X profiles, however, were not enabled by default and were largely ignored: The cost of actually using the profiles, which required that users log off before allowing other users to access the system, meant that the vast majority of machines made do with a single shared profile, with all of the corresponding security, configuration, and data-loss risks.
In Windows XP, user profiles are always enabled and even non-enterprise users are encouraged to create accounts during the Setup process. These accounts are based on Windows NT profiles and allow Windows XP to provide strong isolation and protection of users' data and settings. If multiple user accounts are configured on a machine, then users are presented with a Welcome screen that appears featuring separate-and customizable-graphics for each user. Users of Windows XP machines that are members of an NT-style domain do not see this screen, since presenting a list of machine users could be considered a security violation. A new control panel applet replaces the familiar Windows NT User Manager and Windows 2000 Computers and Users snap-in, providing a simple interface that allows almost anyone to set up a new user and give them appropriate rights and privileges.

Fast User Switching

Windows XP introduces fast user switching. Undoubtedly, fast user switching is the single most important feature that makes sharing Windows-based computers workable. Using fast user switching, it is not necessary for a user to log off the computer before allowing a second user to access their own account. Instead, the first user's account is "disconnected," which leaves all the programs running; the second user can then log on, and then the users can switch quickly between logged-on accounts. Many accounts can be open simultaneously on one computer, though only one account at a time will be able to interact with the keyboard, screen, and input devices.

In the home environment, for instance, fast user switching allows a parent working on a personal finance program to yield the computer to a child to work on homework by browsing the Internet, without requiring the parent to shut down and restart the finance program and without exposing the child to the parent's financial information. In the business environment, fast user switching can allow multiple users in a common environment, such as a research lab, to share a single machine.
Fast user switching is just one of two mechanisms that allow multiple users to work with a single system. Remote desktop, another built-in Windows XP feature, allows users to interact with machines remotely across a network and to access data and applications on those remote machines. While fast user switching is aimed principally at the home market, remote desktop enables business users to access their corporate desktops from remote computers-and vice versa, enabling them to operate home machines while at work.

Programming Issues

Both fast user switching and remote desktop use Windows XP's updated terminal services technology. Improvements have been made to both the server and client components of terminal services. Windows XP now features support for both local and remote sound, 24-bit video, performance optimizations, and the mapping of the local drives and printers.
Fortunately, most applications don't have to be rewritten to work with terminal services and, thus, fast user switching and remote desktop. Rather, they need to respect basic user settings management guidelines. These guidelines are not new: Most are covered in the Windows 2000 Certified for Windows Application Specification, which has been available on Microsoft's Web site for some time. The Data and Settings Management section of this specification includes several topics that are particularly important when supporting multiple users on a single machine:

· Default to the My Documents folder for storage of user-created data;
· Classify and store application data correctly;
· Degrade gracefully on "Access denied" messages.
Mostly, this means isolating data and settings for each user. And an important step in this direction is to ensure that you are using the HKEY_CURRENT_USER registry key rather than HKEY_LOCAL_MACHINE for storing settings in the system registry. You should also be careful to install programs correctly and to classify and store data correctly. You can use the ShGetFolderPath API to obtain the path of a specific named folder-such as "My Documents" or even "Program Files"-as well as the appropriate directories for storing Roaming, Non-Roaming, and Shared application data. The following are some general guidelines for locating data:
· Profiles\username\Application Data\appname
- Roaming, auto-created user files (e-mail DB, custom dictionaries…)
· Profiles\username\Application Data\Local Settings\appname
- Discardable/local-only user data files (e.g., offline stores)
· Profiles\All Users\Application Data\appname
- Last-resort for local-only, common dynamic data (e.g., log files)

A notable exception to the isolation rule is that you should support "All Users" installations: It is extremely frustrating for users to install the same application repeatedly for multiple user accounts.
By carefully locating user data, user settings, and computer settings, applications can make it easier for users to backup individual documents and settings, share a computer among multiple users, and even to work with the same documents and settings on multiple computers. By handling data and settings properly, you can enable your application to run in both the home (fast user switching) and business enterprise (remote desktop) marketplaces.

Controlling Running Instances

It is common for applications to control their startup so that only a single instance may be running on a machine at any given time. There are many valid reasons for doing this: licensing restrictions, required dedicated access to specific hardware resources, and perhaps even enforcing data integrity. However, with multiple users on the same machine, it might be desirable to allow multiple users-each with their own instance-to work with (for example) a personal finance program as long as their data remains isolated. At this point, the commonly used mechanisms for controlling running instances may exhibit some unwanted side effects when operating under Windows XP's fast user switching or remote desktop.
The most common method for discovering whether another instance is running is to use the FindWindow or FindWindowEx APIs to search for a window that, if your application is running, you know to be open. Somewhat unexpectedly, both of these APIs work in a single user session only. So using this method won't prevent another instance of your application from being started by another user.
A more robust method for controlling multiple instances is to use one of the NT kernel objects: events, semaphores, mutexes, waitable timers, file-mapping objects, and job objects can all be used with Global\ or Local\ prefixes on Windows 2000 and Windows XP. By default, each user (terminal service) session will have its own namespace for kernel objects. By creating a Global\ object-for instance, a mutex or semaphore-when your application is started (and closing it upon exit), your application can detect running instances across multiple user (terminal service) sessions. Of course, you can't just switch to the previous instance: It may be in another session! What typically happens in that case is the user clicks on an icon and then nothing appears to happen (since the app thinks it's located another running instance). At a minimum, you should warn the user that there's another instance running.

What about sound? Well, the terminal services in Windows XP have been designed to configure sound to both the interactive and disconnected sessions. While it may be difficult to imagine at first, there may be valid scenarios where it would desirable to output multiple audio streams. For instance, what if you used a sound card in one user session to output audio to the home stereo system and at the same time the active user wanted to hold an interactive meeting with sound? In this case, you certainly would not want to blend the two streams. And neither would you want to suspend the audio stream in the disconnected session. Getting this right can be particularly important when working with shared media devices like DVD players.

One general guideline is to do "as little as possible, as much as necessary" when you are the disconnected session. To do this, it can be helpful to know when a session switch occurs. While most applications won't need to be notified, if your application accesses a shared resource-such as a serial port or other hardware device-you may want to know when the machine switches between user sessions. To be notified when a session switch occurs, you must register to receive the WM_WTSSESSION_CHANGE message by calling the WTSRegisterConsoleNotification API. Using this function, you can choose to be notified for a single session or for all sessions, and when either local or remote sessions connect or disconnect. When you no longer require notification, you should unregister using the WTSUnRegisterConsoleNotification API.

Summary

If you isolate access to your application's data and settings and take care not to tie up shared resources, your application should work well with Windows XP's terminal services. By developing your application to assume it's not the only thing running on the machine, your users are likely to have a much better experience when they start using it with Windows XP's new fast user switching and remote desktop features

Slow Shutdown



Some people have noticed that they are experiencing a really slow shutdown after installing Windows XP Home or Professional. Although this can be caused a number of ways, the most clear cut one so far is happening on systems with an NVidia card installed with the latest set of drivers. A service called NVIDIA Driver Helper Service is loading up on start up and for whatever reason doesn't shut itself down properly. The service isn't needed and can also increase the amount of memory available to your system. Here is how to disable it.

1: Go into your Control Panel
2: Select Administrative Tools and then click on Services
3: Right click on the file "NVIDIA Driver Helper Service" and then select STOP.
4: To stop this loading up every time you boot up your PC Right click it again and select properties - then where the option "Startup Type" is shown - make sure it is set at Manual like we have shown in the image below.

Changing The Internet Time Update Synchronisation


To change the interval that Windows updates the time using the internet time servers via regedit, navigate to:
1. HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services \W32Time\TimeProviders\NtpClient
2. Select "SpecialPollInterval"
3. Change decimal value from 604800 to a different value in seconds. i.e.: 172800 (2 Days) or 86400 (1 Day) and so on.

We don't recommend changing this unless you are on a broadband connection

Boot Defragment



A very important new feature in Microsoft Windows XP is the ability to do a boot defragment. This basically means that all boot files are placed next to each other on the disk drive to allow for faster booting. By default this option is enabled but some upgrade users have reported that it isn't on their setup.

1. Start Regedit.
2. Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Dfrg\BootOptimizeFunction
3. Select Enable from the list on the right.
4. Right on it and select Modify.
5. Change the value to Y to enable and N to disable.
6. Reboot your computer

For a Safer, faster XP Close Unwanted Services


To disable unneeded startup services for a safer, faster XP, use the "Services" Admin Tool (Control Panel > Administrative Tools > Services). If you are a single user of a non-networked machine, you can disable the following items, with no ill effect.

Alerter
Clipbook
Computer Browser
Fast User Switching
Human Interface Access Devices
Indexing Service (Slows the hard drive down)
Messenger
Net Logon (unnecessary unless networked on a Domain)
Netmeeting Remote Desktop Sharing (disabled for extra security)
Remote Desktop Help Session Manager (disabled for extra security)
Remote Procedure Call Locator
Remote Registry (disabled for extra security)
Routing & Remote Access (disabled for extra security)
Server
SSDP Discovery Service (this is for the utterly pointless "Universal P'n'P", & leaves TCP Port 5000 wide open)
TCP/IP NetBIOS Helper
Telnet (disabled for extra security)
Universal Plug and Play Device Host
Upload Manager
Windows Time
Wireless Zero Configuration (for wireless networks)
Workstation

Getting an Older Program to Run on Windows XP



1.Right–click the executable or the program shortcut to the executable, and then click Properties.

2.Select the Run this program in compatibility mode check box.

3.From the list, select an operating system that the program runs in comfortably.

If necessary, also change the display settings and/or resolution, or disable the Windows XP visual themes.
Run the program again when you’re finished changing the settings. Adjust the compatibility settings again if the program is still not running smoothly: a program that’s unhappy on Windows 2000 may flourish on Windows 98

Adding Programs To Stay On The Start Menu


Right click on any .exe file in Explorer, My Computer, Desktop and select 'Pin to Start Menu', the program is then displayed on the start menu, above the separator line. To remove it, click the file on the start menu and select 'Unpin from Start Menu'. Below you can check the before and after shots.

20 things you didn't know about Windows XP-intresting


You've read the reviews and digested the key feature enhancements and operational changes. Now it's time to delve a bit deeper and uncover some of Windows XP's secrets.

1. It boasts how long it can stay up. Whereas previous versions of Windows were coy about how long they went between boots, XP is positively proud of its stamina. Go to the Command Prompt in the Accessories menu from the All Programs start button option, and then type 'systeminfo'. The computer will produce a lot of useful info, including the uptime. If you want to keep these, type 'systeminfo > info.txt'. This creates a file called info.txt you can look at later with Notepad. (Professional Edition only).

2. You can delete files immediately, without having them move to the Recycle Bin first. Go to the Start menu, select Run... and type 'gpedit.msc'; then select User Configuration, Administrative Templates, Windows Components, Windows Explorer and find the Do not move deleted files to the Recycle Bin setting. Set it. Poking around in gpedit will reveal a great many interface and system options, but take care -- some may stop your computer behaving as you wish. (Professional Edition only).

3. You can lock your XP workstation with two clicks of the mouse. Create a new shortcut on your desktop using a right mouse click, and enter 'rundll32.exe user32.dll,LockWorkStation' in the location field. Give the shortcut a name you like. That's it -- just double click on it and your computer will be locked. And if that's not easy enough, Windows key + L will do the same.

4. XP hides some system software you might want to remove, such as Windows Messenger, but you can tickle it and make it disgorge everything. Using Notepad or Edit, edit the text file /windows/inf/sysoc.inf, search for the word 'hide' and remove it. You can then go to the Add or Remove Programs in the Control Panel, select Add/Remove Windows Components and there will be your prey, exposed and vulnerable.

5. For those skilled in the art of DOS batch files, XP has a number of interesting new commands. These include 'eventcreate' and 'eventtriggers' for creating and watching system events, 'typeperf' for monitoring performance of various subsystems, and 'schtasks' for handling scheduled tasks. As usual, typing the command name followed by /? will give a list of options -- they're all far too baroque to go into here.

6. XP has IP version 6 support -- the next generation of IP. Unfortunately this is more than your ISP has, so you can only experiment with this on your LAN. Type 'ipv6 install' into Run... (it's OK, it won't ruin your existing network setup) and then 'ipv6 /?' at the command line to find out more. If you don't know what IPv6 is, don't worry and don't bother.

7. You can at last get rid of tasks on the computer from the command line by using 'taskkill /pid' and the task number, or just 'tskill' and the process number. Find that out by typing 'tasklist', which will also tell you a lot about what's going on in your system.

8. XP will treat Zip files like folders, which is nice if you've got a fast machine. On slower machines, you can make XP leave zip files well alone by typing 'regsvr32 /u zipfldr.dll' at the command line. If you change your mind later, you can put things back as they were by typing 'regsvr32 zipfldr.dll'.

9. XP has ClearType -- Microsoft's anti-aliasing font display technology -- but doesn't have it enabled by default. It's well worth trying, especially if you were there for DOS and all those years of staring at a screen have given you the eyes of an astigmatic bat. To enable ClearType, right click on the desktop, select Properties, Appearance, Effects, select ClearType from the second drop-down menu and enable the selection. Expect best results on laptop displays. If you want to use ClearType on the Welcome login screen as well, set the registry entry HKEY_USERS/.DEFAULT/Control Panel/Desktop/FontSmoothingType to 2.

10. You can use Remote Assistance to help a friend who's using network address translation (NAT) on a home network, but not automatically. Get your pal to email you a Remote Assistance invitation and edit the file. Under the RCTICKET attribute will be a NAT IP address, like 192.168.1.10. Replace this with your chum's real IP address -- they can find this out by going to www.whatismyip.com -- and get them to make sure that they've got port 3389 open on their firewall and forwarded to the errant computer.

11. You can run a program as a different user without logging out and back in again. Right click the icon, select Run As... and enter the user name and password you want to use. This only applies for that run. The trick is particularly useful if you need to have administrative permissions to install a program, which many require. Note that you can have some fun by running programs multiple times on the same system as different users, but this can have unforeseen effects.

12. Windows XP can be very insistent about you checking for auto updates, registering a Passport, using Windows Messenger and so on. After a while, the nagging goes away, but if you feel you might slip the bonds of sanity before that point, run Regedit, go to HKEY_CURRENT_USER/Software/Microsoft/Windows/Current Version/Explorer/Advanced and create a DWORD value called EnableBalloonTips with a value of 0.

13. You can start up without needing to enter a user name or password. Select Run... from the start menu and type 'control userpasswords2', which will open the user accounts application. On the Users tab, clear the box for Users Must Enter A User Name And Password To Use This Computer, and click on OK. An Automatically Log On dialog box will appear; enter the user name and password for the account you want to use.

14. Internet Explorer 6 will automatically delete temporary files, but only if you tell it to. Start the browser, select Tools / Internet Options... and Advanced, go down to the Security area and check the box to Empty Temporary Internet Files folder when browser is closed.

15. XP comes with a free Network Activity Light, just in case you can't see the LEDs twinkle on your network card. Right click on My Network Places on the desktop, then select Properties. Right click on the description for your LAN or dial-up connection, select Properties, then check the Show icon in notification area when connected box. You'll now see a tiny network icon on the right of your task bar that glimmers nicely during network traffic.

16. The Start Menu can be leisurely when it decides to appear, but you can speed things along by changing the registry entry HKEY_CURRENT_USER/Control Panel/Desktop/MenuShowDelay from the default 400 to something a little snappier. Like 0.

17. You can rename loads of files at once in Windows Explorer. Highlight a set of files in a window, then right click on one and rename it. All the other files will be renamed to that name, with individual numbers in brackets to distinguish them. Also, in a folder you can arrange icons in alphabetised groups by View, Arrange Icon By... Show In Groups.

18. Windows Media Player will display the cover art for albums as it plays the tracks -- if it found the picture on the Internet when you copied the tracks from the CD. If it didn't, or if you have lots of pre-WMP music files, you can put your own copy of the cover art in the same directory as the tracks. Just call it folder.jpg and Windows Media Player will pick it up and display it.

19. Windows key + Break brings up the System Properties dialogue box; Windows key + D brings up the desktop; Windows key + Tab moves through the taskbar buttons.

20. The next release of Windows XP, codenamed Longhorn, is due out late next year or early 2003 and won't be much to write home about. The next big release is codenamed Blackcomb and will be out in 2003/2004.

Create a Password Reset Disk


If you’re running Windows XP Professional as a local user in a workgroup environment, you can create a password reset disk to log onto your computer when you forget your password. To create the disk:

1.Click Start, click Control Panel, and then click User Accounts.
2.Click your account name.
3.Under Related Tasks, click Prevent a forgotten password.
4.Follow the directions in the Forgotten Password Wizard to create a password reset disk.
5.Store the disk in a secure location, because anyone using it can access your local user account.

Disable CD Autorun-virus will not affect from cd


1) Click Start, Run and enter GPEDIT.MSC

2) Go to Computer Configuration, Administrative Templates, System.

3) Locate the entry for Turn autoplay off and modify it as you desire.

Copy Files and Folders to CD


To copy files and folders to a CD

•Insert a blank, writable CD into the CD recorder.

•Open My Computer.

•Click the files or folders you want to copy to the CD. To select more than one file, hold down the CTRL key while you click the files you want. Then, under File and Folder Tasks, click Copy this file, Copy this folder, or Copy the selected items.

•If the files are located in My Pictures, under Picture Tasks, click Copy to CD or Copy all items to CD, and then skip to step 5.

•In the Copy Items dialog box, click the CD recording drive, and then click Copy.

•In My Computer, double–click the CD recording drive. Windows displays a temporary area where the files are held before they are copied to the CD. Verify that the files and folders that you intend to copy to the CD appear under Files Ready to be Written to the CD.

•Under CD Writing Tasks, click Write these files to CD. Windows displays the CD Writing Wizard. Follow the instructions in the wizard.


Notes:

•Do not copy more files to the CD than it will hold. Standard CDs hold up to 650 megabytes (MB). High–capacity CDs hold up to 850 MB.

•Be sure that you have enough disk space on your hard disk to store the temporary files that are created during the CD writing process. For a standard CD, Windows reserves up to 700 MB of the available free space. For a high–capacity CD, Windows reserves up to 1 gigabyte (GB) of the available free space.

•After you copy files or folders to the CD, it is useful to view the CD to confirm that the files are copied. For more information, click Related Topics.
To stop the CD recorder from automatically ejecting the CD

•Open My Computer.


•Right–click the CD recording drive, and then click Properties.

•On the Recording tab, clear the Automatically eject the CD after writing check box.

Force users to press Ctrl-Alt-Delete to Logon


(XPPro only)

Go to start/run,

and type control userpasswords2

Fix your Slow XP and 98 Network


You can run "wmiprvse.exe" as a process for quick shared network access to Win98/ME machines. Stick it in Startup or make it a service.

"On the PC running XP, log in as you normally would, go to users, manage network passwords.
Here is where the problem lies. In this dialog box remove any win98 passwords or computer-assigned names for the win98 PCs. In my case , I had two computer-assigned win98 pc names in this box (example G4k8e6). I deleted these names (you may have passwords instead). Then go to My Network Places and -- there you go! -- no more delay!

Now, after I did this and went to My Network Places to browse the first Win98 PC, I was presented with a password/logon box that looked like this: logon: G4k8e6/guest (lightly grayed out) and a place to enter a password. I entered the password that I had previously used to share drives on the Win98 PCs long before I installed XP. I have the guest account enabled in XP.

This solves the problem for Win98 & XP machines on a LAN; I can't guarantee it will work for Win2K/ME machines as well, but the whole secret lies in the passwords. If this doesn't solve your slow WinXP>Win98 access problems, then you probably have other things wrong. Don't forget to uncheck 'simple file sharing,' turn off your ICS firewall, enable NetBIOS over TCP/IP and install proper protocols, services & permissions."

How to Convert a FAT Partition to NTFS



To convert a FAT partition to NTFS, perform the following steps.

Click Start, click Programs, and then click Command Prompt.

In Windows XP, click Start, and then click Run.


At the command prompt, type CONVERT [driveletter]: /FS:NTFS.

Convert.exe will attempt to convert the partition to NTFS.


NOTE: Although the chance of corruption or data loss during the conversion from FAT to NTFS is minimal, it is best to perform a full backup of the data on the drive that it is to be converted prior to executing the convert command. It is also recommended to verify the integrity of the backup before proceeding, as well as to run RDISK and update the emergency repair disk (ERD).


Convert.exe will attempt to convert the partition to NTFS.

How do I enable advanced security settings like found in Windows 2000


Open windows explorer then click on Tools->Folder Options

Click on the View Tab.

Scroll to the bottom and deselect (uncheck) the option that reads 'use simple file sharing'

This will allow you to see the security tab when viewing the properties of a file/folder.

Hide 'User Accounts' from users


Go to Start/Run, and type:

GPEDIT.MSC

Open the path

User Config > Admin Templates > Control Panel

doubleclick "Hide specified Control Panel applets"

put a dot in 'enabled', then click 'Show"

click Add button,

type "nusrmgt.cpl" into the add box

AVI File Fix in Windows XP



If you have any AVI files that you saved in Windows 9x, which have interference when opened in Windows XP, there is an easy fix to get rid of the interference: Open Windows Movie Maker. Click View and then click Options. Click in the box to remove the check mark beside Automatically create clips. Now, import the movie file that has interference and drag it onto the timeline. Then save the movie, and during the re-rendering, the interference will be removed.

Mustek 600 CP scanner or other software unable to install on XP


If you have a piece of software that refuses to install because it says that you are not running Windows 2000 (such as the Win2K drivers for a Mustek scanner!!) you can simply edit

HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows NT/CurrentVersion/ProductName

to say Microsoft Windows 2000 instead of XP and it will install. You may also have to edit the version number or build number, depending on how hard the program tries to verify that you are installing on the correct OS. I had to do this for my Mustek 600 CP scanner (compatibility mode didn't help!!!) and it worked great, so I now have my scanner working with XP (and a tech at Mustek can now eat his words). BTW, don't forget to restore any changes you make after you get your software installed.

How to remove the Default Picture and Fax Preview Action


Go To Start > Run and type `Regedit` and press `ok`

Navigate to: HKEY_LOCAL_MACHINE/SOFTWARE/Classes/CLSID/{e84fda7c-1d6a-45f6-b725-cb260c236066}/shellex

Deleted the MayChangeDefaultMenu key.

Install/Enable NetBEUI Under WinXP


If for some reason you need to install NetBEUI then follow these instructions.

**Note - You will need the WinXP CD in order to to this!

Support for the NetBIOS Extended User Interface protocols (also called NetBEUI or NBF) in Windows XP has been discontinued. If your configuration requires temporary use of NetBEUI for Windows XP, follow these steps:

To install the NETBEUI protocol:

- Locate the Valueadd/msft/net/netbeui directory on your Windows XP CD.Copy nbf.sys into the %SYSTEMROOT%SYSTEM32DRIVERS directory.

- Copy netnbf.inf into the %SYSTEMROOT%INF directory.

- In Control Panel, click Network and Internet Connections and then click Network Connections.

- Right-click the connection you want to configure, and then click Properties.

- On the General tab, click the INSTALL button to add the NetBEUI protocol.

How to use Windows Update Properly


If you want to save your files to your hard drive, so after a format you dont have to download them all again, here's How:

- Logon to Windows Update

- Choose Windows Update Catalogue (left hand pane)

- Choose Find updates for Microsoft Windows operating systems (right hand pane)

- Choose your version and language then Search

- Choose one the following:

- Critical Updates and Service Packs
- Service Packs and Recommended Downloads
- Multi-Language Features (0)


- Once chosen simply click on what you want to download and then back at the top click Review Download Basket

- You are taken to the next page where at the top you can specify where the downloads are to be saved.

- Click Download now. Each patch will make a directory under the root of the folder you saved them to.
Once finished you need to go to where you saved the file (s) to and then simply install all your patches.

How to Buy a Laptop-computer notebooks

Notebook Buying Guide graphic

The most highly evolved species of computer, the laptop (aka notebook) computer allows you to work without being tethered to an office. Portability and good performance make laptop PCs an essential part of the daily lives of millions of people, from college students to business travelers. Even the least-expensive of today's laptops are well equipped for everyday work.

The Big Picture
There are more laptop choices than ever. We'll identify and discuss the available options--including screen size, weight, battery life, and communications ports. more

The Specs Explained
Do you need a superfast CPU? Or a huge hard drive? We'll guide you through the choices and tell you which features are most critical. more

Laptop Shopping Tips
Looking for a powerful, versatile notebook at a reasonable price? Our advice will help you find the right laptop. more

PC World's Top-Rated Laptops

laptop pcs

Find the right Laptop for you

vaio notebook-SONY VAIO Notebook VGN FZ 35 GN + JXD Digital camera + USB light

SONY VAIO Notebook VGN FZ 35 GN + JXD Digital camera + USB light

About this Product

Brand:
Sony
Now: Rs. 66080
(For Delivery in India)
EMI: Rs. 22027 for 3 months

Intel Centrino Core 2 Duo (2.1 GHZ), 4 MB Cache Memory,2 GB DDR2 RAM, 200 GB HDD , DVD-RW, 15.4 Wide display, WI-FI, Bluetooth, Modem, Card slot, bag, 2.7 kg weight, 2.5 hrs back up, Camera/Microphone,Windows Vista Business, 1 year warranty

About JXD 685, 4M Digital Camera PMP MP3 MP4 Player 2.5" LCD DV-1gb memory:Use the JXD 685 to take pictures & videos by using its movable camera; records TV, VCD/DVD movies and plays the Mpeg 4 movies anywhere by using its superior 2.5" LCD TFT Monitor.

Movable Camera: Takes self portraits easily with its 180 degrees moving camera.

Pictures shooting: to record images by using its superior 4 million pixels camera and 2x zoom.

Video Recording: to record digital video which is comparable to DVD quality (320x240).

Media Player: to play ASF mpeg4, mp3, wma, wav files.

Pictures browser: to slide pictures in JPG, GIF and TIFF formats.

Video Recording: to record TV, VCD, DVD or other AV signals. It is able to record more than 120mins high resolution video by using only built in 1 gb memory, and up to 375mins of video if a 2GB SD card is plugged in.

Voice Recording: to record voice by using the built in microphone.

E-Book browsing: to display txt file

Games playing: to play its built-in funny games

Calendar and Phone Book

Products Specifications

Display
2.5 inch, 480 x 234 pixels, 260K full-color, TFT-LCD

Battery
built-in 1,800mAh rechargeable Li-ion battery

Signal-to-noise ratio 90dB
Dimensions
90*60*17.5mm

Weight  

Earphone Output Power
5mW+5mW

Compression Rate Mp3 8-320kbps; Wma 24-128kbps

Image is just for representation purposes.We shall try to send the same color as shown.In case of non-availability we shall try to send the next best available color.

1 yr manufacturer warranty

laptop data recovery-NOTEBOOK DATA RECOVERY


Notebook Data Recovery services is a fully equipped lab for all your data recovery needs. No matter how you lose you data, we at notebook data recovery services can help you get your precious data back. We use advanced techniques and software developed by our technical staff to recover data form all kind of disk drives, removable media, raids tapes or hand held PDAs with any operating system.

In today's competitive business environment, data is the life line of any business, small or large corporate or individual. If your business or home computer or any other memory storage devices has lost the data, we can help to get your data back.


We use advanced data recovery technologies and techniques to recover inaccessible data from all types of Notebook disk drives, desktop disk drives. Whether you need a solution for logical or physical problem with disk drive, We can help. Notebook Data Recovery Services has experienced and trained staff to work upon your disk drive. Notebook Data Recovery Services, fully understand the situation of a company or a person involved in a data lost scenario. Our prime object is to provide Data Recovery on a competitive price to ease the burden of our clients.
Stop Immediately & shut down your computer, If you detect any problem or hear any clicking grinding scratching noise coming from the disk drive.. You need professional help. Call 1-800-580-4959.

Notebook Data Recovery Services has highly qualified and experienced data recovery Engineers having worked on all brand of hard disk drives, RAID Arrays, Tapes, PDAs, and removable media.

Intel® Core™2 Duo Processors




Maximum everything. Energy-efficient performance. Multimedia power.
Intel® Core™2 Duo


Based on Intel® Core™ microarchitecture, the Intel® Core™2 Duo processor family is designed to provide powerful energy-efficient performance so you can do more at once without slowing down.

Intel® Core™ 2 Duo desktop processors

With Intel Core 2 Duo desktop processor, you'll experience revolutionary performance, unbelievable system responsiveness, and energy-efficiency second to none.

Big, big performance. More energy efficient.¹ Now available in smaller packages. The Intel Core 2 Duo processor-based desktop PC was designed from the ground up for energy efficiency, letting you enjoy higher performing, ultra-quiet, sleek, and low power desktop PC designs.

Multitask with reckless abandon. Do more at the same time, like playing your favorite music, running virus scan in the background, and all while you edit video or pictures. The powerful Intel Core 2 Duo desktop processor provides you with the speed you need to perform any and all tasks imaginable.

Love your PC again. Don’t settle for anything less than the very best. Find your perfect desktop powered by the Intel Core 2 Duo processor and get the best processing technology money can buy. Only from Intel.

* • Up to 6MB L2 cache
* • Up to 1333 MHz front side bus

Intel® Core™ 2 Duo mobile processors

At the dual-core heart of Intel® Centrino®2 processor technology, the Intel® Core™2 Duo processor family features a faster FSB (up to 1066 MHz), higher clock speeds, and enhanced microarchitecture technologies, helping to maximize Intel®Centrino®2 processor technology's dual-core performance and power savings.

* • 6 MB of total L2 cache
* • Up to 1066 MHz front side bus

Intel Core 2 Duo E8400 Dual Core Processor

Core 2 Duo E8400 Dual Core Processor
Intel Core 2 Duo E8400 Dual Core Processor
(3GHz, 6MB, 1333MHz FSB, LGA775 Socket T - MPN: BX80570E8400)
Price Range: $169.99 - $269.66 from 17 Sellers
Description: Based on Intel Core microarchitecture, the Intel Core 2 Duo processor family is designed to provide energy-efficient performance so you can do more at once without slowing down.
Quick Glance
Processor Socket: Intel Socket T (LGA775)
Processor Class: Intel Core 2 Duo
Processor Type: 2
Bus Speed: 1333MHz
Processor Speed: 3000
Processor Speed + Class
Bus Speed: 1333MHz
Processor Speed: 3 GHz
Processor Class: Intel Core 2 Duo
Physical + Memory Specifications
Included Fan Type: ATX
L2 Cache Size: 6 MB
Number of Processor Cores: 2
Processor Socket: Intel Socket T (LGA775)
Warranty
Warranty Information: 3 Year Limited Warranty

30...Intel® Celeron® processor

Proven Technology, Exceptional Value

The new Intel® Celeron® processor delivers a balanced level of proven technology and exceptional value for desktop PCs. Based on a new energy-efficient microarchitecture, this Celeron processor enables smaller, quieter, and more capable desktop PCs.

Systems based on the Celeron processor are ideal for day-to-day computing, whether in the home, classroom, or office. The Execute Disable Bit¹, a built-in security feature, helps protect your programs and files from viruses, worms, and other malicious attacks. The Celeron processor also includes Intel® 64² architecture, so you can access larger amounts of memory when used with appropriate 64-bit supporting hardware and software. A faster Front Side Bus accelerates access between the processor core and your data for an enhanced computing experience.

When combined with an Intel® Express Chipset-based board, this platform provides a balanced entry level desktop PC. Enjoy integrated Intel® High Definition Audio (Intel® HD Audio) for exceptional audio quality, and Intel® Graphics Media Acceleration (Intel® GMA) which delivers a smooth visual experience. Enter the colorful world of e-learning and digital photography, or perform business activities like data entry, inventory management, Voice over Internet Protocol (VoIP), and e-mail.


Product information

Processor number chart
View specification chart
Download product brief (PDF 247KB)

Features and benefits

Single-Core Processing

New microarchitecture with 800 MHz FSB enhances your computing experience.

Intel® Wide Dynamic Execution

Improves execution speed and efficiency, delivering more instructions per clock cycle.

Intel® Smart Memory Access

Optimizes the use of the data bandwidth from the memory subsystem to accelerate out-of-order execution. A newly designed prediction mechanism reduces the time in-flight instructions have to wait for data. New pre-fetch algorithms move data from system memory into the fast L2 cache in advance of execution. These functions keep the pipeline full, improving instruction throughput and performance.

Intel® Advanced Digital Media Boost

Significantly improves the media performance on a broad range of applications including video, audio, image and photo processing, multimedia, encryption, financial, engineering, and scientific applications. The 128-bit SSE instructions are now issued at a throughput rate of one per clock cycle, effectively doubling speed of execution on a per clock basis over previous generation processors.
Intel® 64² architecture

Allows the desktop processor platform to access larger amounts of memory. With appropriate 64 bit supporting hardware and software, platforms based on an Intel processor supporting 64-bit computing can use extended virtual and physical memory. Intel 64 provides flexibility for 32-bit and 64-bit computing.

Execute Disable Bit¹

Provides enhanced virus protection when deployed with a supported operating system. Allows memory to be marked as executable or non executable, allowing the processor to raise an error to the operating system if malicious code attempts to run in non-executable memory, thereby preventing the code from infecting the system.

Intel Designed Thermal Solution

Intel boxed processors ship with a thermal solution specifically for this processor, designed for maximum thermal and acoustic performance.

¹ Enabling Execute Disable Bit functionality requires a PC with a processor with Execute Disable Bit capability and a supporting operating system. Check with your PC manufacturer on whether your system delivers Execute Disable Bit functionality.


² Intel® 64 requires a computer system with a processor, chipset, BIOS, enabling software and/or operating system, device drivers, and applications designed for these features. Performance will vary depending on your configuration. Contact your vendor for more information.

Intel Core 2 Duo E8400 3.0GHz

In the summer of 2006, Intel released their 65nm Conroe-based processors, and to say they won the hearts of many would be an understatement. It was one product-launch that Intel didn't want to hit lightly, especially since AMD were actively taking from their customer base - on the enthusiast side, most notably. When said and done, Intel did accomplish what they planned to do. They put the industry through a blender and showed us how to be excited about processors again.

Although frequencies with Conroe were not as high as what we were used to seeing from Intel, the folks in Santa Clara proved that a high frequency didn't mean much if the processor itself was inefficient. Indeed, a 2.4GHz Conroe Dual-Core proved just how much better an efficient processor could be, and it quickly became the most common processor choice for the enthusiast.

The following summer, follow-up processors were released, including the E6750 Dual-Core which we evaluated at the time. Besides speed bumps, those processors didn't bring much to the table in way of new features, except for native 1333FSB support. Instead, the processor we are taking a look at today is one of the few new models that effectively replace the Conroe-based chips that we came to love so dearly in summer of '06.

I won't delve deep into how 45nm improves on 65nm, as I explained all of that in our QX9650 review, but I will touch on things briefly. One large benefit that comes with all die shrinks is better power efficiency and lower temperatures. Chips have the capability to run just as fast, if not faster, than their predecessors, all while running cooler and drawing less power. It's a win/win situation.

But with 45nm, Intel introduced more than just a die shrink. The biggest feature that most people will be interested in is the SSE4 instruction set. It affects media-buffs only - those who encode videos - but the performance gains are so evident, that developers of such applications are bound to begin supporting it sooner than later. The speed increases could be as large as 2x, even though it's difficult to believe.

Other improvements include increased L2 cache, half-multipliers (eg, 9.5x), a faster front-side-bus, improved Super Shuffle Engine, Smart Cache (to improve how split loads are accessed and stored) and so many transistors on a single die, it can give people headaches to think about it!
The obvious downside of the QX9650 launch in November was the fact that no other processors complimented it. Therefore, it was QX9650 or bust - until now that is. During CES earlier this month, Intel officially announced their 45nm launch plans, which include the desktop side, server and also mobile. We found out at that time that the Quad-Core models (Q9300 - Q9550) were pushed back to sometime in Q1. Although a solid date was never settled on, original road maps showed January as the scheduled launch. However, the rumor is that due to poor performing Phenom Quad-Core sales, Intel decided to hold off on the launch to help push remaining 65nm models to consumers first.

So how does the road map stand now that some time has past? Although Intel announced near-immediate availability of all 45nm desktop Dual-Cores at CES, only the E8400 has shown up on e-tailers. One popular e-tailer has the other models listed for availability in April. How true that is, I'm unsure, but it's strange given the fact that they were supposed to be available by now.
Processor Name

Cores

Clock

Cache

FSB

TDP

1Ku Price

Available
Intel Core 2 Extreme QX9775
4

3.20GHz

2 x 6MB

1600MHz

150W

$1,499
Q1 2008
Intel Core 2 Extreme QX9770
4

3.20GHz

2 x 6MB

1600MHz

136W

$1,399
Q1 2008
Intel Core 2 Extreme QX9650
4

3.0GHz

2 x 6MB

1333MHz

130W

$999
Now
Intel Core 2 Quad Q9550
4

2.86GHz

2 x 6MB

1333MHz

95W

$530
Q1 2008
Intel Core 2 Quad Q9450
4

2.66GHz

2 x 6MB

1333MHz

95W

$316
Q1 2008
Intel Core 2 Quad Q9300
4

2.5GHz

2 x 3MB

1333MHz

95W

$266
Q1 2008
Intel Core 2 Duo E8500
2

3.16GHz

6MB

1333MHz

65W

$266
Jan 2008
Intel Core 2 Duo E8400
2

3.00GHz

6MB

1333MHz

65W

$183
Now
Intel Core 2 Duo E8200
2

2.66GHz

6MB

1333MHz

65W

$163
Jan 2008
Intel Core 2 Duo E8190
2

2.66GHz

6MB

1333MHz

65W

$163
Jan 2008

The biggest downside to the road map is that the Q9xxx are not available. Once they are, they are no doubt going to sell like hotcakes, given the improvements over the previous generation and the fact that the prices do not increase. The upside, though, is that even though the E8400 is the lone desktop Dual-Core to be available right now, we can be happy that it is the model most people would be after.

What makes the E8400 such a great choice is the fact that it's affordable, at $220USD on average, and has a nice clock speed. Let's face it... where overclocking is not concerned, having a 3.0GHz CPU looks better to the ego than say, 2.66GHz. It's all about the smooth frequencies, baby.

Intel Core 2 Duo E6750 Preview

When more is better-with four processing cores the Intel Core 2 Extreme processor delivers unrivaled¹ performance for the latest, greatest generation of multi-threaded games and multimedia apps.Now with a new version based on Intel's cutting edge 45nm technology utilizing hafnium-infused circuitry to deliver even greater performance and power efficiency. The Intel® Core™2 Extreme processor QX9770 running at 3.2 GHz delivers the best possible experience for today's most demanding users.
12 MB of total L2 cache
1600 MHz front side bus
Intel® Network Processors


Built on a high-performance fully programmable architecture, Intel network processors offer the speed, flexibility, and ease-of-use/reuse you need to accelerate time-to-market, extend time-in-market, and to enable a broad range of services from the customer premises to the core of the network. Network processors optimized for home, small-to-medium enterprise, and networked embedded applications. Flexible wire-speed processing for OC-3 to OC-12 multiservice network applications.
The Intel® IXC1100 control plane processor extends the benefits of Intel XScale® technology, including its rich set of development tools, to meet the processing needs of multi-service switches, VoIP media gateways, wireless infrastructure and other networking equipment.The information on this page is provided for the benefit of customers with existing designs.

Intel Core 2 Duo E6750 Preview

it hasn't been a full year since we saw Intel launch their Core 2 Duo processors, but we will soon be seeing a line-up refresh. This is one product that really needs no introduction, but seeing as this is a refresh, refreshing everyones minds seems appropriate. Intel launched the Core 2 Duo to much fanfare last July. Months prior to this, enthusiasts were drooling over leaks of performance reports, which fortunately, turned out to be right on the money.

The entire Conroe line-up is built on a 65nm process, with the mainstream products offering 4MB of L2 cache. Improved over the previous Pentium 4/Pentium D line-up was better power efficiency resulting in a lower TDP and better overall temperatures. This is appreciated, as two cores under the same IHS can potentially create an unwanted room heater.

All but the lowest end Core 2 Duos take advantage of a 1066FSB. This is where this refreshed line-up comes into play, as it ushers in 1333FSB computing. This noticeable speed bump is all done while retaining the same TDP.

All Conroe 1333FSB processors are identified by by a 50 at the end of the product name, hence E6750, which is effectively taking over the spot of the E6700. Nothing has changed except for the FSB and speeds, except the ratio of course, which had to be altered in order to compliment the upgraded frequency.

One thing that should be cleared up is that most overclocking enthusiasts have already accomplished the same speeds we are seeing today, with most being exceeded. In fact, there is nothing stopping anyone from popping in an E6600 and overclocking using a 333FSB and 8 multiplier. That would effectively give you the exact same speed as the E6750 we are taking a look at today.

You might be wondering where the benefit is, with this official speed bump. Primarily it will benefit those non-overclockers most. There is no comparison to equal processor speed at 1066FSB and 1333FSB. That added FSB frequency should make a much more noticeable performance difference than the CPU frequency boost itself.