A few observations:
1. The output from ipconfig /all looks OK. That is, it shows that you have a working connection to your router.
You can confirm this either by opening a web browser and entering 192.168.0.1 in the address bar (which should connect you to your router's web configuration login page) or by opening a Command Prompt window and running the command
ping 192.168.0.1
This should result in something very much like the following, with the key being "0% loss":
C:\Users\Sean>ping 192.168.0.1
Pinging 192.168.0.1 with 32 bytes of data:
Reply from 192.168.0.1: bytes=32 time=2ms TTL=64
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64
Ping statistics for 192.168.0.1:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 2ms, Average = 0ms
2. Even though you seem to have deleted Local Area Connection 9 from Network Connections, it still showed up in the ipconfig output. It's related to a VPN (Virtual Private Network).
3. Did you run the
netsh int ip reset
commands from an Elevated Command Prompt? That is, did you right-click on the shortcut to cmd.exe (or Command Prompt) and select "Run as administrator"?
Did the file c:\reset.log get created? If so, open it (with Notepad) and see what it has to say.
You might also try
netsh int ipv4 reset c:\resetlog.log
4. Let's see if you have Internet connectivity. Open a Command Prompt window, type the following commands and press Enter after each line:
ping google.com
ping 172.217.4.46
ping facebook.com
ping 157.240.3.35
Did you get 0% loss for each command? If not, which commands timed out?