Posts tagged Firefox
Win a Nokia N900 easily!
Mar 5th

As a part of publicing Firefox’s new mobile browser they are conducting a simple Q&A contest for users and the prize is a NOKIA N900 phone which is more or less equivalent to a netbook. The users need to simply answer 5 questions and answers for these will be hinted in the animation mentioned in the site. Dont forget to fill up the user details at end of the page. Just make a try and cry out of joy when you win N900. GOOD LUCK!!
CLICK HERE TO PARTICIPATE IN THE CONTEST Continue reading “Win a Nokia N900 easily!” »
Download Youtube Videos Without Any Software or Sites!!
Feb 12th

Every internet users have great attachment to Youtube for many reasons and has been depending IDM or other plugins for Firefox or sites like KeepVid for downloading videos from it. Now consider a case in which you are unable to use your software whose trial period has been ended, then also KeepVid may come to your use but the trick I am gonna present here is much more easier than the later. Continue reading “Download Youtube Videos Without Any Software or Sites!!” »
Google Wave Cheat Sheet
Jan 21st
Google wave Cheat sheet is a collection of interesting facts, search operators and tricks that will be very useful for day to day usage. You can view this cheat sheet from the below flash ebook or download a PDF copy from here. Continue reading “Google Wave Cheat Sheet” »
Twitter tips – Increase number of followers
Aug 27th
- Register at http://wefollow.com. Be wise to choose a category with less members or create a new one.
- Play games like #Follow Friday ( a game in which each Friday one have to send tweets with the text # Follow Friday and the names or business which they recommend)
- Make your twitter page more attractive. Goto http://twitterbacks.com and download customizable Continue reading “Twitter tips – Increase number of followers” »
XP tweak : Kill Processes from Command Prompt
Jul 7th
Open up an Administrative level Command Prompt and run tasklist to see all of the running processes:
C:\>tasklist
Image Name PID Session Name Mem Usage
========================= ======== ================ ============
firefox.exe 26356 Console 139,352 K
regedit.exe 24244 Console 9,768 K
cmd.exe 18664 Console 2,380 K
conhost.exe 2528 Console 7,852 K
notepad.exe 17364 Console 7,892 K
notepad.exe 24696 Console 22,028 K
notepad.exe 25304 Console 5,852 K
explorer.exe 2864 Console 72,232 K
In the example above you can see the image name and the PID for each process. If you want to kill the firefox process run:
C:\>Taskkill /IM firefox.exe /F
or
C:\>Taskkill /PID 26356 /F
The /f flag is kills the process forcefully. Failure to use the /F flag will result in nothing happening in some cases. One example is whenever I want to kill the explorer.exe process I have to use the /F flag or else the process just does not terminate.
If you have multiple instances of an image open such as multiple firefox.exe processes, running the taskkill /IM firefox.exe command will kill all instances. When you specify the PID only the specific instane of firefox will be terminated.
The real power of taskkill are the filtering options that allow you to use the following variables and operators.
Variables:
* STATUS
* IMAGENAME
* PID
* SESSION
* CPUTIME
* MEMUSAGE
* USERNAME
* MODULES
* SERVICES
* WINDOWTITLE
Operators:
* eq (equals)
* ne (not equal)
* gt (greater than)
* lt (less than)
* ge (greater than or equal)
* le (less than or equal)
“*” is the wildcard.
You can use the variables and operators with the /FI filtering flag. For example, let’s say you want to end all processes that have a window title that starts with Continue reading “XP tweak : Kill Processes from Command Prompt” »