diff --git a/profile.ps1 b/profile.ps1 index e37f213..30aaf56 100644 --- a/profile.ps1 +++ b/profile.ps1 @@ -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