I think that it’s cool and ‘geeky’ to be able to launch your favorite and frequently used application just the way you launch regedit, cmd or services.msc from the Run dialog box or even from the Command Prompt. In this post, I am going to tell you 3 methods to do this. The first two methods can be used only to launch executable files where as third method can be used to launch any file or directory.
1. Using Add2Run utility
Let’s start with the most simple way to launch applications from Run. Add2Run developed by Jitendra Bangani is a tiny standalone portable utility designed just to do this. Read more…
GIF animations are most popular and are used everywhere right from banner ads to funny animations. UnFREEz is a very tiny useful utility developed by WhitSoft that allows you to make simple GIF animations. You do not need any knowledge or skills of editing frames or pictures. Basically what it does is, it creates a single animated GIF image from separate GIF files. UnFREEz needs no installation – it’s a stand-alone portable executable file.
Here are some of it’s features :
- Drag and Drop GIF Images
- Set Frame Delay Time
- Automatic Interlacing
- Automatic Transparency Detection
Read more…
Why can’t I uninstall certain softwares ?
I’ve seen in many forums that users ask for a solution on how to uninstall certain softwares. Many of my friends too call me and ask what should I do if I cannot uninstall a software ? First, we must know why it cannot be uninstalled using the bundled Uninstaller or from Control Panel using Add/Remove Programs. The reason might be that, the software files might have been corrupt OR the PC could be infected with virus OR the software installed is a rogue software OR even the OS files could have been corrupt OR the registry keys belonging to the software might be corrupt.
What should I do ?
The first thing, you must do is try uninstalling the software using the ‘usual way’. By usual way, I mean using the Add/Remove Programs option or using the Uninstaller that came with the software. One thing that you require is patience. It might take long time or your system might be non-responding for a few seconds. The uninstaller might ask you to restart your PC too. Do it as it says.
Read more…
Who is NT AUTHORITY\SYSTEM ?
It is a built-in user account that is run on a Windows OS. It has powers even more than the Administrator account ! Using that account, one can gain complete control over everything. You can kill any stubborn process, make system wide changes etc. But, one cannot log in as NT AUTHORITY\SYSTEM. Windows doesn’t allow this and for a good reason coz malicious programs if run as NT AUTHORITY\SYSTEM, then it would be nothing less than a disaster!
Why should I become the NT AUTHORITY\SYSTEM ?
There are many rare instances when you will need to become the NT AUTHORITY\SYSTEM like in case you cannot end a virus process using Task Manager or from command line using taskkill even when the /f switch is used.
How can I become NT AUTHORITY\SYSTEM ?
Here is a little trick that allows you to gain system wide access as NT AUTHORITY\SYSTEM in XP. This won’t work in Vista. Read more…
In this post, I am going to explain one of the two simple ways to redirect a webpage to another webpage.
Client Side Redirect (carried out by your browser)
You can create a webpage that instructs the browser to redirect a webpage to another after certain time delay. The time delay is purely optional.
This is achieved using the meta refresh command which is to be placed within the head tags. Here’s the general syntax :
<head>
<meta http-equiv="refresh" content="N; URL=destination_webpage_address">
</head>
The browser redirects the user from the current page to the destination webpage address specified in the “URL” attribute of the meta tag after a time delay of N seconds. Read more…