Recent content by soccnut

  1. S

    uncommon network settings

    Simple powershell script here. $ip = Get-WmiObject -Class Win32_NetworkAdapterConfiguration -Filter IPEnabled=TRUE if ($ip.IPAddress -eq "192.168.1.100") //this IP is assigned by my home router. { netsh interface ip set dns “Wi-Fi” static 8.8.8.8//set to google public DNS } else { netsh...
  2. S

    uncommon network settings

    Personally feel quite a hassle to remember to click it everytime. My bad, the script will not be checking every few seconds, I will set it to run on boot so it will check only once.
  3. S

    uncommon network settings

    Hi, Thanks a lot for your help. I will implement a script to read from ipconfig every few seconds and use netsh above to change DNS information. For any users in future who may be looking for a solution to a similar problem, there is a GUI utility out there...
  4. S

    uncommon network settings

    huh??? I am not running a VM, did you reply in the wrong thread?
  5. S

    uncommon network settings

    Hi, I have a few problems related to uncommon network configuration. Firstly, under network connections > adapter properties > ipv4 properties, I can choose to obtain DNS server automatically or specify my own DNS server. I would like to be able to choose different DNS servers based on which...
Back
Top