-
Windows 8 brings PowerShell v3 and a whole bunch of PowerShell modules. One such module is NETTCPIP and as the name suggests is about networking. PowerShell v3 automatically loads modules for you so as soon as PowerShell opens try PS> Get-NetIPConfiguration...
-
One of the questions in the recent Scripting Games involved toggling between a wireless and LAN connection. Only one was to be up at any one time. This can be solved using WMI but becomes hugely simpler in Windows 8/2012 as we get a bunch of cmdlets for...
-
In the last post I showed that there was an issue with the way the SetDNSServerSearchOrder of the Win32_NetworkAdapterConfiguration class worked This would work $nic = Get-WmiObject -Class Win32_NetworkAdapterConfiguration -Filter "Index=7"...
-
We have seen how to set the NIC to use DHCP to get its address. This post shows how to set the alternative configuration on the NIC. If you just want APIPA then do nothing – other wise use this script $HKLM = 2147483650 #HKEY_LOCAL_MACHINE...
-
Windows Server 8 & Windows 8 bring a host of new functionality to us. I wanted to try out some of it so created a new VM and installed the OS – went for full GUI for now Opened PowerShell and ran Set-ExecutionPolicy remotesigned Enable-PSRemoting...