Helping you here

Share This Post

Finding Ip Address Of A Website Using Command Prompt Or CMD



Finding Ip Address Of A Website Using Command Prompt Or CMD
In this tutorial i will teach you to find Ip Address of any website using Command Prompt or in short CMD. Using IP Address you can find location of the website server and do more stuff. I will demostrate this tutorial with Google but you can use this method to find IP Address of any website like twitter, facebook etc. So lets get started.

How to find IP ?

1. Go to Start > Type CMD and press Enter.
2. Now write Ping followed by website URL whose IP you want to find.
finding ip adddress of website
3. It will take less then a second and come up with the results as shown below.
finding ip adddress of website

In  my next post i will show you another easy way to find website IP Address and teach you to use this IP to find its location.
[Read More...]


Change your Ip in less then 1 minute



Change your Ip in less then 1 minute
    
 how to change ip address in less then a minute. For now it will take 2 to 3 minutes but with some practice you can do this within a minute.


  • Click on "Start" in the bottom left corner of the screen.
  • Click on "RUN"
  • Type in "command" and click OK

      You should be now at MSDOS prompt Screen

  • Type "ipconfig /release" just like that, and press "enter"
  • Type "exit" and leave the prompt
  • Right-click on "Network Places" or "My Network Places" on your desktop.
  • Click on "properties"

     Now you should  be on a screen with something titled "Local Area Connection", or something  similar to that, and, if you have a network hooked up, all of your other networks.

  •  Right click on "Local Area Connection" and click "properties"
  • Double-click on the "Internet Protocol (TCP/IP)" from the list under the "General" tab
  • Click on "Use the following IP address" under the "General" tab
  • Create an IP address (It doesn't matter what it is)
  • Press "Tab" and it should automatically fill in the "Subnet Mask" section with default numbers.
  • Press the "Ok" button here
  • Hit the "Ok" button again

     Now you should be back to the "Local Area Connection" screen.

  • Right-click back on "Local Area Connection" and go to properties again.
  • Go back to the "TCP/IP" settings
  • This time, select "Obtain an IP address automatically"
  • Click on "Ok"
  • Hit "Ok" again.
  • Now you have a New IP address.
[Read More...]


10 Amazing Windows Run Commands You Might Not Know About



10 Amazing Windows Run Commands You Might Not Know About
hi friends today i am going to share you some awesome run commands that are very useful for a pc user. these commands are very simple to use and by using it you can save your precious time . so let’s get started

10 Awesome run commands

To use run commands you have to type (windows + R) key and then type your command and press enter to execute it.
run commands

1. Open control panel


control panel
you can open control panel with a simple run command and save your time navigating to setting/control panel
control

2. Clean up junk files


run commands
The most easy way to clean junk files is to clean them through run command.so simple type following command
cleanmgr
> type windows + r and then type cleanmgr ,press enter >it will open up the Windows Disk Cleanup Manager> select the drive you want to clean and click ok

3. Open Computer Management


windows tricks
The command will open Computer Management directly saving a lot of time
compmgmt.msc

4. Disable or enable firewall quickly


firewal
If you want to disable or enable firewall in just seconds then type below command
firewall.cpl

5 . See your computer’s complete system info


system info
to see complete information of your system just type following command
msinfo32

6 .On Screen Keyboard


osk
This command will open open screen keyboard directly on your computer screen.it prevents keyloggers attacks
osk

7. Shutdown computer


To shutdown your pc in seconds type following command
shutdown/logoff

8.Magnifier or a narrator


window magnifier
If you want to use magnifier or a narrator, this command will open up the full utility manager for you
utilman

9. Windows Update Manager


win8
This command directly open windows update manager for you
wuapp

10. Windows WordPad


tricks
With this command you can directly open the default windows wordpad.
write
So friends above commands are very benificial for a windows users and saves a lot of time. hope you liked it, stay tuned.
[Read More...]


Most useful CMD commands everyone should know



most useful cmd tricks
hii friends today i am going to share you some most useful cmd commands. By using these cmd commands you can do many important tasks direct from the cmd.Some are really sounds interesting like changing wallpaper from cmd, changing pc name,generating strong passwords and many more exciting tasks.

CMD (Command Prompt)

Command Prompt, also known as cmd.exe or just cmd (after its executable file name), is the command-line interpreter on OS/2 and eComStation, Windows CE and Windows NT operating systems. It is the counterpart of COMMAND.COM in DOS and Windows 9x systems (where it is also called “MS-DOS Prompt”), or some of the Unix shells used on Unix-like systems. (More advanced Unix shells must be compared with Windows PowerShell, another command-line interpreter of Windows.) source wikipedia

The initial version of Command Prompt for Windows NT was developed by Therese Stowell

Most Useful CMD Commands

cmd tricks
Do not run cmd directly, right click on it and run it as a administrator
–> To create the user
net user pc pc123 /add (pc is user name & pc123 is password of the user)
–> To Check Users–>
net user
–> To check the details of user–>
net user ABC (here ABC is the name of user)
–> To change the password of a user –>
net user ABC *
–> For automatically generate strong password of a user–>
net user ABC /random
–> To delete the user –>
net user ABC /del
–> To see the user name who is login –>
echo %username%
–> To enable administrator user in windows –>
net user administrator /active:yes
–> To disable administrator user in windows –>
net user administrator /active:no
–> How to Stop users from changing their own password –>
net user ABC ABC123 /passwordchg:no
–> How to allow user to change their own password –>
net user ABC ABC123 /passwordchg:yes (here ABC is user name and ABC123 is password)
–> How to set user account expiry date according to our requirement–>
net user ABC ABC123 /expires:mm/dd/yy
–> How to enable password of any window user –>
net user ABC ABC123 /passwordreq:yes (here ABC123 is password of user ABC)
–> How to disable password of any window user –>
net user ABC ABC123 /passwordreq:no
–> How to know the last logged in time of a user in your windows–>
net user administrator | findstr /B /C:”Last logon”
–> How to set password expiry date –>
net accounts /MAXPWAGE:25 (after 25 days password will expire)
–> How to Lock a user account –>
wmic useraccount where name=’ABC’ set disabled=true
–> How to Unlock a user account –>
wmic useraccount where name=’satish’ set disabled=false
–> How to add a user (like ABC) in a group (like WINDOWS) –>
net localgroup WINDOWS ABC /add
–> How to see list of users in a group –>
net localgroup WINDOWS
–> How to delete user from the group –>
net localgroup WINDOWS satish /delete
–> How to Find windows OS version from command line –>
ver
–> How to know more information about window OS –>
systeminfo
–> How to disable Remote desktop direct from command line –>
reg add “HKEY_LOCAL_MACHINE\SYSTEM \CurrentControlSet\Control\Terminal Server” /v fDenyTSConnections /t REG_DWORD /d 1 /f
–> How to enable Remote desktop direct from command line –>
reg add “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server” /v fDenyTSConnections /t REG_DWORD /d 0 /f
–> How to change computer name from command line –>
WMIC computersystem where caption=’currentname’ rename newname
for example –> wmic computersystem where caption=’xp-pc’ rename windows7-pc
–> How to Change windows wallpaper from command line –>
 reg add “HKEY_CURRENT_USER\Control Panel\Desktop” /v Wallpaper /t REG_SZ /d wallpaper_path /f
for example –> to set the image E:\photos\image1.jpg as the wall paper we need to run the command as below.
–># reg add “HKEY_CURRENT_USER\Control Panel\Desktop” /v Wallpaper /t REG_SZ /d E:\photos\image1.bmp /f
–> How to Disable or Enable Windows Automatic updates from command line –
“HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update” /v AUOptions /t REG_DWORD /d 1 /f
–> How to Enable or Enable Windows Automatic updates from command line –
“HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update” /v AUOptions /t REG_DWORD /d 0 /f
–> How to Disable Automatic updates service –>
sc config wuauserv start= disabled
–> How to Stop Automatic updates service –>
net stop wuauserv
[Read More...]


Related Posts Plugin for WordPress, Blogger...
 

Pages

For watching Movies

Contact Form

Name

Email *

Message *

Popular Posts

Return to top of page Copyright © 2014 / 2015 | Pro Theme Design By Mr Kilari