Skip to main content

Windows 开启 UWP 应用的本地网络回环# Powershell command for allow loopback, use with admin

  1. Windows 开启 UWP 应用的本地网络回环

    # Powershell command for allow loopback, use with admin
    # if you need a GUI tool, look: https://apps.microsoft.com/detail/9NTJ6CX698CL?hl=zh-cn&gl=US
    
    foreach($app in $(Get-AppPackage).PackageFamilyName) { CheckNetIsolation.exe LoopbackExempt -a -n="$app" > $null }


    #Windows #Script #Network #Shell
OKHK