Your Ad Here
Aeon
Showing posts with label Tweaks and Hacks. Show all posts
Showing posts with label Tweaks and Hacks. Show all posts

Wednesday, March 24, 2010

Speeding Up Windows XP... Part I

Windows XP is an operating system developed by Microsoft. Although Microsoft recently launched a new version of their operating system named "Windows 7", many PC users still use and/or prefer using Windows XP due to its stability and low system requirements.

These tips will help you speeding up Windows XP and hopefully enhance your productivity.

Shutdown Unnecessary Services - To disable or change the startup mode of a service you have to open the "Services" Management Console. Type "Services.msc" at the Run Command Prompt in the Start menu to start the services management console. You can also launch it from Windows Control Panel -> Administrative Tools. To disable a service or change its startup type, double-click the service name. Service properties dialog opens, where you can Start, Stop, Pause or Resume a service and also change its startup type. Read the description of the service carefully before disabling any service.
  • ClipBook Viewer - This service is used if you cut-copy-paste snippets to and from other computers in your local area network. It is recommended that you disable this service.
  • Computer Browser - It maintains a list of computers in your network. So if you have a system that is not part of any network, then you can safely disable this service.
  • DNS Client - It resolves and caches DNS names.
  • Error Reporting Service - This service causes an error dialog to pop-up whenever an application crashes and allows you to report that error to Microsoft. You can safely disable this service.
  • Fast User Switching Compatibility - You can disable this service if there is only one user account in your PC.
  • Messenger Service - It is recommended to disable this service.
  • MS Software Shadow Copy Provider - Disable this service if you don't use Microsoft Backup Utility.
  • Net Logon - Provides Domain Authentication. Disable if the PC is not part of a domain.
  • NetMeeting Remote Desktop Sharing - Allows a remote user to access your PC using NetMeeting. It is recommended to disable this service.
  • Network DDE and Network DDE DDSM services - It is recommended to disable these services.
  • Performance Logs and Alerts - It helps in monitoring system performance. You can disable this service, if you don't monitor system performance regularly.
  • Portable Media Serial Number Service - Retrieves serial number from portable media players attached to the computer. It is recommended to disable this service. Leave this service enabled if you are using portable music player with your PC.
  • Print Spooler Service - This service can be disable if you don't use a printer. Note that printers won't work if this service is disabled.
  • QoS RSVP Service - Manages network bandwidth for QoS-aware programs. This service may be disabled. Read the MS Knowledge Base article Q316666 for more details.
  • Remote Desktop Help Session Manager - Manages and controls Remote Assistance. If you don't use Remote Desktop, you can safely disable this service.
  • Remote Registry Service - Allows a remote user to make change to your registry. This service can be exploited harmfully, so it is strongly recommended to disable this service.
  • Routing and Remote Access - Adds support for routing services in LAN and WAN networks. It is recommended to disable this service.
  • Security Center - Monitors system security settings. If you are an experienced user, and monitor your antivirus and firewall software manually, then it is recommended to disable this service.
  • Server - Provides file and print sharing services over the network. If you are not in a LAN. then you can disable this service.
  • Smart Card Service - If you don't use smart card, then disable this service.
  • Smart Card Helper Service - For legacy smart cards which don't support plug and play. Disable if you don't use those.
  • SSDP Discovery Service - Enables discovery of Universal Plug and Play devices in the local network. It is recommended to disable this service.
  • System Restore Service - Allows to save the current state of the computer and revert back to a previously saved state. Disable this service if you don't use System Restore.
  • Telnet - It is strongly recommended to disable this service due to a major security loophole.
  • Themes - Manages themes in Windows XP. Disable if you don't use themes.
  • Volume Shadow Copy - Disable it if you don't use Microsoft Backup Utility.
  • Windows Image Acquisition - Manages Web cams, Cameras and Scanners attached to the computer. Disable if you don't use any of those.
  • Windows Time - Synchronizes time and date to a time server. It is recommended to disable this service unless you want to synchronize your PC clock to a time server.
  • Wireless Zero Configuration - Automatically configures 802.11 wireless adapters. If you don't use Wireless network devices, then disable this service.
Bookmark and Share Speeding Up Windows XP... Part ISocialTwist Tell-a-Friend

Thursday, April 2, 2009

How to enable/disable Task Manager

