Compare commits

...

11 Commits

Author SHA1 Message Date
cf825cb5ec Compile Winutil 2024-03-27 13:08:31 +00:00
98ee148e65 Fix to original command 2024-03-27 14:07:55 +01:00
554b5be75f Compile Winutil 2024-03-27 13:00:55 +00:00
b5d0dfeb5d Update Winutil 2024-03-27 14:00:30 +01:00
b171c41c72 Compile Winutil 2024-03-27 12:59:04 +00:00
7515143674 IPv6 registry 2024-03-27 13:58:38 +01:00
83f6693e0f Compile Winutil 2024-03-27 12:37:58 +00:00
8918631d8f IPv6 + Teredo 2024-03-27 13:37:28 +01:00
d775654a34 Compile Winutil 2024-03-27 12:23:05 +00:00
f5fe33f69d Change ipv6 disable method 2024-03-27 13:22:41 +01:00
f4dee172ab Compile Winutil 2024-03-27 12:03:25 +00:00
2 changed files with 11485 additions and 11449 deletions

View File

@ -2527,6 +2527,15 @@
"category": "z__Advanced Tweaks - CAUTION",
"panel": "1",
"Order": "a031_",
"registry": [
{
"Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Services\\Tcpip6\\Parameters",
"Name": "DisabledComponents",
"Value": "255",
"OriginalValue": "0",
"Type": "DWord"
}
],
"InvokeScript": [
"Disable-NetAdapterBinding -Name \"*\" -ComponentID ms_tcpip6"
],
@ -2540,6 +2549,15 @@
"category": "z__Advanced Tweaks - CAUTION",
"panel": "1",
"Order": "a030_",
"registry": [
{
"Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Services\\Tcpip6\\Parameters",
"Name": "DisabledComponents",
"Value": "0",
"OriginalValue": "0",
"Type": "DWord"
}
],
"InvokeScript": [
"Enable-NetAdapterBinding -Name \"*\" -ComponentID ms_tcpip6"
],

View File

@ -10,7 +10,7 @@
Author : Chris Titus @christitustech
Runspace Author: @DeveloperDurp
GitHub : https://github.com/ChrisTitusTech
Version : 24.03.21
Version : 24.03.27
#>
param (
[switch]$Debug,
@ -47,7 +47,7 @@ Add-Type -AssemblyName System.Windows.Forms
# Variable to sync between runspaces
$sync = [Hashtable]::Synchronized(@{})
$sync.PSScriptRoot = $PSScriptRoot
$sync.version = "24.03.21"
$sync.version = "24.03.27"
$sync.configs = @{}
$sync.ProcessRunning = $false
@ -9914,6 +9914,15 @@ $sync.configs.tweaks = '{
"category": "z__Advanced Tweaks - CAUTION",
"panel": "1",
"Order": "a031_",
"registry": [
{
"Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Services\\Tcpip6\\Parameters",
"Name": "DisabledComponents",
"Value": "255",
"OriginalValue": "0",
"Type": "DWord"
}
],
"InvokeScript": [
"Disable-NetAdapterBinding -Name \"*\" -ComponentID ms_tcpip6"
],
@ -9927,6 +9936,15 @@ $sync.configs.tweaks = '{
"category": "z__Advanced Tweaks - CAUTION",
"panel": "1",
"Order": "a030_",
"registry": [
{
"Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Services\\Tcpip6\\Parameters",
"Name": "DisabledComponents",
"Value": "0",
"OriginalValue": "0",
"Type": "DWord"
}
],
"InvokeScript": [
"Enable-NetAdapterBinding -Name \"*\" -ComponentID ms_tcpip6"
],