Skip to main content

Tools for highly infected PCs


For some of the highly infected systems, we face the following problems commonly.
1) Can't open Task Manager
2) Can't open Run Box
3) Can't open Microsoft Management Console
4) Can't kill some processes
5) Slow performance because a lot of memory is consumed by the viral processes
6) Registry Problems
7) Driver Problems
8) Can't open registry editor
9) Can't install the popular antiviruses like Quick Heal, Mcafee, Norton etc.
10) Extensions of the files get changed automatically
11) Command Prompt disabled
and many more problems ........

So, we get so much irritated. For removing these problems, we can use the following problems in this case.
1) Regalyzer
RegAlyzer is a tool to browse and change the registry. It was created because of a few features we missed in the original regedit tool, from support for exotic value types over background and regular expression search to better bookmarks, displaying .reg files in the accustomed style and a history view.

2) Process Explorer
A simple program used as replacement to the common task manager. It has different other functions that help to manage the processes, handles, threads and get the detailed information about each and every process in the system.

3) Ccleaner
A simple and portable program, that can be used to clean the computer and increase the speed and efficiency of the system. This program can fix the common registry problems and help the system to run smoothly and comfortably.It has inbuilt function to manage the startup items and manage the different functions about Windows.

4) Free Commander

It is an easy-to-use alternative to the standard windows file manager. The program helps you with daily work in Windows. Here you can find all the necessary functions to manage your data stock. You can take FreeCommander anywhere - just copy the installation directory on a CD or USB-Stick - and you can even work with this program on a foreign computer.

5) Run Dialog Replacement
This program is used as replacement of Run dialog

6) Command Prompt Replacement
This program is a simple Command Prompt Replacement

Download Links :
1) Regalyzer
http://www.safer-networking.org/en/regalyzer/index.html

2) Process Explorer
http://technet.microsoft.com/en-us/sysinternals/bb896653

3) Ccleaner
http://www.piriform.com/ccleaner

4) Free Commander
http://www.freecommander.com/fc_downl_en.htm

5) Run Dialog Replacement
http://sites.google.com/site/ryzza007/Run.zip

6) Command Prompt Replacement
http://www.gammadyne.com/gs.exe

Comments

Popular posts from this blog

C programs to create pyramid structures

Q1.  Write a C program to create pyramid structure as shown below : 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 Code: //Author : Lakshmikant A. Deshpande #include<stdio.h> #include<stdlib.h> void main() { int i=1,j=5; for(i=1;i<=5;i++) { for(j=1;j<=i;j++) printf("%d ",j); printf("\n"); } } Q2.  Write a C program to create pyramid structure as shown below :     1      1 2     1 2 3  1 2 3 4 1 2 3 4 5 Code: //Author : Lakshmikant A. Deshpande #include<stdio.h> #include<stdlib.h> void main() { int spaces=4; int i,j,k; for(i=1;i<=5;i++) { for(k=0;k<spaces;k++) //Print spaces printf(" "); for(j=1;j<=i;j++) { printf("%d ",j); } for(k=0;k<spaces;k++) //Print ...

Enable Developer Tools in Moto G

As we know, Moto G is a fantastic and affordable phone by Motorola and Google !! Moto G surprisingly provides specifications that the phones with double price could provide. Are you too a nerd too, trying to explore your brand new phone ? You are at the right place. Initially developer options used to be visible. Later, with the release of Android 4.2 Jelly Bean (JB)  Google decided to hide those settings, because people used to play with developer tools, even if they did not know what those settings could lead. Follow the steps. 1. First of all get a Moto G, if you still don't have it... 2. Open settings. 3. Scroll down to bottom. 4. Touch on 'About Phone' 5. Tap on Build Number 7 times You are good to go... :)

Android KitKat (4.4) features, tips & tricks

Android KitKat is the most recent version of Android till date. It has revamped user interface with smoother animation and lower system hardware requirements. As Android rolled out Android KitKat, it introduced a bunch of new features and modifications in the Android API. 1. Keep mobile data under control We use mobile data everyday. But not all of the carriers do have unlimited data plans. Sometimes we fail to keep an eye on mobile data limit and get a huge bill in return. And as we all know, Android applications hog data a lot because of cloud computing with synchronization. Thanks to Android's built in data monitor which warns you to turn off data when warning limit set by you is exceeded, and turns off data automatically when data plan is exhausted. The data usage monitor even allows to reset the data counter on a particular date. 2. Keep an eye on alarms Alarms are extremely useful for the most of us. But sometimes they make you feel awkward when your phone rings wi...