Skip to main content

How to disable start up programs in windows startup

How to disable the start up programs in windows Logged In

Press Ctrl+R or go to start button and then type msconfig
then System Configuration control box will displays -> select Start up tab -> Disable what you not interested start up programs just Uncheck appropriate programs -> Click Ok and restart your system.
which programs you selected these are not worked in next booting..

Screens

Open Run


System Configuration Tab select Start Up



Restart..


Press Restart button if you want to restart the system or else Exit without restart button.

Thank you......

Popular posts from this blog

Publication Tools

Blogs: WordPress Typepad Blogger B2evolution Scribefire Wikis: Wikipedia Wikia Wetpaint Pbwiki Wikispaces Twiki Citizen Journalism Portals: Digg Newsvine Livejournal Sharing Tools: Videos Sharing Tools: YouTube Metacafe Revver Viddler Blip.tv Picture Sharing Tools: FlickR Zooomr Smugmug Links Sharing Tools: del.icio.us Digg Yahoo! Buzz Propeller Technorati StumbleUpon Reddit Ma.gnolia Mixx.com Music Sharing Tools: Last.fm iLike Pandora Odeo Slideshows Sharing Tools: Slideshare Authorstream Myplick Products Feedbacks Sharing Tools: Crowdstorm ...

Effective Eclipse: Shortcut keys

You should try to keep your hands on keyboard. The less you touch the mouse, the more code you can write. I am trying to keep the mouse laying still and control the IDE completely using keyboard. What do you think is faster: pressing ALT + C or right clicking the project, selecting Team -> Commit ? It is said, that if a function does not have a key binding, it is useless. Below you will find a set of essential keyboard shortcuts that I love. These shortcuts are set up by default, they should all work. CTRL + D Delete row. Try it! You no more need to grab the mouse and select the line, no more Home, Shift + End, Delete. Quick and clean. ALT + Up/Down Arrow Move the row (or the entire selection) up or down. Very useful when rearranging code. You can even select more rows and move them all. Notice, that it will be always correctly indented. ALT + Left/Right Arrow Move to the last location you edited. Imagine you just created a class Foo, and now you are working ...

Calculations On Command Prompt

-: Calculations On Command Prompt :- The command processor CMD.EXE comes with a mini-calculator that can perform simple arithmetic on 32-bit signed integers: C:\>set /a 2+2 4 C:\>set /a 2*(9/2) 8 C:\>set /a (2*9)/2 9 C:\>set /a "31>>2" 7 Note that we had to quote the shift operator since it would otherwise be misinterpreted as a "redirect stdout and append" operator. For more information, type set /? at the command prompt.