Page 11 of 20 FirstFirst ... 910111213 ... LastLast
Results 101 to 110 of 197

Thread: Tips and Tricks

  1. #101
    Join Date
    Jan 2006
    Location
    Press F13 to find the location
    Posts
    615

    Default quickly formatting a floppy disk by use of a shortcut

    quickly format a floppy disk by use of a shortcut

    If you format many floppy disks you know how tedious it is to get to the Format command. You have to first open either Windows Explorer or My Computer, then right-click on the floppy disk drive icon, and select the Format command from the shortcut menu.

    You can shorten this three-step procedure into a single double-click tweak.

    To do so, right-click on the desktop and select the New/Shortcut command from the shortcut menu.

    When you see the Create Shortcut wizard, type the command
    Rundll32.exe shell32.dll,SHFormatDrive
    in the Command Line text box.

    To continue, click Next and give the shortcut an appropriate name, such as Floppy Format. Then, click the Finish button.

    This tip works for Windows 9X, ME, NT, W2K and XP.

  2. #102
    Join Date
    Jan 2006
    Location
    Mera Bharat Mahan
    Posts
    1,961

    Default

    Making the thread sticky as i find this thread usefull to many
    keep the thread updating and make this more usefull

  3. #103
    Join Date
    Jan 2006
    Location
    Press F13 to find the location
    Posts
    615

    Default

    change the volume licensing product key on a Windows XP SP1-Based Computer

    Method #1: Use the Activation Wizard

    If you have only a few volume licensing product keys to change, you can use the Activation Wizard.

    Warning!
    This document contains instructions for editing the registry. If you make any error while editing the registry, you can potentially cause Windows to fail or be unable to boot, requiring you to reinstall Windows. Edit the registry at your own risk. Always back up the registry before making any changes. If you do not feel comfortable editing the registry, do not attempt these instructions. Instead, seek the help of a trained computer specialist.

    Note: Microsoft recommends that you run System Restore to create a new restore point before you complete the following steps:

    1) Click Start, and then click Run.

    2) In the Open box, type Regedit, and then click OK.

    3) In the left pane, locate and then click the following registry key:

    HKEY_LOCAL_MACHINE\Software\Microsoft\WindowsNT\Cu rrent Version\WPAEvents
    4) In the right pane, right-click OOBETimer, and then click Modify.

    5) Change at least one digit of this value to deactivate Windows.

    6) Click Start, and then click Run.

    7) In the Open box, type the following command, and then click OK.

    %systemroot%\system32\oobe\msoobe.exe /a
    8) Click Yes, I want to telephone a customer service representative to activate Windows, and then click Next.

    9) Click Change Product key.

    10) Type the new product key in the New key boxes, and then click Update. If you are returned to the previous window, click Remind me later, and then restart the computer.

    11) Repeat steps 6 and 7 to verify that Windows is activated. You receive the following message:

    Windows is already activated. Click OK to exit.

    12) Click OK.

    13) Install SP1 for Windows XP.

    If you cannot restart Windows after you install SP1, press F8 when you restart the computer, select Last Known Good Configuration, and then repeat this procedure.

    Method #2: Use a Script

    You can create a WMI script that changes the volume licensing product key, and then deploy this script in a startup script. The sample ChangeVLKey2600.vbs script and the sample ChangeVLKeySP1 script that are described in this section use the new volume licensing key that you want to enter, in its five-part alphanumeric form, as a single argument. Microsoft recommends that you use the ChangeVLKey2600.vbs script on Windows XP-based computers that are not running SP1 and that you use the ChangeVLKeySP1.vbs script on Windows XP-based computers that are running SP1. These scripts perform the following functions:

    1) They remove the hyphen characters (-) from the five-part alphanumeric product key.

    2) They create an instance of the win32_WindowsProductActivation class.
    They call the SetProductKey method with the new volume licensing product key.

    You can create a batch file or a CMD file that uses either of the following sample scripts, together with the new product key as an argument, and either deploy it as part of a startup script or run it from the command line to change the product key on a single computer.

    ChangeVLKeySP1.vbs


    '
    ' WMI Script - ChangeVLKey.vbs
    '
    ' This script changes the product key on the computer
    '
    '************************************************* **************************

    ON ERROR RESUME NEXT


    if Wscript.arguments.count<1 then
    Wscript.echo "Script can't run without VolumeProductKey argument"
    Wscript.echo "Correct usage: Cscript ChangeVLKey.vbs ABCDE-FGHIJ-KLMNO-PRSTU-WYQZX"
    Wscript.quit
    end if

    Dim VOL_PROD_KEY
    VOL_PROD_KEY = Wscript.arguments.Item(0)
    VOL_PROD_KEY = Replace(VOL_PROD_KEY,"-","") 'remove hyphens if any

    for each Obj in GetObject("winmgmts:{impersonationLevel=impersonat e}").InstancesOf ("win32_WindowsProductActivation")

    result = Obj.SetProductKey (VOL_PROD_KEY)

    if err <> 0 then
    WScript.Echo Err.Description, "0x" & Hex(Err.Number)
    Err.Clear
    end if

    Next
    ChangeVLKey2600.vbs

    '
    ' WMI Script - ChangeVLKey.vbs
    '
    ' This script changes the product key on the computer
    '
    '************************************************* **************************

    ON ERROR RESUME NEXT

    if Wscript.arguments.count<1 then
    Wscript.echo "Script can't run without VolumeProductKey argument"
    Wscript.echo "Correct usage: Cscript ChangeVLKey.vbs ABCDE-FGHIJ-KLMNO-PRSTU-WYQZX"
    Wscript.quit
    end if

    Dim VOL_PROD_KEY
    VOL_PROD_KEY = Wscript.arguments.Item(0)
    VOL_PROD_KEY = Replace(VOL_PROD_KEY,"-","") 'remove hyphens if any
    Dim WshShell
    Set WshShell = WScript.CreateObject("WScript.Shell")
    WshShell.RegDelete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\WPAEvents\OOBETimer" 'delete OOBETimer registry value
    for each Obj in GetObject("winmgmts:{impersonationLevel=impersonat e}").InstancesOf ("win32_WindowsProductActivation")

    result = Obj.SetProductKey (VOL_PROD_KEY)

    if err <> 0 then
    WScript.Echo Err.Description, "0x" & Hex(Err.Number)
    Err.Clear
    end if

    Next
    Example

    The following example describes how to use the ChangeVLKeySP1.vbs script from a command line:

    1) Click Start, and then click Run.

    2) In the Open box, type the following command, where AB123-123AB-AB123-123AB-AB123 is the new product key that you want to use, and then click OK:

    c:\changevlkeysp1.vbs ab123-123ab-ab123-123ab-ab123

  4. #104
    Join Date
    Jan 2006
    Location
    Press F13 to find the location
    Posts
    615

    Default Rename the Recycle Bin

    Rename the Recycle Bin

    To change the name of the Recycle Bin desktop icon, open Regedit and go to:

    HKEY_CLASSES_ROOT/CLSID/{645FF040-5081-101B-9F08-00AA002F954E}
    and change the name "Recycle Bin" to whatever you want (don't type any quotes).

  5. #105
    Join Date
    Aug 2005
    Location
    India
    Posts
    1,544

    Default

    Good tips. i found many tips useful to me.
    Keep sharing.

  6. #106
    Join Date
    Jan 2006
    Location
    Press F13 to find the location
    Posts
    615

    Default How to increase the size of Virtual Memory

    How to increase the size of Virtual Memory


    Systems like Windows XP require more operational memory than most systems have installed as actual "physical memory". All modern operating systems handle this by using "Virtual Memory" : memory, which does not exist as physical existing memory chips, but has emulated memory by using a part of the disk to temporary store information, which is currently not used by the CPU, from physical memory to disk, to make room for information currently used by the CPU. if such information placed on the disk is required by the CPU at a later time, other information in memory is store to disk, making
    space for the needed information to be put back into physical memory.

    Since information be be swapped several time between physical memory and the disk, the file on the disk used to store memory information is often called "Swap-file". Since the information is swapped in fixed size units called "Pages", the file is also call "Page File".

    The Windows Task-Manager is giving you an overview on the usage of the PF = Page-File

    It is very important, that XP never runs out of memory :

    If Task Manager shows that you get close to the limit , either install more physical memory chips (best solution) or increase the size of the Page-File :

    In the Control-Panel, select the System icon: (or right-click "My Computer" on the desktop and select Properties)
    Select the tab: "Advanced" and then
    use in the section "Performance"
    the button "Settings"

    In the Window "Performance Options",
    use the tab : "Advanced"
    In the section "Virtual Memory",
    the system shows the total size
    of the Paging file, which you can
    increase with the "Change" button.



    Usually, Windows stores the Paging File on drive C:, but if you are short on disk-space on drive C:, you can place a Paging File on a different disk and then decrease the size of the paging file on the C-drive.

    When using a Application, which use a lot of memory and therefore use heavily the memory emulated by the paging files, it is strongly suggested to increase the "Initial Size" of the Paging file, which reserves already the space on the disk for the page-file.

  7. #107
    Join Date
    Jan 2006
    Location
    Press F13 to find the location
    Posts
    615

    Default 20 things you didn't know about Windows XP

    20 things you didn't know about Windows XP


    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.exeuser32.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/ControlPanel/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/CurrentVersion/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/ControlPanel/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 2006 and won't be much to write home about. The next big release is codenamed Blackcomb and will be out in 2003/2007

  8. #108
    Join Date
    Jan 2006
    Location
    Press F13 to find the location
    Posts
    615

    Default

    Blocking Unwanted Content From the Net

    This can be done by editing a file called Hosts used by MS TCP/Ip for locating IP addresses for typed urls ..
    What happens is Windows keeps tracks of IP address of sites visited by you in this file so it wont have to query the DNS service every time you open the website .. When you put an address in the address bar the address is first resolved to an IP address .. So Window keeps this file to list known IP addresses . ..
    What we will do is to put a 127.0.0.1 for each site you wanna block .. like common ad servers and spysites .. When request to this site is found Windows will search for their entry in the Hosts file and it will found this (127.0.0.1) address and it will try to connect this site which is your Localhost address .. So it wont find the ad images and ad popups and the like .. Your computer will then give up calling the ad server and no ads will be loaded, nor will any tracking take place. Your choices for blocking sites are not just limited to blocking ad servers. You may block sites that serve advertisements, sites that serve objectionable content, or any other site that you choose to block...

    This HOSTS file is located here:

    Windows 95/98/Me c:\windows\
    Windows XP c:\windows\system32\drivers\etc\
    Windows NT/2000/ c:\winnt\system32\drivers\etc\

    This Hosts file doesnt have any extension .. You may find Hosts.sam in Win 98 but it is only a dummy file ... You should save the Hosts file corresponding to ur Operating System ...

    So a small example Hosts file :

    Code:
    # localhost: Needs to stay like this to work
    127.0.0.1   localhost
    
    127.0.0.1 123banners.com
    127.0.0.1 ad.adsmart.net
    127.0.0.1 ad.ca.doubleclick.net
    127.0.0.1 ad.de.doubleclick.net
    127.0.0.1 ad.doubleclick.net
    127.0.0.1 ad.es.doubleclick.net
    127.0.0.1 ad.fr.doubleclick.net
    127.0.0.1 ad.free6.com
    127.0.0.1 ad.it.doubleclick.net
    127.0.0.1 ad.iwin.com
    127.0.0.1 ad.jp.doubleclick.net
    127.0.0.1 ad.kr.doubleclick.net
    127.0.0.1 ad.linkexchange.com
    127.0.0.1 ad.linksynergy.com
    # and so on ...
    The # sign denotes a comment ..


    (The file contains many entries I found at www.mvps.org)

    PS .. When ad image is blocked a red cross box is visible (page not found messages) .. There is a program called eDexter availible to replace the error message with transparent image ..

    And yes .. I have read that putting 0.0.0.0 instead of 127.0.0.1 also works but it creates problem with proxy servers thats why I am not suggesting it

  9. #109
    Join Date
    Jan 2006
    Location
    Press F13 to find the location
    Posts
    615

    Default

    Opening Ports or Adding Allowed Programs with SP2's Firewall

    1.Click on Start / Run
    2.Enter in firewall.cpl
    3.Click on the Exceptions tab

    Adding a Port for Internet Access:
    1.Click on the Add Port button
    2.Name it whatever you want
    3.Enter in the ports you want to open

    Adding a Program for Internet Access
    1.Click on Add Program... button
    2.A list of all installed programs will be displayed
    3.Highlight the one you want to include for Internet access
    4.Click on the OK button

    Autoexec.nt or Config.nt Errors

    If you are getting errors similar to:
    The system file is not suitable for running MS-DOS and Microsoft Windows applications. Choose 'Close' to terminate the application.
    Try copying the file from \windows\repair directory to the one that is in the \windows\system32 directory.


    Common Control Panel Applets

    The follow are some common Control Panel Applets that are located in the \windows\system32 directory.
    If you find yourself using any of these frequently, then you can simply make shortcuts to them on your desktop.

    appwiz.cpl >>Add/Remove Programs
    desk.cpl >> Display Properties
    firewall.cpl >> Firewall Settings
    inetcpl.cpl >> Internet Options
    mmsys.cpl >> Sound and Audio
    ncpa.cpl >> Network Connections
    nusrmgr.cpl >> User Accounts
    powercfg.cpl >> Power Options
    sysdm.cpl >>System Properties
    wscui.cpl >> Security Center
    wuaucpl.cpl >> Automatic Updates Configuration


    Windows Explorer Opens Search Companion Rather than the Folder
    If the Windows Explorer opens up the Search Companion rather than opening up the actual folder, the default setting for opening a folder is changed.

    To correct this:
    Start Regedit
    Go to HKEY_CLASSES_ROOT \ Directory \ shell
    Edit the default value to be explorer or none


    Guest Only Network Access

    If you try and connect to an XP computer and are shown a logins screen with only the computername/Guest,
    You may need to change one of the Local Security Policies:
    Got to Control Panel - Administrative Tools
    Go to Local Policies - Security Options
    Check teh Network access: Sharing and security model for local accounts
    Set it to Classic - local users authenticate as themselves


    Hiding a XP Computer from Network Neighborhood

    If you want to share files from a XP computer,
    yet want to remove it from showing up in the Network Neighborhood,
    Run net config server /hidden:yes


    Easy Way to Share Multiple Folders

    If you need to share multiple folders, running the program SHRPUBW.EXE will bring up a simple dialog box to let you:
    Browse to the folder you want to share
    Enter in a Share name
    Ender in a Share description
    Set permissions. Several choices are available
    Restart the process from within the same program


    Not Viewing Zip Files as Folders

    If you want to turn of WindowsXP showing Zip files as folders,
    just run:
    regsvr32 /u zipfldr.dll


    Setting Capslock, Numlock, Scroll Lock

    If you want to set the startup state for any or all of these keys,
    you just need to edit the registry.
    Start Regedit
    Go to HKEY_CURRENT_USER \ Control Panel \ Keyboard
    Open InitialKeyboardIndicators
    Change the value to one of the following numbers
    0 - All Keys off
    1 - Caps Lock on
    2 - Num Lock on
    4 - Scroll Lock on
    For multiple keys, add their values:
    3 - Caps Lock and Num Lock on
    5 - Caps Lock and Scroll Lock on
    6 - Num Lock and Scroll Lock on
    7 - Caps Lock, Num Lock, and Scroll Lock on
    Log off and back on again


    Restoring Desktop Icon to the Quicklaunch Bar

    If you mistakenly deleted the icon for the Desktop on the Quicklaunch toolbar
    Go to C:\Documents and Settings\user_name\Application Data\Microsoft\Internet Explorer\Quick Launch
    (where user_name is replaced by your login name)
    Create a Text file called ShowDesktop.SCF with the following contents:
    [Shell]
    Command=2
    IconFile=explorer.exe,3
    [Taskbar]
    Command=ToggleDesktop


    Network Access After Norton Anti-Virus Install

    Sometimes you can't access a WinXP computer after installing Norton Anti-Virus.
    There might be a variety of errors at the other computer depending on the operating system.
    On the XP computer, in the Event Viewer / System log, there will be the following error:
    The server's configuration parameter "irpstacksize" is too small for the server to use a local device.
    Start Regedit
    Go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es\lanmanserver\parameters
    Edit the IRPStackSize
    Give it a value of 15
    Reboot the computer


    Configure for Auto-Logon

    If you are the only person using the computer and what to have it automatically log you on,
    Start / Run / "control userpasswords2" - no quotes
    Uncheck User must enter a user name and password to use this computer
    Services You Can Disable
    There are quite a few services you can disable from starting automatically.
    This would be to speed up your boot time and free resources.
    They are only suggestions so I suggestion you read the description of each one when you run Services
    and that you turn them off one at a time.
    Some possibilities are:
    Alerter - Sends alert messages to specified users that are connected to the server computer.
    Application Management - Allows software to tap directly into the Add/Remove Programs feature via the Windows Installer technology.
    Background Intelligent Transfer Service - The Background Intelligent Transfer service is used by programs (such as Windows AutoUpdate) to download files by using spare bandwidth.
    Clipbook - ClipBook permits you to cut and paste text and graphics over the network.
    Error Reporting Service - Allows applications to send error reports to Microsoft in the event of an application fault.
    Fast User Switching - Windows XP allows users to switch quickly between accounts, without requiring them to log off.
    Help and Support - Allows the XP Built-in Help and Support Center to run.
    IMAPI CD-Burning COM Service - You don't need this if you have other software to create CDs.
    Indexing Service - Indexes contents and properties of files on local and remote computers; provides rapid access to files through flexible querying language.
    IP SEC - Manages IP security policy and starts the ISAKMP/Oakley (IKE) and the IP security driver. If you are not on a domain, you likely don't need this running.
    Messenger - Transmits net send and Alerter service messages between clients and servers. This is how a lot of pop-up windows start appearing on your desktop.
    Net Logon - Supports pass-through authentication of account logon events for computers in a domain. If you are not on a domain, you don't need this running
    Network DDE - Provides network transport and security for Dynamic Data Exchange (DDE) for programs running on the same computer or on different computers.
    NT LM Security Support Provider - Provides security to remote procedure call (RPC) programs that use transports other than named pipes.
    Performance Logs and Alerts - Collects performance data from local or remote computers based on preconfigured schedule parameters, then writes the data to a log or triggers an alert. If you don't need to monitor your performance logs, then you don't need this service.
    Portable Media Serial Number - Retrieves the serial number of any portable music player connected to your computer
    QOS RSVP - Provides network signaling and local traffic control setup functionality for QoS-aware programs and control applets.
    Remote Desktop Help Session Manager - Manages and controls Remote Assistance. If you are not using Remote Desktop you don't need this service.
    Remote Registry - Enables remote users to modify registry settings on this computer.
    Routing & Remote Access - Offers routing services to businesses in local area and wide area network environments. Allows dial-in access.
    Secondary Login - Enables starting processes under alternate credentials. This is what allows you to run an application as another user.
    Smart Card - Manages access to smart cards read by this computer.
    Smart Card Helper - Enables support for legacy non-plug and play smart-card readers used by this computer.
    SSDP Discovery Service - Enables discovery of UPnP devices on your home network.
    TCP/IP NetBIOS Helper - Enables support for NetBIOS over TCP/IP (NetBT) service and NetBIOS name resolution. This should not be needed in today's network environment.
    Telnet - Enables a remote user to log on to this computer and run programs, and supports various TCP/IP Telnet clients.
    Uninterruptible Power Supply Service - Manages an uninterruptible power supply (UPS) connected to the computer.
    Universal Plug and Play Device Host - Provides support to host Universal Plug and Play devices
    Upload Manager - Manages synchronous and asynchronous file transfers between clients and servers on the network.
    Volume Shadow Copy Service - Manages and implements Volume Shadow Copies used for backup and other purposes.
    Web Client - Enables Windows-based programs to create, access, and modify non-local files across the Internet.
    Wireless Zero Configuration - Provides automatic configuration for the 802.11 adapters
    WMI Performance Adapter - Provides performance library information from WMI HiPerf providers.


    Cleaning the Prefetch Directory

    WindowsXP has a new feature called Prefetch. This keeps a shortcut to recently used programs.
    However it can fill up with old and obsolete programs.
    To clean this periodically go to:
    Star / Run / Prefetch
    Press Ctrl-A to highlight all the shorcuts
    Delete them


    Not Displaying Logon, Logoff, Startup and Shutdown Status Messages

    To turn these off:
    Start Regedit
    Go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\policies\system
    If it is not already there, create a DWORD value named DisableStatusMessages
    Give it a value of 1


    Repair Install

    If XP is corrupted to the point where none of the previous solutions get it to boot,
    you can do a Repair Install that might work as well as keep the current settings.
    Make sure you have your valid WindowsXP key.
    The whole process takes about half an hour depending on your computer
    If you are being prompted for the administrator's password, you need to choose the 2nd repair option, not the first.
    Insert and boot from your WindowsXP CD
    At the second R=Repair option, press the R key
    This will start the repair
    Press F8 for I Agree at the Licensing Agreement
    Press R when the directory where WindowsXP is installed is shown. Typically this is C:\WINDOWS
    It will then check the C: drive and start copying files
    It will automatically reboot when needed. Keep the CD in the drive.
    You will then see the graphic part of the repair that is like during a normal install of XP (Collecting Information, Dynamic Update, Preparing Installation, Installing Windows, Finalizing Installation)
    When prompted, click on the Next button
    When prompted, enter your XP key
    Normally you will want to keep the same Workgroup or Domain name
    The computer will reboot
    Then you will have the same screens as a normal XP Install
    Activate if you want (usually a good idea)
    Register if you want (but not necessary)
    Finish
    At this point you should be able to log in with any existing accounts.


    NTOSKRNL Missing or Corrupt

    If you get an error that NTOSKRNL not found:
    Insert and boot from your WindowsXP CD.
    At the first R=Repair option, press the R key
    Press the number that corresponds to the correct location for the installation of Windows you want to repair.
    Typically this will be #1
    Change to the drive that has the CD ROM.
    CD i386
    expand ntkrnlmp.ex_ C:\Windows\System32\ntoskrnl.exe
    If WindowsXP is installed in a different location, just make the necessary change to C:\Windows
    Take out the CD ROM and type exit


    HAL.DLL Missing or Corrupt

    If you get an error regarding a missing or corrupt hal.dll file, it might simply be the BOOT.INI file on the root of the C: drive that is misconfigured
    Insert and boot from your WindowsXP CD.
    At the first R=Repair option, press the R key
    Press the number that corresponds to the correct location for the installation of Windows you want to repair.
    Typically this will be #1
    Type bootcfg /list to show the current entries in the BOOT.INI file
    Type bootcfg /rebuild to repair it
    Take out the CD ROM and type exit


    Corrupted or Missing \WINDOWS\SYSTEM32\CONFIG

    If you get the error:
    Windows could not start because the following files is missing or corrupt
    \WINDOWS\SYSTEM32\CONFIG\SYSTEM or \WINDOWS\SYSTEM32\CONFIG\SOFTWARE
    Insert and boot from your WindowsXP CD.
    At the first R=Repair option, press the R key
    Press the number that corresponds to the correct location for the installation of Windows you want to repair.
    Typically this will be #1
    Enter in the administrator password when requested
    cd \windows\system32\config
    Depending on which section was corrupted:
    ren software software.bad or ren system system.bad
    Depending on which section was corrupted
    copy \windows\repair\system
    copy \windows\repair\software
    Take out the CD ROM and type exit


    NTLDR or NTDETECT.COM Not Found

    If you get an error that NTLDR is not found during bootup,
    If you have FAT32 partitions, it is much simpler than with NTFS.
    Just boot with a Win98 floppy and copy the NTLDR or NTDETECT.COM files
    from the i386 directory to the root of the C:\ drive.
    For NTFS:
    Insert and boot from your WindowsXP CD.
    At the first R=Repair option, press the R key
    Press the number that corresponds to the correct location for the installation of Windows you want to repair.
    Typically this will be #1
    Enter in the administrator password when requested
    Enter in the following commands (X: is replaced by the actual drive letter that is assigned to the CD ROM drive.
    COPY X:\i386\NTLDR C\:
    COPY X:\i386\NTDETECT.COM C:\
    Take out the CD ROM and type exit


    Bringing Up the Shutdown Dialog Box

    Create a new txt file somewhere on your system, open it and put in this one line:
    (new ActiveXObject("Shell.Application")).ShutdownWindow s();
    Save and Close the file. Change the extension to js and your got it.
    You can make a shortcut to that file to make it easy to shut down your system.


    Hiding the Last User Logged On

    If you use the standard NT style of login and want to hide the last user:
    Start the Group Policy Editor (gpedit.msc)
    Go to Computer Configuration / Windows Settings / Security Settings / Local Policies / Security Options
    Scroll down to Interactive logon: Do not display last user name
    Set it to Enable


    Poweroff at Shutdown

    If your computer does not turn off the power when doing a shutdown,
    you may need to edit the registry. I have all the correct BIOS and Power settings and still needed to do this.
    Start Regedit
    Go to HKEY_CURRENT_USER\Control Panel\Desktop
    Edit the key PowerOffActive and give it a value of 1
    You can do the same in HKEY_USERS\.DEFAULT\Control Panel\Desktop


    Remembering Folder Settings

    If XP does not remember your folder settings, delete or rename the following registry keys
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell NoRoam\BagMRU]
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell NoRoam\Bags]


    Preventing Applications from Stealing the Focus

    To prevent applications from stealing the focus from the window you are working
    Start Regedit
    Go to HKEY_CURRENT_USER \ Control Panel \ Desktop
    Edit the key ForegroundLockTimeout
    Give it a value of 00030d40


    Disable Explorer Thumbnail View

    If you want disable the Explorer's ability to show the Thumbnail View ,
    Start Regedit
    Go to HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Explorer \ Advanced \
    Change ClassicViewState to 1

    Disable Shared Documents

    To disable the Shared Documents folder that shows up on the network
    Start Regedit
    Go to HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Policies \ Explorer \
    Create a new DWORD Value
    Give it the name NoSharedDocuments
    Give it a value of 1
    Log off or reboot


    Removing Thumbs.db Files

    When viewing a folder with the Thumbnail view, WindowsXP creates a thumbs.db file.
    This is a cache of the current pictures in that directory.
    If you want to turn this feature off and save a little disk space
    Start the Windows Explorer
    Go to Tools / Folder Options / View
    In the first section under Files and Folders, check Do not cache thumbnails
    Now you can search for the thumbs.db file on your computer and remove them. No more should be created.



    Enable / Disable the Task Manager

    Start Regedit
    Go to HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies\System
    Create the Dword value DisableTaskMgr
    Give it a value of 0 to enable it
    Give it a vaule of 1 to disable it


    Clearing the Page File on Shutdown

    Another way to set the computer to clear the pagefile without directly editing the registry is:
    Click on the Start button
    Go to the Control Panel
    Administrative Tools
    Local Security Policy
    Local Policies
    Click on Security Options
    Right hand menu - right click on "Shutdown: Clear Virtual Memory Pagefile"
    Select "Enable"
    Reboot
    If you want to clear the page file on each shutdown:
    Start Regedit
    Go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Contro l\Session Manager\Memory Management\ClearPageFileAtShutdown
    Set the value to 1


    No GUI Boot

    If you don't need to see the XP boot logo,
    Run MSCONFIG
    Click on the BOOT.INI tab
    Check the box for /NOGUIBOOT


    Using the Classic Search in Explorer

    If you prefer to use the classic search style in Explorer,
    Start Regedit
    Go to HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Explorer\CabinetState
    Add a String Key called Use Search Asst
    Give it a value of no


    Changing Drive Letters

    If you want to change the letters assigned to your fixed or removable drives:
    Right Click on My Computer
    Select Manage
    Select Disk Management
    For a Fixed Disk:
    Select it
    Right click
    Select Change Drive Letter and Path
    Click on the Edit button
    Enter in the letter you want to use
    For a Removable Disk:
    In the lower, right hand panel, right click on the Disk or CD ROM #
    Select Change Drive Letter and Path
    Click on the Edit button
    Enter in the letter you want to use


    Changing the Registered Owner

    Start Regedit
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion
    From there you can edit the name in the Registered Owner key

    Decreasing Boot Time

    Microsoft has made available a program to analyze and decrease the time it takes to boot to WindowsXP
    The program is called BootVis
    Uncompress the file.
    Run BOOTVIS.EXE
    For a starting point, run Trace / Next Boot + Driver Delays
    This will reboot your computer and provide a benchmark
    After the reboot, BootVis will take a minute or two to show graphs of your system startup.
    Note how much time it takes for your system to load (click on the red vertical line)
    Then run Trace / Optimize System
    Re-Run the Next Boot + Drive Delays
    Note how much the time has decreased
    Mine went from approximately 39 to 30 seconds.


    Hide/Unhide Logon Names

    If you want to hide or unhide the names of users that are displayed on the initial logon screen:
    Start Regedit
    Go to HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows NT \ CurrentVersion \ Winlogon \ SpecialAccounts \ UserList
    Add a DWORD with the name of the user account you want to hide
    Make sure it has a value of 0
    If there is an existing account, you can unhide it by giving it a value of 1


    WindowsXP Command Line Utilities

    While there are a lot of command line utilities in WindowsXP, here are some that I have been using lately.
    bootcfg - Configures, queries, or changes Boot.ini file settings.
    driverquery - Displays a list of all installed device drivers and their properties.
    getmac - Returns the media access control (MAC) address and list of network protocols associated with each address for all network cards in each computer
    gpresult - Displays Group Policy settings and Resultant Set of Policy (RSOP) for a user or a computer
    netsh - You can use commands in the Netsh Interface IP context to configure the TCP/IP protocol
    schtasks - Schedules commands and programs to run periodically or at a specific time
    systeminfo - Displays detailed configuration information about a computer and its operating system


    Disabling Hibernation

    If you don't want to use up the disk space taken by Hibernation, or don't need to use it at all,
    you can easily disable it.
    Open up the Control Panel / Power Options icon
    Click on the Hibernation icon
    Uncheck Enable Hibernation


    Increasing System Performance

    If you have 512 megs or more of memory, you can increase system performance
    by having the core system kept in memory.
    Start Regedit
    Go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Contro l\Session Manager\Memory Management\DisablePagingExecutive
    Set the value to be 1
    Reboot the computer


    Common Command Console Utilities

    WindowsXP comes with quite a few console utilities you can easily run from the command line:
    Computer Management - compmgmt.msc
    Disk Managment - diskmgmt.msc
    Device Manager - devmgmt.msc
    Disk Defrag - dfrg.msc
    Event Viewer - eventvwr.msc
    Shared Folders - fsmgmt.msc
    Group Policies - gpedit.msc
    Local Users and Groups - lusrmgr.msc
    Performance Monitor - perfmon.msc
    Resultant Set of Policies - rsop.msc
    Local Security Settings - secpol.msc
    Services - services.msc
    Component Services - comexp.msc



    Automatically Ending Non-Responsive Tasks

    Start Regedit
    Go to HKEY_CURRENT_USER\Control Panel\Desktop\AutoEndTasks
    Set the value to be 1
    In the same section, change the WaitToKillAppTimeout to the number of milliseconds you want.


    Changing Programs That Start Automatically

    WindowsXP has a similar program, MSCONFIG, that was available in Windows98.
    This allows you to view and change what programs are automatically started each time you log in.
    The new version also allows you to view and edit the boot.ini file (as well as check for errors and use several advanced switches)


    Creating an Automated Install of WindowsXP

    On the WindowsXP CP, in the SUPPORT\TOOLS directory,
    there is a file called DEPLOY.CAB.
    Extract the programs DEPLOY.CHM (help file) and SETUPMGR.EXE (main program)
    Run SETUPMGR and answer the prompts.
    This will create both a unattend.bat and unattend.txt file you can use for automated installs.
    Note: The batch file might need some minor modification for file locations but it is fairly basic.

  10. #110
    Join Date
    Dec 2005
    Location
    Turkiye-Tekirdag
    Posts
    143

    Default

    thanx for sharing... :D

    and...

    little think from me..
    in win xp there is an prog for blinds(C:\WINDOWS\system32)
    narrator.exe
    just press start!>run>narrator.exe...
    and then you can hear all of your mouse pointer go.

Page 11 of 20 FirstFirst ... 910111213 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •