- Click on the Start button, and then click on Devices and Printers.
- In the Devices and Printers window, click on the Add a printer button.
- In the Add Printer wizard, click on the option Add a network, wireless, or Bluetooth printer.
Windows will display a list of available printers.
- Select a printer from the list, or click on the option The printer that I want isn't listed to find the desired printer. (To find a printer, proceed to step 5.
- To find a printer not on the list, perform the following:
- Select the option Add a printer using a TCP/IP address or hostname, and then click on theNext button. (Note: Consult the printer list to find your printer's IP address.)
- Enter the IP address in the Hostname or IP address text area. (As you type the address, Windows also adds the address automatically to the Port name text area, as shown in the example below.)
- Install the driver for your printer by selecting the printer's manufacturer from the Manufacturer and then the model number. (If the model number of your printer isn't listed, click on theWindows Update button to list additional printer models.)
Click on the Next button.
- Select the option Add a printer using a TCP/IP address or hostname, and then click on theNext button. (Note: Consult the printer list to find your printer's IP address.)
- Enter a descriptive name for your printer in the Printer name text area or leave the name that is already filled in, then click on the Next button. (In the example below, "Xerox WorkCentre 7345 PCL6" has been entered for the printer name.)
Note: You can change the printer name at any time.
You should see the following window showing that Windows 7 has started the process of installing the printer: - In the next window, make sure the option Do not share this printer is selected, and then click on theNext button.
If the printer was added successfully, you should see the following window:
- In the message window shown in step 7, click on the Print a test page button if you want to print a test page to verify you can print with the printer, and then click on the Finish button.
- You can view the new printer listing by clicking again on the Start button, and then clicking again onDevices and Printers. You should see the entry for your printer. (In the example below, "Xerox WorkCentre 7345 PCL6" has been added.)
Wednesday, 11 May 2016
Install A Network Printer In Windows 7 / Vista
Google Chrome Keyboard Shortcuts
Google Chrome Shortcuts | Function |
ALT + F4 | Close current window |
ALT + HOME | Open homepage |
ALT + SHIFT +B | Open Bookmark manager |
CTRL + B | Toggle Bookmarks on/off |
CTRL + H | View History |
CTRL + N | Open new window |
CTRL + T | Open new tab |
CTRL + O | Open a file from your computer in Google Chrome |
CTRL + P | Print page |
CTRL + W | Close current tab |
CTRL + 9 | Switch to last tab |
CTRL + SHIFT + B | Open the Bookmark manager |
CTRL + SHIFT + N | Open a new window in incognito mode |
CTRL + SHIFT + T | Reopen the last tab you've closed (Chrome remembers last 10) |
CTRL + TAB | Switch to next tab |
CTRL + PageUp | Switch to previous tab |
CTRL + PageDown | Switch to the next tab |
CTRL + (click hyperlink) | Open link in new tab in the background |
SHIFT + (click hyperlink) | Open link in a new window |
Mozilla Firefox Keyboard Shortcuts
Mozilla Firefox Shortcuts | Function |
ESC | Stop downloading current page |
F5 | Refresh |
F11 | Full screen view |
ALT + HOME | Go to homepage |
ALT + Left Arrow | Back |
ALT + Right Arrow | Forward |
CTR + + | Zoom In |
CTR + - | Zoom Out |
CTRL+ 0 | Zoom Reset |
CTRL + K | Select a search bar |
CTRL + TAB | Switch tabs |
CTRL + D | Add bookmarks |
CTRL + B | Open Bookmarks |
CTRL + P | |
CTRL + R | Reload |
CTRL + T | New Tab |
CTRL + N | New Window |
SHIFT + ENTER | Open link in new window |
Internet Explorer Keyboard Shortcuts
Internet Explorer (IE) Shortcuts | Function |
ESC | Stop downloading current page |
F5 | Refresh page |
F11 | Toggle browser between full-screen and regular view |
ALT + Left Arrow | Back |
ALT + Right Arrow | Forward |
ALT + HOME | Go to homepage |
CTRL + D | Add page to Favorites |
CTRL + F | Find on page |
CTRL + H | Open History |
CTRL + I | Open Favorites |
CTRL + P | |
CTRL + T | Open new tab |
CTRL + TAB | Switch to next tab |
CTRL + W | Close current tab |
CTRL + 9 | Switch to last tab |
CTRL + SHIFT + H | Open History in pinned mode |
CTRL + SHIFT + Q | View list of open tabs |
CTRL + SHIFT + TAB | Switch to previous tab |
Tuesday, 10 May 2016
Lock Folder Without any Software with Password
Really you can lock folder using batch files. So Lock everything.......
Step 1: Open Notepad
First of all open Notepad
Step 2: Copy and Paste
Just copy and paste it to the notepad
@ECHO OFF
title lokendra's-hacking-ideas
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this folder? (Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock Your Secure Folder
set/p "pass=>"
if NOT %pass%== Hello1goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End
title lokendra's-hacking-ideas
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this folder? (Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock Your Secure Folder
set/p "pass=>"
if NOT %pass%== Hello1goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End
Step 3: Save It
Now save it as locker.bat
your saved file will look like this -
your saved file will look like this -
Step 4: Open That
Double click on locker.bat file
A new folder named "MyFolder" will be created.
Now move your all content to this folder.
A new folder named "MyFolder" will be created.
Now move your all content to this folder.
Step 5: Lock
Done. Double click on locker.bat file and it will ask you for locking folder. Type y and hit enter.
Refresh and your folder will disappear means locked.
Refresh and your folder will disappear means locked.
Step 6: How to Open
Double click on locker.bat File and now it will ask for password.
By default the password is Hello1. Enter it and your folder will appear.
By default the password is Hello1. Enter it and your folder will appear.
Note :You can change the password by instead of typing Hello1 type your desired password .Erase the Hello1 and write your desired password . THANKU
Avast Complete Uninstall
Uninstall our software using avastclear
Sometimes it's not possible to uninstall Avast the standard way - using the ADD/REMOVE PROGRAMS in control panel. In this case, you can use our uninstallation utility avastclear.
- Download avastclear.exe on your desktop
- Start Windows in Safe Mode
- Open (execute) the uninstall utility
- If you installed Avast in a different folder than the default, browse for it. (Note: Be careful! The content of any folder you choose will be deleted!)
- Click REMOVE
- Restart your computer
Run Commands Listed below In Alphabetical Order
Program |
Run Command |
Accessibility Controls |
access.cpl |
Accessibility Wizard | accwiz |
Add Hardware Wizard | hdwwiz.cpl |
Add/Remove Programs | appwiz.cpl |
Administrative Tools | control admintools |
Adobe Acrobat ( if installed ) | acrobat |
Adobe Distiller ( if installed ) | acrodist |
Adobe ImageReady ( if installed ) | imageready |
Adobe Photoshop ( if installed ) | photoshop |
Automatic Updates | wuaucpl.cpl |
Basic Media Player | mplay32 |
Bluetooth Transfer Wizard | fsquirt |
Calculator | calc |
Ccleaner ( if installed ) | ccleaner |
C: Drive | c: |
Certificate Manager | cdrtmgr.msc |
Character Map | charmap |
Check Disk Utility | chkdsk |
Chrome ( if installed ) | chrome |
Clipboard Viewer | clipbrd |
Command Prompt | cmd |
Command Prompt | command |
Component Services | dcomcnfg |
Computer Management | compmgmt.msc |
Compare Files | comp |
Control Panel | control |
Create a shared folder Wizard | shrpubw |
Date and Time Properties | timedate.cpl |
DDE Shares | ddeshare |
Device Manager | devmgmt.msc |
Direct X Control Panel ( if installed ) | directx.cpl |
Direct X Troubleshooter | dxdiag |
Disk Cleanup Utility | cleanmgr |
Disk Defragment | dfrg.msc |
Disk Partition Manager | diskmgmt.msc |
Display Properties | control desktop |
Display Properties | desk.cpl |
Display Properties (w/Appearance Tab Preselected ) | control color |
Dr. Watson System Troubleshooting Utility | drwtsn32 |
Driver Verifier Utility | verifier |
Ethereal ( if installed ) | ethereal |
Event Viewer | eventvwr.msc |
Files and Settings Transfer Tool | migwiz |
File Signature Verification Tool | sigverif |
Findfast | findfast.cpl |
Firefox | firefox |
Folders Properties | control folders |
Fonts | fonts |
Fonts Folder | fonts |
Free Cell Card Game | freecell |
Game Controllers | joy.cpl |
Group Policy Editor ( xp pro ) | gpedit.msc |
Hearts Card Game | mshearts |
Help and Support | helpctr |
Hyperterminal | hypertrm |
Hotline Client | hotlineclient |
Iexpress Wizard | iexpress |
Indexing Service | ciadv.msc |
Internet Connection Wizard | icwonn1 |
Internet Properties | inetcpl.cpl |
Internet Setup Wizard | inetwiz |
IP Configuration (Display Connection Configuration) | ipconfig /all |
IP Configuration (Display DNS Cache Contents) | ipconfig /displaydns |
IP Configuration (Delete DNS Cache Contents) | ipconfig /flushdns |
IP Configuration (Release All Connections) | ipconfig /release |
IP Configuration (Renew All Connections) | ipconfig /renew |
IP Configuration (Refreshes DHCP & Re-Registers DNS) | ipconfig /registerdns |
IP Configuration (Display DHCP Class ID) | ipconfig /showclassid |
IP Configuration (Modifies DHCP Class ID) | ipconfig /setclassid |
Java Control Panel ( if installed ) | jpicpl32.cpl |
Java Control Panel ( if installed ) | javaws |
Keyboard Properties | control keyboard |
Local Security Settings | secpol.msc |
Local Users and Groups | lusrmgr.msc |
Logs You Out of Windows | logoff |
Malicious Software Removal Tool | mrt |
Microsoft Access ( if installed ) | access.cpl |
Microsoft Chat | winchat |
Microsoft Excel ( if installed ) | excel |
Microsoft Diskpart | diskpart |
Microsoft Frontpage ( if installed ) | frontpg |
Microsoft Movie Maker | moviemk |
Microsoft Management Console | mmc |
Microsoft Narrator | narrator |
Microsoft Paint | mspaint |
Microsoft Powerpoint | powerpnt |
Microsoft Word ( if installed ) | winword |
Microsoft Syncronization Tool | mobsync |
Minesweeper Game | winmine |
Mouse Properties | control mouse |
Mouse Properties | main.cpl |
MS-Dos Editor | edit |
MS-Dos FTP | ftp |
Nero ( if installed ) | nero |
Netmeeting | conf |
Network Connections | control netconnections |
Network Connections | ncpa.cpl |
Network Setup Wizard | netsetup.cpl |
Notepad | notepad |
Nview Desktop Manager ( if installed ) | nvtuicpl.cpl |
Object Packager | packager |
ODBC Data Source Administrator | odbccp32 |
ODBC Data Source Administrator | odbccp32.cpl |
On Screen Keyboard | osk |
Opens AC3 Filter ( if installed ) | ac3filter.cpl |
Paint | pbrush |
Password Properties | password.cpl |
Performance Monitor | perfmon.msc |
Performance Monitor | perfmon |
Phone and Modem Options | telephon.cpl |
Phone Dialer | dialer |
Pinball Game | pinball |
Power Configuration | powercfg.cpl |
Printers and Faxes | control printers |
Printers Folder | printers |
Private Characters Editor | eudcedit |
Quicktime ( if installed ) | quicktime.cpl |
Quicktime Player ( if installed ) | quicktimeplayer |
Real Player ( if installed ) | realplay |
Regional Settings | intl.cpl |
Registry Editor | regedit |
Registry Editor | regedit32 |
Remote Access Phonebook | rasphone |
Remote Desktop | mstsc |
Removable Storage | ntmsmgr.msc |
Removable Storage Operator Requests | ntmsoprq.msc |
Resultant Set of Policy ( xp pro ) | rsop.msc |
Scanners and Cameras | sticpl.cpl |
Scheduled Tasks | control schedtasks |
Security Center | wscui.cpl |
Services | services.msc |
Shared Folders | fsmgmt.msc |
Sharing Session | rtcshare |
Shuts Down Windows | shutdown |
Sounds Recorder | sndrec32 |
Sounds and Audio | mmsys.cpl |
Spider Solitare Card Game | spider |
SQL Client Configuration | clicongf |
System Configuration Editor | sysedit |
System Configuration Utility | msconfig |
System File Checker Utility ( Scan Immediately ) | sfc /scannow |
System File Checker Utility ( Scan Once At Next Boot ) | sfc /scanonce |
System File Checker Utility ( Scan On Every Boot ) | sfc /scanboot |
System File Checker Utility ( Return to Default Settings) | sfc /revert |
System File Checker Utility ( Purge File Cache ) | sfc /purgecache |
System File Checker Utility ( Set Cache Size to Size x ) | sfc /cachesize=x |
System Information | msinfo32 |
System Properties | sysdm.cpl |
Task Manager | taskmgr |
TCP Tester | tcptest |
Telnet Client | telnet |
Tweak UI ( if installed ) | tweakui |
User Account Management | nusrmgr.cpl |
Utility Manager | utilman |
Volume Serial Number for C: | label |
Volume Control | sndvol32 |
Windows Address Book | wab |
Windows Address Book Import Utility | wabmig |
Windows Backup Utility ( if installed ) | ntbackup |
Windows Explorer | explorer |
Windows Firewall | firewall.cpl |
Windows Installer Details | msiexec |
Windows Magnifier | magnify |
Windows Management Infrastructure | wmimgmt.msc |
Windows Media Player | wmplayer |
Windows Messenger | msnsgs |
Windows Picture Import Wizard (Need camera connected) | wiaacmgr |
Windows System Security Tool | syskey |
Windows Script host settings | wscript |
Widnows Update Launches | wupdmgr |
Windows Version ( shows your windows version ) | winver |
Windows XP Tour Wizard | tourstart |
Wordpad | write |
Subscribe to:
Posts (Atom)