Task Manager is a very useful utility for system administrators and users alike. This utility can be used to monitor system's performance, view running processes (with detailed information on resource utilization and performance of each process). Task Manager can be started by pressing CTRL+ALT+DEL or CTRL+ALT+ESC or by right-clicking on an empty area of the taskbar and selecting Task Manager from the drop-down menu. It can also be used to terminate running processes or change their priority. Several new features have been added in the Task Manager in Windows Vista. A services tab has been added from which system services can be started, stopped or disabled. Also, you can create a dump for any individual process for debugging purposes. Now, process executable properties can be viewed directly by right-clicking the process and selecting properties.

Task Manager may be disabled by malicious software, or viruses. If it is disabled, you will get a message that "Task Manager

There are different ways for enabling or disabling windows task manager:
  1. Save the following code in a text file and name it "Enable Task Manager.reg". Double-click the file and select yes when prompted and Task Manager will be enabled. You can also right-click the file and select Merge.

    Windows Registry Editor Version 5.00

    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
    "DisableTaskMgr"=dword:00000000


    To disable the task manager, simply change the dword value to 1.

    Windows Registry Editor Version 5.00

    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
    "DisableTaskMgr"=dword:00000001

  2. It can also be enabled or disabled using the Group Policy editor. Click Start Menu and select Run... Type "gpedit.msc" (without the quotes) in the Run dialog box and press Enter. When the Group Policy Editor opens, Go to User Configuration --> Administrative Templates --> System --> Ctrl+Alt+Del Options. Now in the right pane, double-click "Remove Task Manager". In the dialog box that opens,

    • Select Disabled - To enable Task Manager.
    • Select Enabled - To disable Task Manager.
    Choose OK and close the Group Policy Editor.
  3. This is the simplest way to enable or disable Task Manager. Open Command Prompt and run this code or save it in a batch file and double-click the batch file to execute it.
    • To enable Task Manager.
      REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableTaskMgr /t REG_DWORD /d 0 /f
    • To disable Task Manager.
      REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableTaskMgr /t REG_DWORD /d 1 /f

You may have to restart the system after performing any of these steps for the result.
Bookmark and Share How to enable/disable Task ManagerSocialTwist Tell-a-Friend

Sunday, March 22, 2009

How to enable/disable Registry Editor

This hack will allow you to enable or disable the registry editor. If registry editing is disabled by malware or by administrator, you can use this tweak to regain registry access. Also you can disable registry editing if you don't want to allow anyone to perform any changes to the registry, especially in a public computer like in a cybercafe.
There are three possible ways to do this:
  1. First of all open notepad or a text editor of your choice. Then copy the following text into it and save it as "Enable Regedit.reg". Double-click the file and select yes when prompted and Registry Editor will be enabled. You can also right-click the file and select "Merge".

    Windows Registry Editor Version 5.00

    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
    "DisableRegistryTools"=dword:00000000


    To disable the registry editor just change the dword value to 1. Or you can create another file and name it as "Disable Regedit.reg". Here is the code:

    Windows Registry Editor Version 5.00

    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
    "DisableRegistryTools"=dword:00000001

  2. This method is possible only if Group Policy Editor is enabled. Click Start Menu and select Run... Type "gpedit.msc" (without the quotes) in the Run dialog box and press Enter. When the Group Policy Editor opens, Go to User Configuration --> Administrative Templates --> System. Now in the right pane, double-click "Prevent Access to Registry Editing Tools". In the dialog box that opens,
    • Select Disable - To Enable Registry Editor.
    • Select Enable - To Disable Registry Editor.
    Choose OK, close the Group Policy Editor and Restart the computer.

  3. This method is the easiest, click Start Menu, select Run. In the Run dialog box, type the following code and press enter.
    • To enable Registry Editor:
      REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableRegistryTools /t REG_DWORD /d 0 /f
    • To disable Registry Editor:
      REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableRegistryTools /t REG_DWORD /d 1 /f
    You can also save these codes into a text file and rename it as *.bat (replace * with your desired name). On double-clicking the batch file the required action will be performed. These codes will also work in the command prompt.

These tweaks are for experienced users, modifying registry can make the system unstable. So do this at your own risk.
Bookmark and Share How to enable/disable Registry EditorSocialTwist Tell-a-Friend

Search 2.0

Search