Remove network workarounds

Since discovering that OpenHardwareMonitor data can be access via
the `Get-WmiObject` powershell command there is no longer any need to
read sensor data from a host port, thus removing the need to unblock
WSL2 VM from accessing the Windows host.
This commit is contained in:
Kenneth Benzie 2022-10-01 12:47:23 +01:00
parent 56367b82f5
commit 0f07186aa1

View File

@ -39,9 +39,3 @@ Write-Host -NoNewLine "$([char]0x1b)[6 q"
# Remove these aliases to PowerShell builtins which clobber the actaul exes.
Remove-Item alias:curl
Remove-Item alias:wget
# Allow the VM running WSL2 to access Windows host, setting is not persistent over reboots
New-NetFirewallRule -DisplayName "WSL" -Direction Inbound -InterfaceAlias "vEthernet (WSL)" -Action Allow > $null
# Allow the VM running WSL2 to access Hyper-V virtual machines, setting is not persistent over reboots
Get-NetIPInterface | where {$_.InterfaceAlias -eq 'vEthernet (WSL)' -or $_.InterfaceAlias -eq 'vEthernet (Default Switch)'} | Set-NetIPInterface -Forwarding Enabled