Windows 7 default with PowerShell 2.0, when I downloaded “Windows Management Framework 4.0 “, installed and reboot then update failure, Error Code: 8004402F .
it is due to temp directory on my system environment pointing to Ram Disk….
Turn off Ram disk, set TEMP back to somewhere with physical disk.
M$, you win…..
4.0 comes with better support on networking. All I need is just interface Index after SSL VPN has been established, then add route. Haven’t finished that part though.
Here is example to list connected adapters
1 2 |
get-wmiobject win32_networkadapter -filter "netconnectionstatus = 2" | select netconnectionid, name, InterfaceIndex, netconnectionstatus |