This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Friday 22 June 2012

How To Disable & Enable Task Manager















Here Is the registry code with you can  disable or enable your Task Manager with single click
For Enable The Task Manger
Just Open Notepad Paste The Following Code Show In Green Color


Windows Registry Editor Version 5.00


[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"DisableTaskmgr"=dword:00000000


Now  Save It To "Enable Task Manager.reg"
For Disable The Task Manger
Just Open Notepad Paste The Following Code Show In Green Color

Windows Registry Editor Version 5.00




[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"DisableTaskmgr"=dword:00000001



Now  Save It To "Disable Task Manager.reg" 



For Disable & Enable Task Manager just Double click on particular file and enjoy...


Thank You...


If You Have Any Queries just Comment Here... 

Restore Windows DLL Files




Many Times We Face The Problem such As Missing DLL files 

Or sometime many programms can not run. System Admins & home


 users are always face this kind of problems & many time they go 


for format & re-installation but after reading this article you don't 


need to waste time in formatting or re-installation just follow the 


steps below & so it fast with only one command

You Can Restore Your DLL & other Windows files just follow the 
steps

Steps :-

Goto Start

Click On Run or simply press Windows+R

Type The Following Command which Shown In Green Color


sfc /scannow

Now Wait Until Process Finish..










This will check all your Windows system files to see if they have 

been edited or changed.

If they have, it should be able to replace them with backups, but if it 

can not find them on your hard drive so it will be necessary to copy 

from your Windows XP Disc... in this case you just insert operating 


system disk it will copy files automatically which are required...

That's it...

Disable & Enable Removable devices with Gpedit



In this article i am going to show you how to disable Removable 

devices. Because in the corporate sectors , schools & colleges 

System administrators face the problem of data security there is 

chance of data copying through removable devices like USB ,Tape 

drives , Floppy Drives, WPD devices, CD/DVD drives etc but now 

don't worry after reading this article you will be able to set rights to 

access the all removable devices. Ok lets start...
First login with administrative account

now go to run & type gpedit.msc > press enter

now navigate to 

User configuration>Administrative Templates>System>Removable Storage Access.

















In the right side you will see all type of removable devices

now double click your selected device 




















example :Removable Device Deny Write access 

& for applying policy Click on Enabled & apply , & if you want to
rollback your setting click on Not Configured.

To apply this setting  you will need restart or log off or 

simply Go to run & type Gpupdate >Enter

That's it Now you are at Secure side...

B Work Smarter...

Enable Telnet in Windows 7




Telnet is a protocol that allows you to connect to remote computers over a TCP/IP network (such as the Internet). You use software called a telnet client on your computer to make a connection to a telnet server (i.e., the remote host/pc). Once you have established connection using telenet service you got remote access to the remote pc


Many System administrators & Network administrators face the problem of  using telnet service with windows7 but how ever windows7 has by default service is not installed for security purpose but it can be install with few steps 


To enable Telnet In Windows7 just follow the steps:


Steps:


Go to control panel


Programs and features 


click on Turn windows feature on or off 

Map Network drive using Command prompt


Many dos or fox pro software needs a map drive for 
loading database files & if there are lots of computer then question arises how to do it shortly. This post will definitely help you to create batch file for do more work in shortest period 

For creating Map drive we must need Shared folder or drive on network.

Following are the steps to Map network drive.

Go to Run

Type CMD

In command prompt type the following command

net use K: \\192.168.0.1\folder













In this case K: is the drive letter for network drive

192.168.0.1 is the ip address & Folder is the name of shared folder

If there is password then it will ask for password just punt the 
password & hit Enter 


If you want to create batch file just copy the code below


echo off


Title Mounting Map drive


net use K: \\192.168.0.1\folder 


exit


Now open your notepad & paste the code & save as mapdrive.bat


You will need to replace Ip adress & Folder path 

That's It 

Now check into My computer you will see the Network drive

How to open Multiple Gmail accounts in same browser



Many time we face the problem of opening multiple G mail in same 


Browser,every time for opening  second Gmail id  we have to first 


sign out first one but now the problem has been solved.




Steps to open multiple Gmail accounts in same browser :

First, Open Gmail Account.

Then , Go to Account Setting

Then Click on
Looking for older account options and your Google Products?Visit the previous version of the Google accounts screen »





Now Click on Multiple sign-in Edit option


Then click on On - Use multiple Google Accounts in the same web browser.


Add caption




Then Click on Save...

That's it... Now you can open multiple Gmail Accounts in same browser....

Thank you for visit...

How To download Youtube Videos Without Downloader



Many Mobile user or beginners asked me for how to download you-


tube videos directly without using any kind of downloader


In this article I am going to show you how to download you-tube 

video's without downloader or download from your Mobile & PC

Following are the steps 

for download you-tube videos directly 

just add ss before your You-tube URL

for example

following is the youtube URL

http://www.youtube.com/watch?v=_f-Q9h-n1PE  

For download just i added ss like 

www.ssyoutube.com/watch?v=_f-Q9h-n1PE

& press Enter then you will see window like this 















That's it...


I hope this article will help you...


any queries comment below

How to ping Multiple pc's using batch file & generate log file



I am working as System admin ,every morning i comes to office i 


need to ping all servers to check they are alive or not & the list of 


server is huge so if i will ping to every server by typing I adress for


every server it will take more time & energy but finally i write a 


batch script which ping all the servers or host on the network & 


saves a log file & all this happens with a single click...


Ok let's start creating batch file.


Copy the code below




@ECHO 
:LOOPSTART
time /T >> Pinglog.txt
ping  192.168.0.1 -n 4 >> Pinglog.txt
ping  192.168.0.2 -n 4 >> Pinglog.txt
ping  192.168.0.3  -n 4 >> Pinglog.txt
ping  192.168.0.4  -n 4 >> Pinglog.txt
ping  192.168.0.5  -n 4 >> Pinglog.txt
ping  192.168.0.6  -n 4 >> Pinglog.txt
pause


Now paste it into notepad & save it as autoping.bat


now the fact is in your case the ip address  will change so you just 


replace the ip  address  with your IP address in the batch file, & 


you can add more ip adresses for ping there is no limit...


To Auto ping just double click the file & it will automatically 


generate pinglog.txt in your batch file's directory by opening 


pinglog.txt you can see the whole report....


That's It ,


Work Smarter...

Add Password To Micosoft Office Files



One of my colleague ask me how can i add password to my Power 


point presentation because he completed the presentation & he 


want to make that read only so people cannot modify & add there 


names to end of the presentation. so hence for i am publishing this 


article so the people will be secure with there hard work...


Ok Lets start protecting the Ms-office Files


First open your file that you have made


Now click on file menu >> Save as 


Now it will ask you for location to save ,in this dialogue box at the


bottom there is option Tools click on tools & select General options. 





























after clicking general options you will see the new dialogue like below...






















Here you will see the option & you can add password to open a


file or Password to modify the file..


That's it., add your desire password , Save it & stay secured....


Work Smarter...