Skip to main content

Change your Ip in less then 1 minute

Change your Ip in less then 1 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.

Comments

Popular posts from this blog

IBM iAccess for windows 7.1 "a system restart is pending" error

 IBM iAccess for windows 7.1 "a system restart is pending" error HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager 1. Look for the following key:  PendingFileRenameOperations or   FileRenameOperations ** 2. Right-click ->  Rename . 3. Add a prefix ### and press Enter. 4. Close regedit and attempt the installation.  Note:  Make sure to go back and remove the ### prefix. The installation should continue.

Webex always using Microphone

 Webex always using Microphone 1). Navigate to Webex settings 2). Devices - Use Ultrasound 3). Remove ticket "Use Ultrasound"

Your organization manages updates on this PC

 Your organization manages updates on this PC We can disable updates from SCCM/WSUS for time being by using below command $currentWU = Get-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” | select -ExpandProperty UseWUServer Set-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” -Value 0 Restart-Service wuauserv Once required updates are installed on Laptop switch back to previous settings Set-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” -Value $currentWU Restart-Service wuauserv