From 06664ac92457a27a0d59b986039073da7f7bab61 Mon Sep 17 00:00:00 2001 From: Chris Titus Date: Wed, 13 Sep 2023 19:08:29 -0500 Subject: [PATCH] ipv6 fixup in tweaks json --- config/tweaks.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/tweaks.json b/config/tweaks.json index b7bc843f..68e13ccc 100644 --- a/config/tweaks.json +++ b/config/tweaks.json @@ -2429,18 +2429,18 @@ }, "WPFMiscTweaksDisableipsix": { "InvokeScript": [ - "Disable-NetAdapterBinding -Name '*' -ComponentID ms_tcpip6" + "Disable-NetAdapterBinding -Name \"*\" -ComponentID ms_tcpip6" ], "UndoScript": [ - "Enable-NetAdapterBinding -Name '*' -ComponentID ms_tcpip6" + "Enable-NetAdapterBinding -Name \"*\" -ComponentID ms_tcpip6" ] }, "WPFMiscTweaksEnableipsix": { "InvokeScript": [ - "Enable-NetAdapterBinding -Name '*' -ComponentID ms_tcpip6" + "Enable-NetAdapterBinding -Name \"*\" -ComponentID ms_tcpip6" ], "UndoScript": [ - "Disable-NetAdapterBinding -Name '*' -ComponentID ms_tcpip6" + "Disable-NetAdapterBinding -Name \"*\" -ComponentID ms_tcpip6" ] } }