diff --git a/Sophia Script/Sophia Script for Windows 10 LTSC 2019/Functions.ps1 b/Sophia Script/Sophia Script for Windows 10 LTSC 2019/Functions.ps1 index 703866b3..6ed62f08 100644 --- a/Sophia Script/Sophia Script for Windows 10 LTSC 2019/Functions.ps1 +++ b/Sophia Script/Sophia Script for Windows 10 LTSC 2019/Functions.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS The TAB completion for functions and their arguments - Version: v5.3.0 - Date: 04.07.2022 + Version: v5.3.1 + Date: 05.07.2022 Copyright (c) 2014—2022 farag Copyright (c) 2019—2022 farag & Inestic @@ -54,7 +54,7 @@ function Sophia Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC v5.3.0 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows 10 | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC v5.3.1 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows 10 | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" Remove-Module -Name Sophia -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force diff --git a/Sophia Script/Sophia Script for Windows 10 LTSC 2019/Manifest/Sophia.psd1 b/Sophia Script/Sophia Script for Windows 10 LTSC 2019/Manifest/Sophia.psd1 index 633dbd76..6d6956d9 100644 --- a/Sophia Script/Sophia Script for Windows 10 LTSC 2019/Manifest/Sophia.psd1 +++ b/Sophia Script/Sophia Script for Windows 10 LTSC 2019/Manifest/Sophia.psd1 @@ -1,6 +1,6 @@ @{ RootModule = '..\Module\Sophia.psm1' - ModuleVersion = '5.3.0' + ModuleVersion = '5.3.1' GUID = 'a36a65ca-70f9-43df-856c-3048fc5e7f01' Author = 'Dmitry "farag" Nefedov' Copyright = '(c) 2014—2022 farag & Inestic. All rights reserved' diff --git a/Sophia Script/Sophia Script for Windows 10 LTSC 2019/Module/Sophia.psm1 b/Sophia Script/Sophia Script for Windows 10 LTSC 2019/Module/Sophia.psm1 index a2b1a23e..a665b88a 100644 --- a/Sophia Script/Sophia Script for Windows 10 LTSC 2019/Module/Sophia.psm1 +++ b/Sophia Script/Sophia Script for Windows 10 LTSC 2019/Module/Sophia.psm1 @@ -2,8 +2,8 @@ .SYNOPSIS Sophia Script is a PowerShell module for Windows 10 & Windows 11 fine-tuning and automating the routine tasks - Version: v5.3.0 - Date: 04.07.2022 + Version: v5.3.1 + Date: 05.07.2022 Copyright (c) 2014—2022 farag Copyright (c) 2019—2022 farag & Inestic @@ -211,7 +211,7 @@ function Checkings Uri = "https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/master/sophia_script_versions.json" UseBasicParsing = $true } - $LatestRelease = (Invoke-RestMethod @Parameters).Sophia_Script_Windows_10_PowerShell_5_1 + $LatestRelease = (Invoke-RestMethod @Parameters).Sophia_Script_Windows_10_LTSC2019 $CurrentRelease = (Get-Module -Name Sophia).Version.ToString() switch ([System.Version]$LatestRelease -gt [System.Version]$CurrentRelease) { @@ -457,6 +457,10 @@ function DiagnosticDataLevel "Minimal" { # Security level + if (-not (Test-Path -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection)) + { + New-Item -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection -Force + } New-ItemProperty -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection -Name AllowTelemetry -PropertyType DWord -Value 0 -Force New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection -Name MaxTelemetryAllowed -PropertyType DWord -Value 1 -Force @@ -4389,6 +4393,11 @@ function NetworkAdaptersSavePower $Enable ) + if (Get-NetAdapter -Physical | Where-Object -FilterScript {$_.Status -eq "Up"}) + { + $PhysicalAdaptersStatusUp = @((Get-NetAdapter -Physical | Where-Object -FilterScript {$_.Status -eq "Up"}).Name) + } + $Adapters = Get-NetAdapter -Physical | Get-NetAdapterPowerManagement | Where-Object -FilterScript {$_.AllowComputerToTurnOffDevice -ne "Unsupported"} switch ($PSCmdlet.ParameterSetName) @@ -4411,14 +4420,17 @@ function NetworkAdaptersSavePower } } - # All network adapters are turned into "Disconnected" for few seconds, so we need to wait a bit to let them up. - # Otherwise functions below will indicate that there is not the Internet connection. - while - ( - Get-NetAdapter -Physical | ForEach-Object -Process {$_.Status -eq "Disconnected"} - ) + # All network adapters are turned into "Disconnected" for few seconds, so we need to wait a bit to let them up + # Otherwise functions below will indicate that there is no the Internet connection + if ($PhysicalAdaptersStatusUp) { - Start-Sleep -Milliseconds 100 + while + ( + Get-NetAdapter -Physical -Name $PhysicalAdaptersStatusUp | ForEach-Object -Process {$_.Status -eq "Disconnected"} + ) + { + Start-Sleep -Seconds 2 + } } } @@ -6867,15 +6879,15 @@ function InstallDotNetRuntime6 { # https://github.com/dotnet/core/blob/main/release-notes/releases-index.json $Parameters = @{ - Uri = "https://raw.githubusercontent.com/dotnet/core/main/release-notes/releases-index.json" - UseBasicParsing = $true + Uri = "https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/6.0/releases.json" + UseBasicParsing = $true } - $LatestRelease = ((Invoke-RestMethod @Parameters)."releases-index" | Where-Object -FilterScript {$_."channel-version" -eq "6.0"})."latest-release" + $LatestRelease = (Invoke-RestMethod @Parameters)."latest-release" $DownloadsFolder = Get-ItemPropertyValue -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" -Name "{374DE290-123F-4565-9164-39C4925E467B}" # .NET Desktop Runtime x86 $Parameters = @{ - Uri = "https://dotnetcli.azureedge.net/dotnet/Runtime/$LatestRelease/dotnet-runtime-$LatestRelease-win-x64.exe" + Uri = "https://dotnetcli.azureedge.net/dotnet/Runtime/$LatestRelease/dotnet-runtime-$LatestRelease-win-x86.exe" OutFile = "$DownloadsFolder\dotnet-runtime-$LatestRelease-win-x86.exe" UseBasicParsing = $true Verbose = $true @@ -6886,7 +6898,7 @@ function InstallDotNetRuntime6 # .NET Desktop Runtime x64 $Parameters = @{ - Uri = "https://dotnetcli.azureedge.net/dotnet/Runtime/$LatestRelease/dotnet-runtime-$LatestRelease-win-x86.exe" + Uri = "https://dotnetcli.azureedge.net/dotnet/Runtime/$LatestRelease/dotnet-runtime-$LatestRelease-win-x64.exe" OutFile = "$DownloadsFolder\dotnet-runtime-$LatestRelease-win-x64.exe" UseBasicParsing = $true Verbose = $true @@ -6904,7 +6916,7 @@ function InstallDotNetRuntime6 (Get-ItemProperty -Path HKCU:\Environment -Name TEMP).TEMP [System.IO.Path]::GetTempPath() #> - Get-ChildItem -Path "$DownloadsFolder\dotnet-runtime-$LatestRelease-win-x86.exe", "$DownloadsFolder\dotnet-runtime-$LatestRelease-win-x64.exe", "$env:TEMP\Microsoft_.NET_Runtime_*.log" -Force | Remove-Item -Recurse -Force -ErrorAction Ignore + Get-ChildItem -Path "$DownloadsFolder\dotnet-runtime-$LatestRelease-win-x86.exe", "$DownloadsFolder\dotnet-runtime-$LatestRelease-win-x64.exe", "$env:TEMP\Microsoft_Windows_Desktop_Runtime*.log" -Force | Remove-Item -Recurse -Force -ErrorAction Ignore } } catch [System.Net.WebException] @@ -9216,8 +9228,8 @@ function MultipleInvokeContext #> function UpdateLGPEPolicies { - Write-Information -MessageData "" -InformationAction Continue Write-Verbose -Message $Localization.Patient -Verbose + Write-Information -MessageData "" -InformationAction Continue # Local Machine policies paths to scan recursively $LM_Paths = @( @@ -9244,7 +9256,6 @@ function UpdateLGPEPolicies { try { - Write-Information -MessageData "" -InformationAction Continue Write-Verbose -Message $Item.Replace("{}", "") -Verbose $Parameters = @{ @@ -9293,7 +9304,6 @@ function UpdateLGPEPolicies { try { - Write-Information -MessageData "" -InformationAction Continue Write-Verbose -Message $Item.Replace("{}", "") -Verbose $Parameters = @{ @@ -9317,6 +9327,19 @@ function UpdateLGPEPolicies } } + # Re-build GPT.ini if it doesn't exist + if (-not (Test-Path -Path $env:SystemRoot\System32\GroupPolicy\GPT.ini)) + { + Start-Process -FilePath gpedit.msc + Start-Sleep -Seconds 2 + + # Get mmc.exe's Id with its' argument (gpedit.msc) to close + $gpedit_Process_ID = (Get-CimInstance -ClassName CIM_Process | Where-Object -FilterScript { + $_.Name -eq "mmc.exe" + } | Where-Object -FilterScript {$_.CommandLine -match "GPEDIT.MSC"}).Handle + Get-Process -Id $gpedit_Process_ID | Stop-Process -Force + } + Update-GptIniVersion -Path $env:SystemRoot\System32\GroupPolicy\GPT.ini -PolicyType Machine, User # Apply the new policy immediately diff --git a/Sophia Script/Sophia Script for Windows 10 LTSC 2019/Sophia.ps1 b/Sophia Script/Sophia Script for Windows 10 LTSC 2019/Sophia.ps1 index 251eb4ec..9b0f2603 100644 --- a/Sophia Script/Sophia Script for Windows 10 LTSC 2019/Sophia.ps1 +++ b/Sophia Script/Sophia Script for Windows 10 LTSC 2019/Sophia.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS Default preset file for "Sophia Script for Windows 10 LTSC 2019" - Version: v5.3.0 - Date: 04.07.2022 + Version: v5.3.1 + Date: 05.07.2022 Copyright (c) 2014—2022 farag Copyright (c) 2019—2022 farag & Inestic @@ -71,7 +71,7 @@ param Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC v5.3.0 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC v5.3.1 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" Remove-Module -Name Sophia -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force diff --git a/Sophia Script/Sophia Script for Windows 10 LTSC 2021/Functions.ps1 b/Sophia Script/Sophia Script for Windows 10 LTSC 2021/Functions.ps1 index 5b906f81..77eb8b40 100644 --- a/Sophia Script/Sophia Script for Windows 10 LTSC 2021/Functions.ps1 +++ b/Sophia Script/Sophia Script for Windows 10 LTSC 2021/Functions.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS The TAB completion for functions and their arguments - Version: v5.13.0 - Date: 04.07.2022 + Version: v5.13.1 + Date: 05.07.2022 Copyright (c) 2014—2022 farag Copyright (c) 2019—2022 farag & Inestic @@ -54,7 +54,7 @@ function Sophia Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.13.0 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.13.1 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" Remove-Module -Name Sophia -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force diff --git a/Sophia Script/Sophia Script for Windows 10 LTSC 2021/Manifest/Sophia.psd1 b/Sophia Script/Sophia Script for Windows 10 LTSC 2021/Manifest/Sophia.psd1 index ca32d92a..82e41a81 100644 --- a/Sophia Script/Sophia Script for Windows 10 LTSC 2021/Manifest/Sophia.psd1 +++ b/Sophia Script/Sophia Script for Windows 10 LTSC 2021/Manifest/Sophia.psd1 @@ -1,6 +1,6 @@ @{ RootModule = '..\Module\Sophia.psm1' - ModuleVersion = '5.13.0' + ModuleVersion = '5.13.1' GUID = '109cc881-c42b-45af-a74a-550781989d6a' Author = 'Dmitry "farag" Nefedov' Copyright = '(c) 2014—2022 farag & Inestic. All rights reserved' diff --git a/Sophia Script/Sophia Script for Windows 10 LTSC 2021/Module/Sophia.psm1 b/Sophia Script/Sophia Script for Windows 10 LTSC 2021/Module/Sophia.psm1 index 5acf80b6..7bdac107 100644 --- a/Sophia Script/Sophia Script for Windows 10 LTSC 2021/Module/Sophia.psm1 +++ b/Sophia Script/Sophia Script for Windows 10 LTSC 2021/Module/Sophia.psm1 @@ -2,8 +2,8 @@ .SYNOPSIS Sophia Script is a PowerShell module for Windows 10 & Windows 11 fine-tuning and automating the routine tasks - Version: v5.13.0 - Date: 04.07.2022 + Version: v5.13.1 + Date: 05.07.2022 Copyright (c) 2014—2022 farag Copyright (c) 2019—2022 farag & Inestic @@ -68,7 +68,7 @@ function Checkings } # Detect the OS build version - switch ((Get-CimInstance -ClassName Win32_OperatingSystem).BuildNumber -eq 19048) + switch ((Get-CimInstance -ClassName Win32_OperatingSystem).BuildNumber -eq 19044) { $false { @@ -239,7 +239,7 @@ function Checkings Uri = "https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/master/sophia_script_versions.json" UseBasicParsing = $true } - $LatestRelease = (Invoke-RestMethod @Parameters).Sophia_Script_Windows_10_PowerShell_5_1 + $LatestRelease = (Invoke-RestMethod @Parameters).Sophia_Script_Windows_10_LTSC2021 $CurrentRelease = (Get-Module -Name Sophia).Version.ToString() switch ([System.Version]$LatestRelease -gt [System.Version]$CurrentRelease) { @@ -485,6 +485,10 @@ function DiagnosticDataLevel "Minimal" { # Security level + if (-not (Test-Path -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection)) + { + New-Item -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection -Force + } New-ItemProperty -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection -Name AllowTelemetry -PropertyType DWord -Value 0 -Force New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection -Name MaxTelemetryAllowed -PropertyType DWord -Value 1 -Force @@ -4747,6 +4751,11 @@ function NetworkAdaptersSavePower $Enable ) + if (Get-NetAdapter -Physical | Where-Object -FilterScript {$_.Status -eq "Up"}) + { + $PhysicalAdaptersStatusUp = @((Get-NetAdapter -Physical | Where-Object -FilterScript {$_.Status -eq "Up"}).Name) + } + $Adapters = Get-NetAdapter -Physical | Get-NetAdapterPowerManagement | Where-Object -FilterScript {$_.AllowComputerToTurnOffDevice -ne "Unsupported"} switch ($PSCmdlet.ParameterSetName) @@ -4769,14 +4778,17 @@ function NetworkAdaptersSavePower } } - # All network adapters are turned into "Disconnected" for few seconds, so we need to wait a bit to let them up. - # Otherwise functions below will indicate that there is not the Internet connection. - while - ( - Get-NetAdapter -Physical | ForEach-Object -Process {$_.Status -eq "Disconnected"} - ) + # All network adapters are turned into "Disconnected" for few seconds, so we need to wait a bit to let them up + # Otherwise functions below will indicate that there is no the Internet connection + if ($PhysicalAdaptersStatusUp) { - Start-Sleep -Milliseconds 100 + while + ( + Get-NetAdapter -Physical -Name $PhysicalAdaptersStatusUp | ForEach-Object -Process {$_.Status -eq "Disconnected"} + ) + { + Start-Sleep -Seconds 2 + } } } @@ -7448,56 +7460,46 @@ function InstallDotNetRuntime6 return } - if (Get-AppxPackage -Name Microsoft.DesktopAppInstaller) - { - # .NET Desktop Runtime x86 - winget install --id=Microsoft.DotNet.DesktopRuntime.6 --architecture x86 --exact --accept-source-agreements - # .NET Desktop Runtime x64 - winget install --id=Microsoft.DotNet.DesktopRuntime.6 --architecture x64 --exact --accept-source-agreements + # https://github.com/dotnet/core/blob/main/release-notes/releases-index.json + $Parameters = @{ + Uri = "https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/6.0/releases.json" + UseBasicParsing = $true } - else - { - # https://github.com/dotnet/core/blob/main/release-notes/releases-index.json - $Parameters = @{ - Uri = "https://raw.githubusercontent.com/dotnet/core/main/release-notes/releases-index.json" - UseBasicParsing = $true - } - $LatestRelease = ((Invoke-RestMethod @Parameters)."releases-index" | Where-Object -FilterScript {$_."channel-version" -eq "6.0"})."latest-release" - $DownloadsFolder = Get-ItemPropertyValue -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" -Name "{374DE290-123F-4565-9164-39C4925E467B}" + $LatestRelease = (Invoke-RestMethod @Parameters)."latest-release" + $DownloadsFolder = Get-ItemPropertyValue -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" -Name "{374DE290-123F-4565-9164-39C4925E467B}" - # .NET Desktop Runtime x86 - $Parameters = @{ - Uri = "https://dotnetcli.azureedge.net/dotnet/Runtime/$LatestRelease/dotnet-runtime-$LatestRelease-win-x64.exe" - OutFile = "$DownloadsFolder\dotnet-runtime-$LatestRelease-win-x86.exe" - UseBasicParsing = $true - Verbose = $true - } - Invoke-WebRequest @Parameters + # .NET Desktop Runtime x86 + $Parameters = @{ + Uri = "https://dotnetcli.azureedge.net/dotnet/Runtime/$LatestRelease/dotnet-runtime-$LatestRelease-win-x86.exe" + OutFile = "$DownloadsFolder\dotnet-runtime-$LatestRelease-win-x86.exe" + UseBasicParsing = $true + Verbose = $true + } + Invoke-WebRequest @Parameters - Start-Process -FilePath "$DownloadsFolder\dotnet-runtime-$LatestRelease-win-x86.exe" -ArgumentList "/install /passive /norestart" -Wait + Start-Process -FilePath "$DownloadsFolder\dotnet-runtime-$LatestRelease-win-x86.exe" -ArgumentList "/install /passive /norestart" -Wait - # .NET Desktop Runtime x64 - $Parameters = @{ - Uri = "https://dotnetcli.azureedge.net/dotnet/Runtime/$LatestRelease/dotnet-runtime-$LatestRelease-win-x86.exe" - OutFile = "$DownloadsFolder\dotnet-runtime-$LatestRelease-win-x64.exe" - UseBasicParsing = $true - Verbose = $true - } - Invoke-WebRequest @Parameters + # .NET Desktop Runtime x64 + $Parameters = @{ + Uri = "https://dotnetcli.azureedge.net/dotnet/Runtime/$LatestRelease/dotnet-runtime-$LatestRelease-win-x64.exe" + OutFile = "$DownloadsFolder\dotnet-runtime-$LatestRelease-win-x64.exe" + UseBasicParsing = $true + Verbose = $true + } + Invoke-WebRequest @Parameters - Start-Process -FilePath "$DownloadsFolder\dotnet-runtime-$LatestRelease-win-x64.exe" -ArgumentList "/install /passive /norestart" -Wait + Start-Process -FilePath "$DownloadsFolder\dotnet-runtime-$LatestRelease-win-x64.exe" -ArgumentList "/install /passive /norestart" -Wait - <# - PowerShell 5.1 (7.2 too) interprets the 8.3 file name literally, if an environment variable contains a non-latin word, - so you won't be able to remove "$env:TEMP\Microsoft_Windows_Desktop_Runtime*.log" file explicitly + <# + PowerShell 5.1 (7.2 too) interprets the 8.3 file name literally, if an environment variable contains a non-latin word, + so you won't be able to remove "$env:TEMP\Microsoft_Windows_Desktop_Runtime*.log" file explicitly - Another ways to get normal path to %TEMP% - [Environment]::GetEnvironmentVariable("TEMP", "User") - (Get-ItemProperty -Path HKCU:\Environment -Name TEMP).TEMP - [System.IO.Path]::GetTempPath() - #> - Get-ChildItem -Path "$DownloadsFolder\dotnet-runtime-$LatestRelease-win-x86.exe", "$DownloadsFolder\dotnet-runtime-$LatestRelease-win-x64.exe", "$env:TEMP\Microsoft_.NET_Runtime_*.log" -Force | Remove-Item -Recurse -Force -ErrorAction Ignore - } + Another ways to get normal path to %TEMP% + [Environment]::GetEnvironmentVariable("TEMP", "User") + (Get-ItemProperty -Path HKCU:\Environment -Name TEMP).TEMP + [System.IO.Path]::GetTempPath() + #> + Get-ChildItem -Path "$DownloadsFolder\dotnet-runtime-$LatestRelease-win-x86.exe", "$DownloadsFolder\dotnet-runtime-$LatestRelease-win-x64.exe", "$env:TEMP\Microsoft_Windows_Desktop_Runtime*.log" -Force | Remove-Item -Recurse -Force -ErrorAction Ignore } catch [System.Net.WebException] { @@ -10411,8 +10413,8 @@ function MultipleInvokeContext #> function UpdateLGPEPolicies { - Write-Information -MessageData "" -InformationAction Continue Write-Verbose -Message $Localization.Patient -Verbose + Write-Information -MessageData "" -InformationAction Continue # Local Machine policies paths to scan recursively $LM_Paths = @( @@ -10439,7 +10441,6 @@ function UpdateLGPEPolicies { try { - Write-Information -MessageData "" -InformationAction Continue Write-Verbose -Message $Item.Replace("{}", "") -Verbose $Parameters = @{ @@ -10488,7 +10489,6 @@ function UpdateLGPEPolicies { try { - Write-Information -MessageData "" -InformationAction Continue Write-Verbose -Message $Item.Replace("{}", "") -Verbose $Parameters = @{ @@ -10512,6 +10512,19 @@ function UpdateLGPEPolicies } } + # Re-build GPT.ini if it doesn't exist + if (-not (Test-Path -Path $env:SystemRoot\System32\GroupPolicy\GPT.ini)) + { + Start-Process -FilePath gpedit.msc + Start-Sleep -Seconds 2 + + # Get mmc.exe's Id with its' argument (gpedit.msc) to close + $gpedit_Process_ID = (Get-CimInstance -ClassName CIM_Process | Where-Object -FilterScript { + $_.Name -eq "mmc.exe" + } | Where-Object -FilterScript {$_.CommandLine -match "GPEDIT.MSC"}).Handle + Get-Process -Id $gpedit_Process_ID | Stop-Process -Force + } + Update-GptIniVersion -Path $env:SystemRoot\System32\GroupPolicy\GPT.ini -PolicyType Machine, User # Apply the new policy immediately diff --git a/Sophia Script/Sophia Script for Windows 10 LTSC 2021/Sophia.ps1 b/Sophia Script/Sophia Script for Windows 10 LTSC 2021/Sophia.ps1 index c149c2b2..a211f26a 100644 --- a/Sophia Script/Sophia Script for Windows 10 LTSC 2021/Sophia.ps1 +++ b/Sophia Script/Sophia Script for Windows 10 LTSC 2021/Sophia.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS Default preset file for "Sophia Script for Windows 10 LTSC 2021" - Version: v5.13.0 - Date: 04.07.2022 + Version: v5.13.1 + Date: 05.07.2022 Copyright (c) 2014—2022 farag Copyright (c) 2019—2022 farag & Inestic @@ -71,7 +71,7 @@ param Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.13.0 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.13.1 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" Remove-Module -Name Sophia -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force diff --git a/Sophia Script/Sophia Script for Windows 10 PowerShell 7/Functions.ps1 b/Sophia Script/Sophia Script for Windows 10 PowerShell 7/Functions.ps1 index a52f9179..19db8700 100644 --- a/Sophia Script/Sophia Script for Windows 10 PowerShell 7/Functions.ps1 +++ b/Sophia Script/Sophia Script for Windows 10 PowerShell 7/Functions.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS The TAB completion for functions and their arguments - Version: v5.13.0 - Date: 04.07.2022 + Version: v5.13.1 + Date: 05.07.2022 Copyright (c) 2014—2022 farag Copyright (c) 2019—2022 farag & Inestic @@ -54,7 +54,7 @@ function Sophia Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.13.0 (PowerShell 7) | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.13.1 (PowerShell 7) | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" Remove-Module -Name Sophia -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force diff --git a/Sophia Script/Sophia Script for Windows 10 PowerShell 7/Manifest/Sophia.psd1 b/Sophia Script/Sophia Script for Windows 10 PowerShell 7/Manifest/Sophia.psd1 index 83acb3c1..d6de423a 100644 --- a/Sophia Script/Sophia Script for Windows 10 PowerShell 7/Manifest/Sophia.psd1 +++ b/Sophia Script/Sophia Script for Windows 10 PowerShell 7/Manifest/Sophia.psd1 @@ -1,6 +1,6 @@ @{ RootModule = '..\Module\Sophia.psm1' - ModuleVersion = '5.13.0' + ModuleVersion = '5.13.1' GUID = 'aa0b47a7-1770-4b5d-8c9f-cc6c505bcc7a' Author = 'Dmitry "farag" Nefedov' Copyright = '(c) 2014—2022 farag & Inestic. All rights reserved' diff --git a/Sophia Script/Sophia Script for Windows 10 PowerShell 7/Module/Sophia.psm1 b/Sophia Script/Sophia Script for Windows 10 PowerShell 7/Module/Sophia.psm1 index c605221a..541557fd 100644 --- a/Sophia Script/Sophia Script for Windows 10 PowerShell 7/Module/Sophia.psm1 +++ b/Sophia Script/Sophia Script for Windows 10 PowerShell 7/Module/Sophia.psm1 @@ -2,8 +2,8 @@ .SYNOPSIS Sophia Script is a PowerShell module for Windows 10 & Windows 11 fine-tuning and automating the routine tasks - Version: v5.13.0 - Date: 04.07.2022 + Version: v5.13.1 + Date: 05.07.2022 Copyright (c) 2014—2022 farag Copyright (c) 2019—2022 farag & Inestic @@ -216,7 +216,7 @@ function Checkings ) if (($PendingActions | Test-Path) -contains $true) { - Write-Warning -Message "`n$($Localization.RebootPending)" + Write-Warning -Message $Localization.RebootPending exit } @@ -244,7 +244,7 @@ function Checkings Uri = "https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/master/sophia_script_versions.json" UseBasicParsing = $true } - $LatestRelease = (Invoke-RestMethod @Parameters).Sophia_Script_Windows_10_PowerShell_5_1 + $LatestRelease = (Invoke-RestMethod @Parameters).Sophia_Script_Windows_10_PowerShell_7 $CurrentRelease = (Get-Module -Name Sophia).Version.ToString() switch ([System.Version]$LatestRelease -gt [System.Version]$CurrentRelease) { @@ -499,11 +499,19 @@ function DiagnosticDataLevel if (Get-WindowsEdition -Online | Where-Object -FilterScript {($_.Edition -like "Enterprise*") -or ($_.Edition -eq "Education")}) { # Security level + if (-not (Test-Path -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection)) + { + New-Item -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection -Force + } New-ItemProperty -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection -Name AllowTelemetry -PropertyType DWord -Value 0 -Force } else { # Required diagnostic data + if (-not (Test-Path -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection)) + { + New-Item -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection -Force + } New-ItemProperty -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection -Name AllowTelemetry -PropertyType DWord -Value 1 -Force } New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection -Name MaxTelemetryAllowed -PropertyType DWord -Value 1 -Force @@ -5700,6 +5708,11 @@ function NetworkAdaptersSavePower $Enable ) + if (Get-NetAdapter -Physical | Where-Object -FilterScript {$_.Status -eq "Up"}) + { + $PhysicalAdaptersStatusUp = @((Get-NetAdapter -Physical | Where-Object -FilterScript {$_.Status -eq "Up"}).Name) + } + $Adapters = Get-NetAdapter -Physical | Get-NetAdapterPowerManagement | Where-Object -FilterScript {$_.AllowComputerToTurnOffDevice -ne "Unsupported"} switch ($PSCmdlet.ParameterSetName) @@ -5722,14 +5735,17 @@ function NetworkAdaptersSavePower } } - # All network adapters are turned into "Disconnected" for few seconds, so we need to wait a bit to let them up. - # Otherwise functions below will indicate that there is not the Internet connection. - while - ( - Get-NetAdapter -Physical | ForEach-Object -Process {$_.Status -eq "Disconnected"} - ) + # All network adapters are turned into "Disconnected" for few seconds, so we need to wait a bit to let them up + # Otherwise functions below will indicate that there is no the Internet connection + if ($PhysicalAdaptersStatusUp) { - Start-Sleep -Milliseconds 100 + while + ( + Get-NetAdapter -Physical -Name $PhysicalAdaptersStatusUp | ForEach-Object -Process {$_.Status -eq "Disconnected"} + ) + { + Start-Sleep -Seconds 2 + } } } @@ -8498,10 +8514,10 @@ function InstallDotNetRuntime6 { # https://github.com/dotnet/core/blob/main/release-notes/releases-index.json $Parameters = @{ - Uri = "https://raw.githubusercontent.com/dotnet/core/main/release-notes/releases-index.json" - UseBasicParsing = $true + Uri = "https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/6.0/releases.json" + UseBasicParsing = $true } - $LatestRelease = ((Invoke-RestMethod @Parameters)."releases-index" | Where-Object -FilterScript {$_."channel-version" -eq "6.0"})."latest-release" + $LatestRelease = (Invoke-RestMethod @Parameters)."latest-release" $DownloadsFolder = Get-ItemPropertyValue -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" -Name "{374DE290-123F-4565-9164-39C4925E467B}" # .NET Desktop Runtime x86 @@ -9249,6 +9265,7 @@ function UninstallUWPApps # Photos (and Video Editor) "Microsoft.Windows.Photos", "Microsoft.Photos.MediaEngineDLC", + "Microsoft.RawImageExtension" # Calculator "Microsoft.WindowsCalculator", @@ -9416,7 +9433,7 @@ function UninstallUWPApps Write-Verbose -Message $Localization.Patient -Verbose $AppxPackages = Get-AppxPackage -PackageTypeFilter Bundle -AllUsers:$AllUsers | Where-Object -FilterScript {$_.Name -notin $ExcludedAppxPackages} - $PackagesIds = [Windows.Management.Deployment.PackageManager]::new().FindPackages().AdditionalTypeData[[Collections.IEnumerable].TypeHandle] | Select-Object -Property DisplayName -ExpandProperty Id | Select-Object -Property Name, DisplayName + $PackagesIds = [Windows.Management.Deployment.PackageManager]::new().FindPackages() | Select-Object -Property DisplayName -ExpandProperty Id | Select-Object -Property Name, DisplayName foreach ($AppxPackage in $AppxPackages) { @@ -9767,7 +9784,7 @@ function RestoreUWPApps # You cannot retrieve packages using -PackageTypeFilter Bundle, otherwise you won't get the InstallLocation attribute. It can be retrieved only by comparing with $Bundles $Bundles = (Get-AppXPackage -PackageTypeFilter Bundle -AllUsers).Name $AppxPackages = Get-AppxPackage -AllUsers | Where-Object -FilterScript {$_.PackageUserInformation -match "Staged"} | Where-Object -FilterScript {$_.Name -in $Bundles} - $PackagesIds = [Windows.Management.Deployment.PackageManager]::new().FindPackages().AdditionalTypeData[[Collections.IEnumerable].TypeHandle] | Select-Object -Property DisplayName -ExpandProperty Id | Select-Object -Property Name, DisplayName + $PackagesIds = [Windows.Management.Deployment.PackageManager]::new().FindPackages() | Select-Object -Property DisplayName -ExpandProperty Id | Select-Object -Property Name, DisplayName foreach ($AppxPackage in $AppxPackages) { @@ -12853,8 +12870,8 @@ function UseStoreOpenWith #> function UpdateLGPEPolicies { - Write-Information -MessageData "" -InformationAction Continue Write-Verbose -Message $Localization.Patient -Verbose + Write-Information -MessageData "" -InformationAction Continue # Local Machine policies paths to scan recursively $LM_Paths = @( @@ -12881,7 +12898,6 @@ function UpdateLGPEPolicies { try { - Write-Information -MessageData "" -InformationAction Continue Write-Verbose -Message $Item.Replace("{}", "") -Verbose $Parameters = @{ @@ -12930,7 +12946,6 @@ function UpdateLGPEPolicies { try { - Write-Information -MessageData "" -InformationAction Continue Write-Verbose -Message $Item.Replace("{}", "") -Verbose $Parameters = @{ @@ -12954,6 +12969,19 @@ function UpdateLGPEPolicies } } + # Re-build GPT.ini if it doesn't exist + if (-not (Test-Path -Path $env:SystemRoot\System32\GroupPolicy\GPT.ini)) + { + Start-Process -FilePath gpedit.msc + Start-Sleep -Seconds 2 + + # Get mmc.exe's Id with its' argument (gpedit.msc) to close + $gpedit_Process_ID = (Get-CimInstance -ClassName CIM_Process | Where-Object -FilterScript { + $_.Name -eq "mmc.exe" + } | Where-Object -FilterScript {$_.CommandLine -match "GPEDIT.MSC"}).Handle + Get-Process -Id $gpedit_Process_ID | Stop-Process -Force + } + Update-GptIniVersion -Path $env:SystemRoot\System32\GroupPolicy\GPT.ini -PolicyType Machine, User # Apply the new policy immediately diff --git a/Sophia Script/Sophia Script for Windows 10 PowerShell 7/Sophia.ps1 b/Sophia Script/Sophia Script for Windows 10 PowerShell 7/Sophia.ps1 index 058a45d6..876faea4 100644 --- a/Sophia Script/Sophia Script for Windows 10 PowerShell 7/Sophia.ps1 +++ b/Sophia Script/Sophia Script for Windows 10 PowerShell 7/Sophia.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS Default preset file for "Sophia Script for Windows 10 (PowerShell 7)" - Version: v5.13.0 - Date: 04.07.2022 + Version: v5.13.1 + Date: 05.07.2022 Copyright (c) 2014—2022 farag Copyright (c) 2019—2022 farag & Inestic @@ -71,7 +71,7 @@ param Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.13.0 (PowerShell 7) | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.13.1 (PowerShell 7) | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" Remove-Module -Name Sophia -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force diff --git a/Sophia Script/Sophia Script for Windows 10 PowerShell 7/bin/Microsoft.Windows.SDK.NET.dll b/Sophia Script/Sophia Script for Windows 10 PowerShell 7/bin/Microsoft.Windows.SDK.NET.dll deleted file mode 100644 index ffe1c278..00000000 Binary files a/Sophia Script/Sophia Script for Windows 10 PowerShell 7/bin/Microsoft.Windows.SDK.NET.dll and /dev/null differ diff --git a/Sophia Script/Sophia Script for Windows 10 PowerShell 7/bin/WinRT.Runtime.dll b/Sophia Script/Sophia Script for Windows 10 PowerShell 7/bin/WinRT.Runtime.dll deleted file mode 100644 index 83a4082e..00000000 Binary files a/Sophia Script/Sophia Script for Windows 10 PowerShell 7/bin/WinRT.Runtime.dll and /dev/null differ diff --git a/Sophia Script/Sophia Script for Windows 10/Functions.ps1 b/Sophia Script/Sophia Script for Windows 10/Functions.ps1 index 15b68799..8c2d786d 100644 --- a/Sophia Script/Sophia Script for Windows 10/Functions.ps1 +++ b/Sophia Script/Sophia Script for Windows 10/Functions.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS The TAB completion for functions and their arguments - Version: v5.13.0 - Date: 04.07.2022 + Version: v5.13.1 + Date: 05.07.2022 Copyright (c) 2014—2022 farag Copyright (c) 2019—2022 farag & Inestic @@ -54,7 +54,7 @@ function Sophia Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.13.0 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.13.1 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" Remove-Module -Name Sophia -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force diff --git a/Sophia Script/Sophia Script for Windows 10/Manifest/Sophia.psd1 b/Sophia Script/Sophia Script for Windows 10/Manifest/Sophia.psd1 index be678562..087aa757 100644 --- a/Sophia Script/Sophia Script for Windows 10/Manifest/Sophia.psd1 +++ b/Sophia Script/Sophia Script for Windows 10/Manifest/Sophia.psd1 @@ -1,6 +1,6 @@ @{ RootModule = '..\Module\Sophia.psm1' - ModuleVersion = '5.13.0' + ModuleVersion = '5.13.1' GUID = '109cc881-c42b-45af-a74a-550781989d6a' Author = 'Dmitry "farag" Nefedov' Copyright = '(c) 2014—2022 farag & Inestic. All rights reserved' diff --git a/Sophia Script/Sophia Script for Windows 10/Module/Sophia.psm1 b/Sophia Script/Sophia Script for Windows 10/Module/Sophia.psm1 index 11ac9961..9302ea8b 100644 --- a/Sophia Script/Sophia Script for Windows 10/Module/Sophia.psm1 +++ b/Sophia Script/Sophia Script for Windows 10/Module/Sophia.psm1 @@ -2,8 +2,8 @@ .SYNOPSIS Sophia Script is a PowerShell module for Windows 10 & Windows 11 fine-tuning and automating the routine tasks - Version: v5.13.0 - Date: 04.07.2022 + Version: v5.13.1 + Date: 05.07.2022 Copyright (c) 2014—2022 farag Copyright (c) 2019—2022 farag & Inestic @@ -494,14 +494,22 @@ function DiagnosticDataLevel if (Get-WindowsEdition -Online | Where-Object -FilterScript {($_.Edition -like "Enterprise*") -or ($_.Edition -eq "Education")}) { # Security level + if (-not (Test-Path -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection)) + { + New-Item -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection -Force + } New-ItemProperty -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection -Name AllowTelemetry -PropertyType DWord -Value 0 -Force } else { # Required diagnostic data + if (-not (Test-Path -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection)) + { + New-Item -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection -Force + } New-ItemProperty -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection -Name AllowTelemetry -PropertyType DWord -Value 1 -Force } - New-ItemProperty -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection -Name MaxTelemetryAllowed -PropertyType DWord -Value 1 -Force + New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection -Name MaxTelemetryAllowed -PropertyType DWord -Value 1 -Force New-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack -Name ShowedToastAtLevel -PropertyType DWord -Value 1 -Force } @@ -5679,6 +5687,11 @@ function NetworkAdaptersSavePower $Enable ) + if (Get-NetAdapter -Physical | Where-Object -FilterScript {$_.Status -eq "Up"}) + { + $PhysicalAdaptersStatusUp = @((Get-NetAdapter -Physical | Where-Object -FilterScript {$_.Status -eq "Up"}).Name) + } + $Adapters = Get-NetAdapter -Physical | Get-NetAdapterPowerManagement | Where-Object -FilterScript {$_.AllowComputerToTurnOffDevice -ne "Unsupported"} switch ($PSCmdlet.ParameterSetName) @@ -5701,14 +5714,17 @@ function NetworkAdaptersSavePower } } - # All network adapters are turned into "Disconnected" for few seconds, so we need to wait a bit to let them up. - # Otherwise functions below will indicate that there is not the Internet connection. - while - ( - Get-NetAdapter -Physical | ForEach-Object -Process {$_.Status -eq "Disconnected"} - ) + # All network adapters are turned into "Disconnected" for few seconds, so we need to wait a bit to let them up + # Otherwise functions below will indicate that there is no the Internet connection + if ($PhysicalAdaptersStatusUp) { - Start-Sleep -Milliseconds 100 + while + ( + Get-NetAdapter -Physical -Name $PhysicalAdaptersStatusUp | ForEach-Object -Process {$_.Status -eq "Disconnected"} + ) + { + Start-Sleep -Seconds 2 + } } } @@ -8477,10 +8493,10 @@ function InstallDotNetRuntime6 { # https://github.com/dotnet/core/blob/main/release-notes/releases-index.json $Parameters = @{ - Uri = "https://raw.githubusercontent.com/dotnet/core/main/release-notes/releases-index.json" - UseBasicParsing = $true + Uri = "https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/6.0/releases.json" + UseBasicParsing = $true } - $LatestRelease = ((Invoke-RestMethod @Parameters)."releases-index" | Where-Object -FilterScript {$_."channel-version" -eq "6.0"})."latest-release" + $LatestRelease = (Invoke-RestMethod @Parameters)."latest-release" $DownloadsFolder = Get-ItemPropertyValue -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" -Name "{374DE290-123F-4565-9164-39C4925E467B}" # .NET Desktop Runtime x86 @@ -9218,6 +9234,7 @@ function UninstallUWPApps # Photos (and Video Editor) "Microsoft.Windows.Photos", "Microsoft.Photos.MediaEngineDLC", + "Microsoft.RawImageExtension" # Calculator "Microsoft.WindowsCalculator", @@ -12805,8 +12822,8 @@ function UseStoreOpenWith #> function UpdateLGPEPolicies { - Write-Information -MessageData "" -InformationAction Continue Write-Verbose -Message $Localization.Patient -Verbose + Write-Information -MessageData "" -InformationAction Continue # Local Machine policies paths to scan recursively $LM_Paths = @( @@ -12833,7 +12850,6 @@ function UpdateLGPEPolicies { try { - Write-Information -MessageData "" -InformationAction Continue Write-Verbose -Message $Item.Replace("{}", "") -Verbose $Parameters = @{ @@ -12882,7 +12898,6 @@ function UpdateLGPEPolicies { try { - Write-Information -MessageData "" -InformationAction Continue Write-Verbose -Message $Item.Replace("{}", "") -Verbose $Parameters = @{ @@ -12906,6 +12921,19 @@ function UpdateLGPEPolicies } } + # Re-build GPT.ini if it doesn't exist + if (-not (Test-Path -Path $env:SystemRoot\System32\GroupPolicy\GPT.ini)) + { + Start-Process -FilePath gpedit.msc + Start-Sleep -Seconds 2 + + # Get mmc.exe's Id with its' argument (gpedit.msc) to close + $gpedit_Process_ID = (Get-CimInstance -ClassName CIM_Process | Where-Object -FilterScript { + $_.Name -eq "mmc.exe" + } | Where-Object -FilterScript {$_.CommandLine -match "GPEDIT.MSC"}).Handle + Get-Process -Id $gpedit_Process_ID | Stop-Process -Force + } + Update-GptIniVersion -Path $env:SystemRoot\System32\GroupPolicy\GPT.ini -PolicyType Machine, User # Apply the new policy immediately diff --git a/Sophia Script/Sophia Script for Windows 10/Sophia.ps1 b/Sophia Script/Sophia Script for Windows 10/Sophia.ps1 index acbc29f4..f32ec2e5 100644 --- a/Sophia Script/Sophia Script for Windows 10/Sophia.ps1 +++ b/Sophia Script/Sophia Script for Windows 10/Sophia.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS Default preset file for "Sophia Script for Windows 10" - Version: v5.13.0 - Date: 04.07.2022 + Version: v5.13.1 + Date: 05.07.2022 Copyright (c) 2014—2022 farag Copyright (c) 2019—2022 farag & Inestic @@ -71,7 +71,7 @@ param Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.13.0 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.13.1 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" Remove-Module -Name Sophia -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force diff --git a/Sophia Script/Sophia Script for Windows 11 PowerShell 7/Functions.ps1 b/Sophia Script/Sophia Script for Windows 11 PowerShell 7/Functions.ps1 index 38191969..1841e720 100644 --- a/Sophia Script/Sophia Script for Windows 11 PowerShell 7/Functions.ps1 +++ b/Sophia Script/Sophia Script for Windows 11 PowerShell 7/Functions.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS The TAB completion for functions and their arguments - Version: v6.1.0 - Date: 04.07.2022 + Version: v6.1.1 + Date: 05.07.2022 Copyright (c) 2014—2022 farag Copyright (c) 2019—2022 farag & Inestic @@ -54,7 +54,7 @@ function Sophia Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.1.0 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.1.1 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" Remove-Module -Name Sophia -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force diff --git a/Sophia Script/Sophia Script for Windows 11 PowerShell 7/Manifest/Sophia.psd1 b/Sophia Script/Sophia Script for Windows 11 PowerShell 7/Manifest/Sophia.psd1 index f52917d9..da7868da 100644 --- a/Sophia Script/Sophia Script for Windows 11 PowerShell 7/Manifest/Sophia.psd1 +++ b/Sophia Script/Sophia Script for Windows 11 PowerShell 7/Manifest/Sophia.psd1 @@ -1,6 +1,6 @@ @{ RootModule = '..\Module\Sophia.psm1' - ModuleVersion = '6.1.0' + ModuleVersion = '6.1.1' GUID = '109cc881-c42b-45af-a74a-550781989d6a' Author = 'Dmitry "farag" Nefedov' Copyright = '(c) 2014—2022 farag & Inestic. All rights reserved' diff --git a/Sophia Script/Sophia Script for Windows 11 PowerShell 7/Module/Sophia.psm1 b/Sophia Script/Sophia Script for Windows 11 PowerShell 7/Module/Sophia.psm1 index 5cffba79..552244f8 100644 --- a/Sophia Script/Sophia Script for Windows 11 PowerShell 7/Module/Sophia.psm1 +++ b/Sophia Script/Sophia Script for Windows 11 PowerShell 7/Module/Sophia.psm1 @@ -2,8 +2,8 @@ .SYNOPSIS Sophia Script is a PowerShell module for Windows 10 & Windows 11 fine-tuning and automating the routine tasks - Version: v6.1.0 - Date: 04.07.2022 + Version: v6.1.1 + Date: 05.07.2022 Copyright (c) 2014—2022 farag Copyright (c) 2019—2022 farag & Inestic @@ -237,7 +237,7 @@ function Checkings Uri = "https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/master/sophia_script_versions.json" UseBasicParsing = $true } - $LatestRelease = (Invoke-RestMethod @Parameters).Sophia_Script_Windows_11_PowerShell_5_1 + $LatestRelease = (Invoke-RestMethod @Parameters).Sophia_Script_Windows_11_PowerShell_7 $CurrentRelease = (Get-Module -Name Sophia).Version.ToString() switch ([System.Version]$LatestRelease -gt [System.Version]$CurrentRelease) { @@ -492,11 +492,19 @@ function DiagnosticDataLevel if (Get-WindowsEdition -Online | Where-Object -FilterScript {($_.Edition -like "Enterprise*") -or ($_.Edition -eq "Education")}) { # Diagnostic data off + if (-not (Test-Path -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection)) + { + New-Item -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection -Force + } New-ItemProperty -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection -Name AllowTelemetry -PropertyType DWord -Value 0 -Force } else { # Send required diagnostic data + if (-not (Test-Path -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection)) + { + New-Item -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection -Force + } New-ItemProperty -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection -Name AllowTelemetry -PropertyType DWord -Value 1 -Force } New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection -Name MaxTelemetryAllowed -PropertyType DWord -Value 1 -Force @@ -5256,6 +5264,11 @@ function NetworkAdaptersSavePower $Enable ) + if (Get-NetAdapter -Physical | Where-Object -FilterScript {$_.Status -eq "Up"}) + { + $PhysicalAdaptersStatusUp = @((Get-NetAdapter -Physical | Where-Object -FilterScript {$_.Status -eq "Up"}).Name) + } + $Adapters = Get-NetAdapter -Physical | Get-NetAdapterPowerManagement | Where-Object -FilterScript {$_.AllowComputerToTurnOffDevice -ne "Unsupported"} switch ($PSCmdlet.ParameterSetName) @@ -5278,14 +5291,17 @@ function NetworkAdaptersSavePower } } - # All network adapters are turned into "Disconnected" for few seconds, so we need to wait a bit to let them up. - # Otherwise functions below will indicate that there is not the Internet connection. - while - ( - Get-NetAdapter -Physical | ForEach-Object -Process {$_.Status -eq "Disconnected"} - ) + # All network adapters are turned into "Disconnected" for few seconds, so we need to wait a bit to let them up + # Otherwise functions below will indicate that there is no the Internet connection + if ($PhysicalAdaptersStatusUp) { - Start-Sleep -Milliseconds 100 + while + ( + Get-NetAdapter -Physical -Name $PhysicalAdaptersStatusUp | ForEach-Object -Process {$_.Status -eq "Disconnected"} + ) + { + Start-Sleep -Seconds 2 + } } } @@ -8090,10 +8106,10 @@ function InstallDotNetRuntime6 { # https://github.com/dotnet/core/blob/main/release-notes/releases-index.json $Parameters = @{ - Uri = "https://raw.githubusercontent.com/dotnet/core/main/release-notes/releases-index.json" - UseBasicParsing = $true + Uri = "https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/6.0/releases.json" + UseBasicParsing = $true } - $LatestRelease = ((Invoke-RestMethod @Parameters)."releases-index" | Where-Object -FilterScript {$_."channel-version" -eq "6.0"})."latest-release" + $LatestRelease = (Invoke-RestMethod @Parameters)."latest-release" $DownloadsFolder = Get-ItemPropertyValue -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" -Name "{374DE290-123F-4565-9164-39C4925E467B}" # .NET Desktop Runtime x86 @@ -8561,6 +8577,7 @@ function UninstallUWPApps # Photos (and Video Editor) "Microsoft.Windows.Photos", "Microsoft.Photos.MediaEngineDLC", + "Microsoft.RawImageExtension" # HEVC Video Extensions from Device Manufacturer "Microsoft.HEVCVideoExtension", @@ -8752,7 +8769,7 @@ function UninstallUWPApps $AppxPackages += Get-AppxPackage -Name SpotifyAB.SpotifyMusic -AllUsers:$AllUsers | Select-Object -Index 0 } - $PackagesIds = [Windows.Management.Deployment.PackageManager]::new().FindPackages().AdditionalTypeData[[Collections.IEnumerable].TypeHandle] | Select-Object -Property DisplayName -ExpandProperty Id | Select-Object -Property Name, DisplayName + $PackagesIds = [Windows.Management.Deployment.PackageManager]::new().FindPackages() | Select-Object -Property DisplayName -ExpandProperty Id | Select-Object -Property Name, DisplayName foreach ($AppxPackage in $AppxPackages) { @@ -9118,7 +9135,7 @@ function RestoreUWPApps $AppxPackages += Get-AppxPackage -Name SpotifyAB.SpotifyMusic -AllUsers | Where-Object -FilterScript {$_.PackageUserInformation -match "Staged"} | Select-Object -Index 0 } - $PackagesIds = [Windows.Management.Deployment.PackageManager]::new().FindPackages().AdditionalTypeData[[Collections.IEnumerable].TypeHandle] | Select-Object -Property DisplayName -ExpandProperty Id | Select-Object -Property Name, DisplayName + $PackagesIds = [Windows.Management.Deployment.PackageManager]::new().FindPackages() | Select-Object -Property DisplayName -ExpandProperty Id | Select-Object -Property Name, DisplayName foreach ($AppxPackage in $AppxPackages) { @@ -12143,8 +12160,8 @@ function Windows10ContextMenu #> function UpdateLGPEPolicies { - Write-Information -MessageData "" -InformationAction Continue Write-Verbose -Message $Localization.Patient -Verbose + Write-Information -MessageData "" -InformationAction Continue # Local Machine policies paths to scan recursively $LM_Paths = @( @@ -12171,7 +12188,6 @@ function UpdateLGPEPolicies { try { - Write-Information -MessageData "" -InformationAction Continue Write-Verbose -Message $Item.Replace("{}", "") -Verbose $Parameters = @{ @@ -12220,7 +12236,6 @@ function UpdateLGPEPolicies { try { - Write-Information -MessageData "" -InformationAction Continue Write-Verbose -Message $Item.Replace("{}", "") -Verbose $Parameters = @{ @@ -12244,6 +12259,19 @@ function UpdateLGPEPolicies } } + # Re-build GPT.ini if it doesn't exist + if (-not (Test-Path -Path $env:SystemRoot\System32\GroupPolicy\GPT.ini)) + { + Start-Process -FilePath gpedit.msc + Start-Sleep -Seconds 2 + + # Get mmc.exe's Id with its' argument (gpedit.msc) to close + $gpedit_Process_ID = (Get-CimInstance -ClassName CIM_Process | Where-Object -FilterScript { + $_.Name -eq "mmc.exe" + } | Where-Object -FilterScript {$_.CommandLine -match "GPEDIT.MSC"}).Handle + Get-Process -Id $gpedit_Process_ID | Stop-Process -Force + } + Update-GptIniVersion -Path $env:SystemRoot\System32\GroupPolicy\GPT.ini -PolicyType Machine, User # Apply the new policy immediately diff --git a/Sophia Script/Sophia Script for Windows 11 PowerShell 7/Sophia.ps1 b/Sophia Script/Sophia Script for Windows 11 PowerShell 7/Sophia.ps1 index e23f9cfe..f60bc53c 100644 --- a/Sophia Script/Sophia Script for Windows 11 PowerShell 7/Sophia.ps1 +++ b/Sophia Script/Sophia Script for Windows 11 PowerShell 7/Sophia.ps1 @@ -1,62 +1,3 @@ -<# - .SYNOPSIS - Default preset file for "Sophia Script for Windows 11" - - Version: v6.1.0 - Date: 04.07.2022 - - Copyright (c) 2014—2022 farag - Copyright (c) 2019—2022 farag & Inestic - - Thanks to all https://forum.ru-board.com members involved - - .DESCRIPTION - Place the "#" char before function if you don't want to run it - Remove the "#" char before function if you want to run it - Every tweak in the preset file has its' corresponding function to restore the default settings - - .EXAMPLE Run the whole script - .\Sophia.ps1 - - .EXAMPLE Run the script by specifying the module functions as an argument - .\Sophia.ps1 -Functions "DiagTrackService -Disable", "DiagnosticDataLevel -Minimal", UninstallUWPApps - - .EXAMPLE Download and expand the latest Sophia Script version archive (without running) according which Windows and PowerShell versions it is run on - irm script.sophi.app -useb | iex - - .NOTES - Supported Windows 11 versions - Version: 21H2/22H2 - Build: 22000.739+, 22509+ - Editions: Home/Pro/Enterprise - - .NOTES - Set execution policy to be able to run scripts only in the current PowerShell session: - Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process -Force - - .NOTES - To use the TAB completion for functions and their arguments dot source the Function.ps1 script first: - . .\Function.ps1 (with a dot at the beginning) - Read more in the Functions.ps1 file - - .LINK GitHub link - https://github.com/farag2/Sophia-Script-for-Windows - - .LINK Telegram channel & group - https://t.me/sophianews - https://t.me/sophia_chat - - .NOTES - https://forum.ru-board.com/topic.cgi?forum=62&topic=30617#15 - https://habr.com/company/skillfactory/blog/553800/ - https://forums.mydigitallife.net/threads/powershell-windows-10-sophia-script.81675/ - https://www.reddit.com/r/PowerShell/comments/go2n5v/powershell_script_setup_windows_10/ - - .LINK Authors - https://github.com/farag2 - https://github.com/Inestic -#> - #Requires -RunAsAdministrator #Requires -Version 7.2 @@ -70,7 +11,7 @@ param Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.1.0 (PowerShell 7) | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.1.1 (PowerShell 7) | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" Remove-Module -Name Sophia -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force @@ -109,1429 +50,198 @@ if ($Functions) exit } -#region Protection -<# - The mandatory checkings. If you want to disable a warning message about whether the preset file was customized, remove the "-Warning" argument - Please, do not comment out this function - Обязательные проверки. Чтобы выключить предупреждение о необходимости настройки пресет-файла, удалите аргумент "-Warning" - Пожалуйста, не комментируйте данную функцию -#> -Checkings -Warning - -<# - Enable script logging. Log will be recorded into the script folder - To stop logging just close console or type "Stop-Transcript" - Включить логирование работы скрипта. Лог будет записываться в папку скрипта - Чтобы остановить логгирование, закройте консоль или наберите "Stop-Transcript" -#> -# Logging +#region Protection -# Create a restore point -# Создать точку восстановления +Checkings -Warning CreateRestorePoint + #endregion Protection #region Privacy & Telemetry -<# - Disable the "Connected User Experiences and Telemetry" service (DiagTrack), and block the connection for the Unified Telemetry Client Outbound Traffic - Disabling the "Connected User Experiences and Telemetry" service (DiagTrack) can cause you not being able to get Xbox achievements anymore - Отключить службу "Функциональные возможности для подключенных пользователей и телеметрия" (DiagTrack) и блокировать соединение для исходящего трафик клиента единой телеметрии - Отключение службы "Функциональные возможности для подключенных пользователей и телеметрия" (DiagTrack) может привести к тому, что вы больше не сможете получать достижения Xbox -#> DiagTrackService -Disable - -# Enable the "Connected User Experiences and Telemetry" service (DiagTrack), and allow the connection for the Unified Telemetry Client Outbound Traffic (default value) -# Включить службу "Функциональные возможности для подключенных пользователей и телеметрия" (DiagTrack) и разрешить подключение для исходящего трафик клиента единой телеметрии (значение по умолчанию) -# DiagTrackService -Enable - -# Set the diagnostic data collection to minimum -# Установить уровень сбора диагностических данных ОС на минимальный DiagnosticDataLevel -Minimal - -# Set the diagnostic data collection to default (default value) -# Установить уровень сбора диагностических данных ОС по умолчанию (значение по умолчанию) -# DiagnosticDataLevel -Default - -# Turn off the Windows Error Reporting -# Отключить запись отчетов об ошибках Windows ErrorReporting -Disable - -# Turn on the Windows Error Reporting (default value) -# Включить отчеты об ошибках Windows (значение по умолчанию) -# ErrorReporting -Enable - -# Change the feedback frequency to "Never" -# Изменить частоту формирования отзывов на "Никогда" FeedbackFrequency -Never - -# Change the feedback frequency to "Automatically" (default value) -# Изменить частоту формирования отзывов на "Автоматически" (значение по умолчанию) -# FeedbackFrequency -Automatically - -# Turn off the diagnostics tracking scheduled tasks -# Отключить задачи диагностического отслеживания ScheduledTasks -Disable - -# Turn on the diagnostics tracking scheduled tasks (default value) -# Включить задачи диагностического отслеживания (значение по умолчанию) -# ScheduledTasks -Enable - -# Do not use sign-in info to automatically finish setting up device after an update -# Не использовать данные для входа для автоматического завершения настройки устройства после перезапуска SigninInfo -Disable - -# Use sign-in info to automatically finish setting up device after an update (default value) -# Использовать данные для входа, чтобы автоматически завершить настройку после обновления (значение по умолчанию) -# SigninInfo -Enable - -# Do not let websites provide locally relevant content by accessing language list -# Не позволять веб-сайтам предоставлять местную информацию за счет доступа к списку языков LanguageListAccess -Disable - -# Let websites provide locally relevant content by accessing language list (default value) -# Позволить веб-сайтам предоставлять местную информацию за счет доступа к списку языков (значение по умолчанию) -# LanguageListAccess -Enable - -# Do not let apps show me personalized ads by using my advertising ID -# Не разрешать приложениям показывать персонализированную рекламу с помощью моего идентификатора рекламы AdvertisingID -Disable - -# Let apps show me personalized ads by using my advertising ID (default value) -# Разрешить приложениям показывать персонализированную рекламу с помощью моего идентификатора рекламы (значение по умолчанию) -# AdvertisingID -Enable - -# Hide the Windows welcome experiences after updates and occasionally when I sign in to highlight what's new and suggested -# Скрывать экран приветствия Windows после обновлений и иногда при входе, чтобы сообщить о новых функциях и предложениях WindowsWelcomeExperience -Hide - -# Show the Windows welcome experiences after updates and occasionally when I sign in to highlight what's new and suggested (default value) -# Показывать экран приветствия Windows после обновлений и иногда при входе, чтобы сообщить о новых функциях и предложениях (значение по умолчанию) -# WindowsWelcomeExperience -Show - -# Get tips and suggestions when I use Windows (default value) -# Получать советы и предложения при использованию Windows (значение по умолчанию) WindowsTips -Enable - -# Do not get tips and suggestions when I use Windows -# Не получать советы и предложения при использованию Windows -# WindowsTips -Disable - -# Hide from me suggested content in the Settings app -# Скрывать рекомендуемое содержимое в приложении "Параметры" SettingsSuggestedContent -Hide - -# Show me suggested content in the Settings app (default value) -# Показывать рекомендуемое содержимое в приложении "Параметры" (значение по умолчанию) -# SettingsSuggestedContent -Show - -# Turn off automatic installing suggested apps -# Отключить автоматическую установку рекомендованных приложений AppsSilentInstalling -Disable - -# Turn on automatic installing suggested apps (default value) -# Включить автоматическую установку рекомендованных приложений (значение по умолчанию) -# AppsSilentInstalling -Enable - -# Disable suggestions on how I can set up my device -# Не показывать предложения по настройке устройства WhatsNewInWindows -Disable - -# Let Microsoft offer you tailored expereinces based on the diagnostic data setting you have chosen (default value) -# Разрешите корпорации Майкософт использовать ваши диагностические данные для улучшения вашей работы со службами Майкрософт с помощью персонализированных советов, рекламы и рекомендаций (значение по умолчанию) -# WhatsNewInWindows -Enable - -# Don't let Microsoft use your diagnostic data for personalized tips, ads, and recommendations -# Не разрешать корпорации Майкрософт использовать диагностические данные персонализированных советов, рекламы и рекомендаций TailoredExperiences -Disable - -# Let Microsoft use your diagnostic data for personalized tips, ads, and recommendations (default value) -# Разрешить корпорации Майкрософт использовать диагностические данные для персонализированных советов, рекламы и рекомендаций (значение по умолчанию) -# TailoredExperiences -Enable - -# Disable Bing search in the Start Menu -# Отключить в меню "Пуск" поиск через Bing BingSearch -Disable -# Enable Bing search in the Start Menu (default value) -# Включить поиск через Bing в меню "Пуск" (значение по умолчанию) -# BingSearch -Enable #endregion Privacy & Telemetry #region UI & Personalization -# Show the "This PC" icon on Desktop -# Отобразить значок "Этот компьютер" на рабочем столе -ThisPC -Show - -# Hide the "This PC" icon on Desktop (default value) -# Скрыть "Этот компьютер" на рабочем столе (значение по умолчанию) -# ThisPC -Hide -# Do not use item check boxes -# Не использовать флажки для выбора элементов +ThisPC -Show CheckBoxes -Disable - -# Use check item check boxes (default value) -# Использовать флажки для выбора элементов (значение по умолчанию) -# CheckBoxes -Enable - -# Show hidden files, folders, and drives -# Отобразить скрытые файлы, папки и диски HiddenItems -Enable - -# Do not show hidden files, folders, and drives (default value) -# Не показывать скрытые файлы, папки и диски (значение по умолчанию) -# HiddenItems -Disable - -# Show the file name extensions -# Отобразить расширения имён файлов FileExtensions -Show - -# Hide the file name extensions (default value) -# Скрывать расширения имён файлов файлов (значение по умолчанию) -# FileExtensions -Hide - -# Show folder merge conflicts -# Не скрывать конфликт слияния папок MergeConflicts -Show - -# Hide folder merge conflicts (default value) -# Скрывать конфликт слияния папок (значение по умолчанию) -# MergeConflicts -Hide - -# Open File Explorer to "This PC" -# Открывать проводник для "Этот компьютер" OpenFileExplorerTo -ThisPC - -# Open File Explorer to Quick access (default value) -# Открывать проводник для "Быстрый доступ" (значение по умолчанию) -# OpenFileExplorerTo -QuickAccess - -# Disable the File Explorer compact mode (default value) -# Отключить компактный вид проводника (значение по умолчанию) FileExplorerCompactMode -Disable - -# Enable the File Explorer compact mode -# Включить компактный вид проводника -# FileExplorerCompactMode -Enable - -# Do not show sync provider notification within File Explorer -# Не показывать уведомления поставщика синхронизации в проводнике OneDriveFileExplorerAd -Hide - -# Show sync provider notification within File Explorer (default value) -# Показывать уведомления поставщика синхронизации в проводнике (значение по умолчанию) -# OneDriveFileExplorerAd -Show - -# When I snap a window, do not show what I can snap next to it -# При прикреплении окна не показывать, что можно прикрепить рядом с ним -SnapAssist -Disable - -# When I snap a window, show what I can snap next to it (default value) -# При прикреплении окна показывать, что можно прикрепить рядом с ним (значение по умолчанию) -# SnapAssist -Enable - -# Show snap layouts when I hover over a windows's maximaze button (default value) -# Показывать макеты прикрепления, частью которых является приложение, при наведении указателя мыши на кнопки панели задач (значение по умолчанию) SnapAssistFlyout -Enable - -# Hide snap layouts when I hover over a windows's maximaze button -# Не показывать макеты прикрепления, частью которых является приложение, при наведении указателя мыши на кнопки панели задач -# SnapAssistFlyout -Disable - -# Show the file transfer dialog box in the detailed mode -# Отображать диалоговое окно передачи файлов в развернутом виде +SnapAssist -Disable FileTransferDialog -Detailed - -# Show the file transfer dialog box in the compact mode (default value) -# Отображать диалоговое окно передачи файлов в свернутом виде (значение по умолчанию) -# FileTransferDialog -Compact - -# Display the recycle bin files delete confirmation dialog -# Запрашивать подтверждение на удаление файлов в корзину RecycleBinDeleteConfirmation -Enable - -# Do not display the recycle bin files delete confirmation dialog (default value) -# Не запрашивать подтверждение на удаление файлов в корзину (значение по умолчанию) -# RecycleBinDeleteConfirmation -Disable - -# Hide recently used files in Quick access -# Скрыть недавно использовавшиеся файлы на панели быстрого доступа QuickAccessRecentFiles -Hide - -# Show recently used files in Quick access (default value) -# Показать недавно использовавшиеся файлы на панели быстрого доступа (значение по умолчанию) -# QuickAccessRecentFiles -Show - -# Hide frequently used folders in Quick access -# Скрыть недавно используемые папки на панели быстрого доступа QuickAccessFrequentFolders -Hide - -# Show frequently used folders in Quick access (default value) -# Показать часто используемые папки на панели быстрого доступа (значение по умолчанию) -# QuickAccessFrequentFolders -Show - -# Set the taskbar alignment to the center (default value) -# Установить выравнивание панели задач по центру (значение по умолчанию) TaskbarAlignment -Center - -# Set the taskbar alignment to the left -# Установить выравнивание панели задач по левому краю -# TaskbarAlignment -Left - -# Hide the search button from the taskbar -# Скрыть кнопку поиска с панели задач TaskbarSearch -Hide - -# Show the search icon on the taskbar -# Отобразить кнопку поиска на панели задач -# TaskbarSearch -Show - -# Hide the Task view button from the taskbar -# Скрыть кнопку "Представление задач" с панели задач TaskViewButton -Hide - -# Show the Task view button on the taskbar (default value) -# Отобразить кнопку "Представление задач" на панели задач (значение по умолчанию) -# TaskViewButton -Show - -# Hide the widgets icon on the taskbar -# Скрыть кнопку "Мини-приложения" с панели задач TaskbarWidgets -Hide - -# Show the widgets icon on the taskbar (default value) -# Отобразить кнопку "Мини-приложения" на панели задач (значение по умолчанию) -# TaskbarWidgets -Show - -# Hide the Chat icon (Microsoft Teams) on the taskbar -# Скрыть кнопку чата (Microsoft Teams) с панели задач TaskbarChat -Hide - -# Show the Chat icon (Microsoft Teams) on the taskbar (default value) -# Отобразить кнопку чата (Microsoft Teams) на панели задач (значение по умолчанию) -# TaskbarChat -Show - -# Unpin the "Microsoft Edge", "Microsoft Store" shortcuts from the taskbar -# Открепить ярлыки "Microsoft Edge", "Microsoft Store" или "Почта" от панели задач -UnpinTaskbarShortcuts -Shortcuts Edge, Store - -# View the Control Panel icons by large icons -# Просмотр иконок Панели управления как: крупные значки ControlPanelView -LargeIcons - -# View the Control Panel icons by small icons -# Просмотр иконок Панели управления как: маленькие значки -# ControlPanelView -SmallIcons - -# View the Control Panel icons by category (default value) -# Просмотр иконок Панели управления как: категория (значение по умолчанию) -# ControlPanelView -Category - -# Set the default Windows mode to dark -# Установить режим Windows по умолчанию на темный WindowsColorMode -Dark - -# Set the default Windows mode to light (default value) -# Установить режим Windows по умолчанию на светлый (значение по умолчанию) -# WindowsColorMode -Light - -# Set the default app mode to dark -# Установить цвет режима приложения на темный AppColorMode -Dark - -# Set the default app mode to light (default value) -# Установить цвет режима приложения на светлый (значение по умолчанию) -# AppColorMode -Light - -# Hide first sign-in animation after the upgrade -# Скрывать анимацию при первом входе в систему после обновления FirstLogonAnimation -Disable - -# Show first sign-in animation after the upgrade (default value) -# Показывать анимацию при первом входе в систему после обновления (значение по умолчанию) -# FirstLogonAnimation -Enable - -# Set the quality factor of the JPEG desktop wallpapers to maximum -# Установить коэффициент качества обоев рабочего стола в формате JPEG на максимальный JPEGWallpapersQuality -Max - -# Set the quality factor of the JPEG desktop wallpapers to default -# Установить коэффициент качества обоев рабочего стола в формате JPEG по умолчанию -# JPEGWallpapersQuality -Default - -<# - Start Task Manager in the expanded mode - Function works only on 22000 build due to Windows 11 22H2 has a new Task Manager with the new UI - - Запускать Диспетчера задач в развернутом виде - Функция работает только на 22000 билде, так как Windows 11 22H2 идет с обновленным диспетчером задач -#> TaskManagerWindow -Expanded - -<# - Start Task Manager in the compact mode (default value) - Function works only on 22000 build due to Windows 11 22H2 has a new Task Manager with the new UI - - Запускать Диспетчера задач в свернутом виде (значение по умолчанию) - Функция работает только на 22000 билде, так как Windows 11 22H2 идет с обновленным диспетчером задач -#> -# TaskManagerWindow -Compact - -# Notify me when a restart is required to finish updating -# Уведомлять меня о необходимости перезагрузки для завершения обновления RestartNotification -Show - -# Do not notify me when a restart is required to finish updating (default value) -# Не yведомлять меня о необходимости перезагрузки для завершения обновления (значение по умолчанию) -# RestartNotification -Hide - -# Do not add the "- Shortcut" suffix to the file name of created shortcuts -# Нe дoбaвлять "- яpлык" к имени coздaвaeмых яpлыков ShortcutsSuffix -Disable - -# Add the "- Shortcut" suffix to the file name of created shortcuts (default value) -# Дoбaвлять "- яpлык" к имени coздaвaeмых яpлыков (значение по умолчанию) -# ShortcutsSuffix -Enable - -# Use the Print screen button to open screen snipping -# Использовать кнопку PRINT SCREEN, чтобы запустить функцию создания фрагмента экрана PrtScnSnippingTool -Enable - -# Do not use the Print screen button to open screen snipping (default value) -# Не использовать кнопку PRINT SCREEN, чтобы запустить функцию создания фрагмента экрана (значение по умолчанию) -# PrtScnSnippingTool -Disable - -# Let me use a different input method for each app window -# Позволить выбирать метод ввода для каждого окна AppsLanguageSwitch -Enable - -# Do not use a different input method for each app window (default value) -# Не использовать метод ввода для каждого окна (значение по умолчанию) -# AppsLanguageSwitch -Disable - -# When I grab a windows's title bar and shake it, minimize all other windows -# При захвате заголовка окна и встряхивании сворачиваются все остальные окна AeroShaking -Enable +UnpinTaskbarShortcuts -Shortcuts Edge, Store -# When I grab a windows's title bar and shake it, don't minimize all other windows (default value) -# При захвате заголовка окна и встряхивании не сворачиваются все остальные окна (значение по умолчанию) -# AeroShaking -Disable #endregion UI & Personalization #region OneDrive -# Uninstall OneDrive. The OneDrive user folder won't be removed -# Удалить OneDrive. Папка пользователя OneDrive не будет удалена -# OneDrive -Uninstall -# Install OneDrive 64-bit (default value) -# Установить OneDrive 64-бит (значение по умолчанию) -# OneDrive -Install + #endregion OneDrive #region System -#region StorageSense -# Turn on Storage Sense -# Включить Контроль памяти -StorageSense -Enable - -# Turn off Storage Sense (default value) -# Выключить Контроль памяти (значение по умолчанию) -# StorageSense -Disable -# Run Storage Sense every month -# Запускать Контроль памяти каждый месяц +StorageSense -Enable StorageSenseFrequency -Month - -# Run Storage Sense during low free disk space (default value) -# Запускать Контроль памяти, когда остается мало место на диске (значение по умолчанию) -# StorageSenseFrequency -Default - -# Turn on automatic cleaning up temporary system and app files -# Автоматически очищать временные файлы системы и приложений StorageSenseTempFiles -Enable - -# Turn off automatic cleaning up temporary system and app files -# Не очищать временные файлы системы и приложений -# StorageSenseTempFiles -Disable -#endregion StorageSense - -# Disable hibernation. Do not recommend turning it off on laptops -# Отключить режим гибернации. Не рекомендуется выключать на ноутбуках Hibernation -Disable - -# Enable hibernate (default value) -# Включить режим гибернации (значение по умолчанию) -# Hibernation -Enable - -# Change the %TEMP% environment variable path to %SystemDrive%\Temp -# Изменить путь переменной среды для %TEMP% на %SystemDrive%\Temp -# TempFolder -SystemDrive - -# Change %TEMP% environment variable path to %LOCALAPPDATA%\Temp (default value) -# Изменить путь переменной среды для %TEMP% на LOCALAPPDATA%\Temp (значение по умолчанию) -# TempFolder -Default - -# Disable the Windows 260 characters path limit -# Отключить ограничение Windows на 260 символов в пути Win32LongPathLimit -Disable - -# Enable the Windows 260 character path limit (default value) -# Включить ограничение Windows на 260 символов в пути (значение по умолчанию) -# Win32LongPathLimit -Enable - -# Display the Stop error information on the BSoD -# Отображать Stop-ошибку при появлении BSoD BSoDStopError -Enable - -# Do not display the Stop error information on the BSoD (default value) -# Не отображать Stop-ошибку при появлении BSoD (значение по умолчанию) -# BSoDStopError -Disable - -# Choose when to be notified about changes to your computer: never notify -# Настройка уведомления об изменении параметров компьютера: никогда не уведомлять AdminApprovalMode -Never - -# Choose when to be notified about changes to your computer: notify me only when apps try to make changes to my computer (default value) -# Настройка уведомления об изменении параметров компьютера: уведомлять меня только при попытках приложений внести изменения в компьютер (значение по умолчанию) -# AdminApprovalMode -Default - -# Turn on access to mapped drives from app running with elevated permissions with Admin Approval Mode enabled -# Включить доступ к сетевым дискам при включенном режиме одобрения администратором при доступе из программ, запущенных с повышенными правами MappedDrivesAppElevatedAccess -Enable - -# Turn off access to mapped drives from app running with elevated permissions with Admin Approval Mode enabled (default value) -# Выключить доступ к сетевым дискам при включенном режиме одобрения администратором при доступе из программ, запущенных с повышенными правами (значение по умолчанию) -# MappedDrivesAppElevatedAccess -Disable - -# Turn off Delivery Optimization -# Выключить оптимизацию доставки DeliveryOptimization -Disable - -# Turn on Delivery Optimization (default value) -# Включить оптимизацию доставки (значение по умолчанию) -# DeliveryOptimization -Enable - -# Always wait for the network at computer startup and logon for workgroup networks -# Всегда ждать сеть при запуске и входе в систему для рабочих групп WaitNetworkStartup -Enable - -# Never wait for the network at computer startup and logon for workgroup networks (default value) -# Никогда не ждать сеть при запуске и входе в систему для рабочих групп (значение по умолчанию) -# WaitNetworkStartup -Disable - -# Do not let Windows manage my default printer -# Не разрешать Windows управлять принтером, используемым по умолчанию WindowsManageDefaultPrinter -Disable - -# Let Windows manage my default printer (default value) -# Разрешать Windows управлять принтером, используемым по умолчанию (значение по умолчанию) -# WindowsManageDefaultPrinter -Enable - -<# - Disable the Windows features using the pop-up dialog box - If you want to leave "Multimedia settings" element in the advanced settings of Power Options do not disable the "Media Features" feature - - Если вы хотите оставить параметр "Параметры мультимедиа" в дополнительных параметрах схемы управления питанием, не отключайте "Компоненты для работы с медиа" - Отключить компоненты Windows, используя всплывающее диалоговое окно -#> WindowsFeatures -Disable - -# Enable the Windows features using the pop-up dialog box -# Включить компоненты Windows, используя всплывающее диалоговое окно -# WindowsFeatures -Enable - -<# - Uninstall optional features using the pop-up dialog box - If you want to leave "Multimedia settings" element in the advanced settings of Power Options do not uninstall the "Media Features" feature - - Удалить дополнительные компоненты, используя всплывающее диалоговое окно - Если вы хотите оставить параметр "Параметры мультимедиа" в дополнительных параметрах схемы управления питанием, не удаляйте компонент "Компоненты для работы с медиа" -#> WindowsCapabilities -Uninstall - -# Install optional features using the pop-up dialog box -# Установить дополнительные компоненты, используя всплывающее диалоговое окно -# WindowsCapabilities -Install - -# Receive updates for other Microsoft products -# Получать обновления для других продуктов Майкрософт UpdateMicrosoftProducts -Enable - -# Do not receive updates for other Microsoft products (default value) -# Не получать обновления для других продуктов Майкрософт (значение по умолчанию) -# UpdateMicrosoftProducts -Disable - -<# - Set power plan on "High performance" - It isn't recommended to turn on the "High performance" power plan on laptops - - Установить схему управления питанием на "Высокая производительность" - Не рекомендуется включать схему управления питанием "Высокая производительность" для ноутбуков -#> PowerPlan -High - -# Set power plan on "Balanced" (default value) -# Установить схему управления питанием на "Сбалансированная" (значение по умолчанию) -# PowerPlan -Balanced - -# Use the latest installed .NET runtime for all apps -# Использовать последнюю установленную среду выполнения .NET для всех приложений LatestInstalled.NET -Enable - -# Do not use the latest installed .NET runtime for all apps (default value) -# Не использовать последнюю установленную версию .NET для всех приложений (значение по умолчанию) -# LatestInstalled.NET -Disable - -# Do not allow the computer to turn off the network adapters to save power -# Запретить отключение всех сетевых адаптеров для экономии энергии NetworkAdaptersSavePower -Disable - -# Allow the computer to turn off the network adapters to save power (default value) -# Разрешить отключение всех сетевых адаптеров для экономии энергии (значение по умолчанию) -# NetworkAdaptersSavePower -Enable - -<# - Disable the Internet Protocol Version 6 (TCP/IPv6) component for all network connections - Before invoking the function, a check will be run whether your ISP supports the IPv6 protocol using https://ipv6-test.com - - Выключить IP версии 6 (TCP/IPv6) - Перед выполнением функции будет проведена проверка: поддерживает ли ваш провайдер IPv6, используя ресурс https://ipv6-test.com -#> IPv6Component -Disable - -<# - Enable the Internet Protocol Version 6 (TCP/IPv6) component for all network connections (default value) - Before invoking the function, a check will be run whether your ISP supports the IPv6 protocol using https://ipv6-test.com - - Включить IP версии 6 (TCP/IPv6) (значение по умолчанию) - Перед выполнением функции будет проведена проверка: поддерживает ли ваш провайдер IPv6, используя ресурс https://ipv6-test.com -#> -# IPv6Component -Enable - -# Override for default input method: English -# Переопределить метод ввода по умолчанию: английский InputMethod -English - -# Override for default input method: use language list (default value) -# Переопределить метод ввода по умолчанию: использовать список языков (значение по умолчанию) -# InputMethod -Default - -<# - Move user folders location to the root of any drive using the interactive menu - User files or folders won't me moved to a new location. Move them manually - They're located in the %USERPROFILE% folder by default - - Переместить пользовательские папки в корень любого диска на выбор с помощью интерактивного меню - Пользовательские файлы и папки не будут перемещены в новое расположение. Переместите их вручную - По умолчанию они располагаются в папке %USERPROFILE% -#> SetUserShellFolderLocation -Root - -<# - Select folders for user folders location manually using a folder browser dialog - User files or folders won't me moved to a new location. Move them manually - They're located in the %USERPROFILE% folder by default - - Выбрать папки для расположения пользовательских папок вручную, используя диалог "Обзор папок" - Пользовательские файлы и папки не будут перемещены в новое расположение. Переместите их вручную - По умолчанию они располагаются в папке %USERPROFILE% -#> -# SetUserShellFolderLocation -Custom - -<# - Change user folders location to the default values - User files or folders won't me moved to the new location. Move them manually - They're located in the %USERPROFILE% folder by default - - Изменить расположение пользовательских папок на значения по умолчанию - Пользовательские файлы и папки не будут перемещены в новое расположение. Переместите их вручную - По умолчанию они располагаются в папке %USERPROFILE% -#> -# SetUserShellFolderLocation -Default - -<# - Save screenshots by pressing Win+PrtScr on the Desktop - The function will be applied only if the preset is configured to remove the OneDrive application, or the app was already uninstalled - Otherwise the backup functionality for the "Desktop" and "Pictures" folders in OneDrive breaks - - Сохранять скриншоты по нажатию Win+PrtScr на рабочий столе - Функция будет применена только в случае, если в пресете настроено удаление приложения OneDrive или приложение уже удалено, - иначе в OneDrive ломается функционал резервного копирования для папок "Рабочий стол" и "Изображения" -#> WinPrtScrFolder -Desktop - -# Save screenshots by pressing Win+PrtScr in the Pictures folder (default value) -# Cохранять скриншоты по нажатию Win+PrtScr в папку "Изображения" (значение по умолчанию) -# WinPrtScrFolder -Default - -<# - Run troubleshooter automatically, then notify me - In order this feature to work the OS level of diagnostic data gathering will be set to "Optional diagnostic data", and the error reporting feature will be turned on - - Автоматически запускать средства устранения неполадок, а затем уведомлять - Чтобы заработала данная функция, уровень сбора диагностических данных ОС будет установлен на "Необязательные диагностические данные" и включится создание отчетов об ошибках Windows -#> RecommendedTroubleshooting -Automatically - -<# - Ask me before running troubleshooter (default value) - In order this feature to work the OS level of diagnostic data gathering will be set to "Optional diagnostic data" - - Спрашивать перед запуском средств устранения неполадок (значение по умолчанию) - Чтобы заработала данная функция, уровень сбора диагностических данных ОС будет установлен на "Необязательные диагностические данные" и включится создание отчетов об ошибках Windows -#> -# RecommendedTroubleshooting -Default - -# Launch folder windows in a separate process -# Запускать окна с папками в отдельном процессе FoldersLaunchSeparateProcess -Enable - -# Do not launch folder windows in a separate process (default value) -# Не запускать окна с папками в отдельном процессе (значение по умолчанию) -# FoldersLaunchSeparateProcess -Disable - -# Disable and delete reserved storage after the next update installation -# Отключить и удалить зарезервированное хранилище после следующей установки обновлений ReservedStorage -Disable - -# Enable reserved storage (default value) -# Включить зарезервированное хранилище (значение по умолчанию) -# ReservedStorage -Enable - -# Disable help lookup via F1 -# Отключить открытие справки по нажатию F1 F1HelpPage -Disable - -# Enable help lookup via F1 (default value) -# Включить открытие справки по нажатию F1 (значение по умолчанию) -# F1HelpPage -Enable - -# Enable Num Lock at startup -# Включить Num Lock при загрузке NumLock -Enable - -# Disable Num Lock at startup (default value) -# Выключить Num Lock при загрузке (значение по умолчанию) -# NumLock -Disable - -# Disable Caps Lock -# Выключить Caps Lock -# CapsLock -Disable - -# Enable Caps Lock (default value) -# Включить Caps Lock (значение по умолчанию) -# CapsLock -Enable - -# Turn off pressing the Shift key 5 times to turn Sticky keys -# Выключить залипание клавиши Shift после 5 нажатий StickyShift -Disable - -# Turn on pressing the Shift key 5 times to turn Sticky keys (default value) -# Включить залипание клавиши Shift после 5 нажатий (значение по умолчанию) -# StickyShift -Enable - -# Don't use AutoPlay for all media and devices -# Не использовать автозапуск для всех носителей и устройств Autoplay -Disable - -# Use AutoPlay for all media and devices (default value) -# Использовать автозапуск для всех носителей и устройств (значение по умолчанию) -# Autoplay -Enable - -# Disable thumbnail cache removal -# Отключить удаление кэша миниатюр ThumbnailCacheRemoval -Disable - -# Enable thumbnail cache removal (default value) -# Включить удаление кэша миниатюр (значение по умолчанию) -# ThumbnailCacheRemoval -Enable - -# Automatically saving my restartable apps and restart them when I sign back in -# Автоматически сохранять мои перезапускаемые приложения из системы и перезапускать их при повторном входе SaveRestartableApps -Enable - -# Turn off automatically saving my restartable apps and restart them when I sign back in (default value) -# Выключить автоматическое сохранение моих перезапускаемых приложений из системы и перезапускать их при повторном входе (значение по умолчанию) -# SaveRestartableApps -Disable - -# Enable "Network Discovery" and "File and Printers Sharing" for workgroup networks -# Включить сетевое обнаружение и общий доступ к файлам и принтерам для рабочих групп NetworkDiscovery -Enable - -# Disable "Network Discovery" and "File and Printers Sharing" for workgroup networks (default value) -# Выключить сетевое обнаружение и общий доступ к файлам и принтерам для рабочих групп (значение по умолчанию) -# NetworkDiscovery -Disable - -# Automatically adjust active hours for me based on daily usage -# Автоматически изменять период активности для этого устройства на основе действий ActiveHours -Automatically - -# Manually adjust active hours for me based on daily usage (default value) -# Вручную изменять период активности для этого устройства на основе действий (значение по умолчанию) -# ActiveHours -Manually - -# Restart as soon as possible to finish updating -# Перезапустить устройство как можно быстрее, чтобы завершить обновление RestartDeviceAfterUpdate -Enable - -# Don't restart as soon as possible to finish updating (default value) -# Не перезапускать устройство как можно быстрее, чтобы завершить обновление (значение по умолчанию) -# RestartDeviceAfterUpdate -Disable - -<# - Register app, calculate hash, and associate with an extension with the "How do you want to open this" pop-up hidden - Зарегистрировать приложение, вычислить хэш и ассоциировать его с расширением без всплывающего окна "Каким образом вы хотите открыть этот файл?" - - Set-Association -ProgramPath "C:\SumatraPDF.exe" -Extension .pdf -Icon "shell32.dll,100" - Set-Association -ProgramPath "%ProgramFiles%\Notepad++\notepad++.exe" -Extension .txt -Icon "%ProgramFiles%\Notepad++\notepad++.exe,0" -#> -# Set-Association -ProgramPath "%ProgramFiles%\Notepad++\notepad++.exe" -Extension .txt -Icon "%ProgramFiles%\Notepad++\notepad++.exe,0" - -# Set Windows Terminal as default terminal app to host the user interface for command-line applications -# Установить Windows Terminal как приложение терминала по умолчанию для размещения пользовательского интерфейса для приложений командной строки DefaultTerminalApp -WindowsTerminal - -# Set Windows Console Host as default terminal app to host the user interface for command-line applications (default value) -# Установить Windows Console Host как приложение терминала по умолчанию для размещения пользовательского интерфейса для приложений командной строки (значение по умолчанию) -# DefaultTerminalApp -ConsoleHost - -<# - Install the latest Microsoft Visual C++ Redistributable Packages 2015–2022 x64 - Установить последнюю версию распространяемых пакетов Microsoft Visual C++ 2015–2022 x64 - - https://docs.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist -#> InstallVCRedistx64 - -<# - Install the latest .NET Desktop Runtime 6 (x86/x64) - Установить последнюю версию .NET Desktop Runtime 6 (x86/x64) - - https://docs.microsoft.com/en-us/dotnet/core/install/windows?tabs=net60 -#> InstallDotNetRuntime6 + #endregion System #region WSL -<# - Enable Windows Subsystem for Linux (WSL), install the latest WSL Linux kernel version, and a Linux distribution using a pop-up form - The "Receive updates for other Microsoft products" setting will enabled automatically to receive kernel updates - Установить подсистему Windows для Linux (WSL), последний пакет обновления ядра Linux и дистрибутив Linux, используя всплывающую форму - Параметр "При обновлении Windows получать обновления для других продуктов Майкрософт" будет включен автоматически в Центре обновлении Windows, чтобы получать обновления ядра -#> -# WSL + #endregion WSL #region Start menu -# Unpin all Start apps -# Открепить все приложения от начального экрана -# UnpinAllStartApps -# Run the Windows PowerShell shortcut from the Start menu as Administrator -# Запускать ярлык Windows PowerShell в меню "Пуск" от имени Администратора RunPowerShellShortcut -Elevated -# Run the Windows PowerShell shortcut from the Start menu as user (default value) -# Запускать ярлык Windows PowerShell в меню "Пуск" от имени пользователя (значение по умолчанию) -# RunPowerShellShortcut -NonElevated - -# Show default Start layout (for 22509+ build only) (default value) -# Отображать стандартный макет начального экрана (только для сборки 22509+) (значение по умолчанию) -# StartLayout -Default - -# Show more pins on Start (for 22509+ build only) -# Отображать больше закреплений на начальном экране (только для сборки 22509+) -StartLayout -ShowMorePins - -# Show more recommendations on Start (for 22509+ build only) -# Отображать больше рекомендаций на начальном экране (только для сборки 22509+) -StartLayout -ShowMoreRecommendations #endregion Start menu #region UWP apps -<# - Uninstall UWP apps using the pop-up dialog box - If the "For All Users" is checked apps packages will not be installed for new users - The "ForAllUsers" argument sets a checkbox to unistall packages for all users - - Удалить UWP-приложения, используя всплывающее диалоговое окно - Пакеты приложений не будут установлены для новых пользователей, если отмечена галочка "Для всех пользователей" - Аргумент "ForAllUsers" устанавливает галочку для удаления пакетов для всех пользователей -#> -UninstallUWPApps - -<# - Restore the default UWP apps using the pop-up dialog box - UWP apps can be restored only if they were uninstalled only for the current user - Восстановить стандартные UWP-приложения, используя всплывающее диалоговое окно - UWP-приложения могут быть восстановлены, только если они были удалены для текущего пользователя -#> -# RestoreUWPApps - -<# - Download and install "HEVC Video Extensions from Device Manufacturer" to be able to open .heic and .heif formats - HEVC Video Extension is already installed in Windows 11 22H2 by default - - Скачать и установить "Расширения для видео HEVC от производителя устройства", чтобы иметь возможность открывать форматы .heic и .heif - Расширение уже установлено в Windows 11 22H2 по умолчанию -#> HEIF -Install - -<# - Open Microsoft Store "HEVC Video Extensions from Device Manufacturer" page to install this extension manually to be able to open .heic and .heif formats - The extension can be installed without a Microsoft account - - Открыть страницу "Расширения для видео HEVC от производителя устройства" в Microsoft Store, чтобы вручную установить расширение для открытия форматов .heic и .heif - Расширение может быть установлено бесплатно без учетной записи Microsoft -#> -# HEIF -Manually - -# Disable Cortana autostarting -# Выключить автозагрузку Кортана CortanaAutostart -Disable - -# Enable Cortana autostarting (default value) -# Включить автозагрузку Кортана (значение по умолчанию) -# CortanaAutostart -Enable - -# Disable Microsoft Teams autostarting -# Выключить автозагрузку Microsoft Teams TeamsAutostart -Disable - -# Enable Microsoft Teams autostarting (default value) -# Включить автозагрузку Microsoft Teams (значение по умолчанию) -# TeamsAutostart -Enable - -# Check for UWP apps updates -# Проверить обновления UWP-приложений +UninstallUWPApps CheckUWPAppsUpdates + #endregion UWP apps #region Gaming -<# - Disable Xbox Game Bar - To prevent popping up the "You'll need a new app to open this ms-gamingoverlay" warning, you need to disable the Xbox Game Bar app, even if you uninstalled it before - Отключить Xbox Game Bar - Чтобы предотвратить появление предупреждения "Вам понадобится новое приложение, чтобы открыть этот ms-gamingoverlay", вам необходимо отключить приложение Xbox Game Bar, даже если вы удалили его раньше -#> XboxGameBar -Disable - -# Enable Xbox Game Bar (default value) -# Включить Xbox Game Bar (значение по умолчанию) -# XboxGameBar -Enable - -# Disable Xbox Game Bar tips -# Отключить советы Xbox Game Bar XboxGameTips -Disable - -# Enable Xbox Game Bar tips (default value) -# Включить советы Xbox Game Bar (значение по умолчанию) -# XboxGameTips -Enable - -# Choose an app and set the "High performance" graphics performance for it. Only if you have a dedicated GPU -# Выбрать приложение и установить для него параметры производительности графики на "Высокая производительность". Только при наличии внешней видеокарты -SetAppGraphicsPerformance - -<# - Turn on hardware-accelerated GPU scheduling. Restart needed - Only if you have a dedicated GPU and WDDM verion is 2.7 or higher - - Включить планирование графического процессора с аппаратным ускорением. Необходима перезагрузка - Только при наличии внешней видеокарты и WDDM версии 2.7 и выше -#> GPUScheduling -Enable +SetAppGraphicsPerformance -# Turn off hardware-accelerated GPU scheduling (default value). Restart needed -# Выключить планирование графического процессора с аппаратным ускорением (значение по умолчанию). Необходима перезагрузка -# GPUScheduling -Disable #endregion Gaming #region Scheduled tasks -<# - Create the "Windows Cleanup" scheduled task for cleaning up Windows unused files and updates - A native interactive toast notification pops up every 30 days. The task runs every 30 days - Создать задачу "Windows Cleanup" по очистке неиспользуемых файлов и обновлений Windows в Планировщике заданий - Нативный интерактивный тост всплывает каждые 30 дней. Задача выполняется каждые 30 дней -#> CleanupTask -Register - -# Delete the "Windows Cleanup" and "Windows Cleanup Notification" scheduled tasks for cleaning up Windows unused files and updates -# Удалить задачи "Windows Cleanup" и "Windows Cleanup Notification" по очистке неиспользуемых файлов и обновлений Windows из Планировщика заданий -# CleanupTask -Delete - -<# - Create the "SoftwareDistribution" scheduled task for cleaning up the %SystemRoot%\SoftwareDistribution\Download folder - The task will wait until the Windows Updates service finishes running. The task runs every 90 days - - Создать задачу "SoftwareDistribution" по очистке папки %SystemRoot%\SoftwareDistribution\Download в Планировщике заданий - Задача будет ждать, пока служба обновлений Windows не закончит работу. Задача выполняется каждые 90 дней -#> SoftwareDistributionTask -Register - -# Delete the "SoftwareDistribution" scheduled task for cleaning up the %SystemRoot%\SoftwareDistribution\Download folder -# Удалить задачу "SoftwareDistribution" по очистке папки %SystemRoot%\SoftwareDistribution\Download из Планировщика заданий -# SoftwareDistributionTask -Delete - -<# - Create the "Temp" scheduled task for cleaning up the %TEMP% folder - Only files older than one day will be deleted. The task runs every 60 days - - Создать задачу "Temp" в Планировщике заданий по очистке папки %TEMP% - Удаляться будут только файлы старше одного дня. Задача выполняется каждые 60 дней -#> TempTask -Register -# Delete the "Temp" scheduled task for cleaning up the %TEMP% folder -# Удалить задачу "Temp" по очистке папки %TEMP% из Планировщика заданий -# TempTask -Delete #endregion Scheduled tasks #region Microsoft Defender & Security -# Enable Microsoft Defender Exploit Guard network protection -# Включить защиту сети в Microsoft Defender Exploit Guard -NetworkProtection -Enable - -# Disable Microsoft Defender Exploit Guard network protection (default value) -# Выключить защиту сети в Microsoft Defender Exploit Guard -# NetworkProtection -Disable -# Enable detection for potentially unwanted applications and block them -# Включить обнаружение потенциально нежелательных приложений и блокировать их +NetworkProtection -Enable PUAppsDetection -Enable - -# Disable detection for potentially unwanted applications and block them (default value) -# Выключить обнаружение потенциально нежелательных приложений и блокировать их (значение по умолчанию) -# PUAppsDetection -Disable - -# Dismiss Microsoft Defender offer in the Windows Security about signing in Microsoft account -# Отклонить предложение Microsoft Defender в "Безопасность Windows" о входе в аккаунт Microsoft -DismissMSAccount - -# Dismiss Microsoft Defender offer in the Windows Security about turning on the SmartScreen filter for Microsoft Edge -# Отклонить предложение Microsoft Defender в "Безопасность Windows" включить фильтр SmartScreen для Microsoft Edge -DismissSmartScreenFilter - -# Enable events auditing generated when a process is created (starts) -# Включить аудит событий, возникающих при создании или запуске процесса AuditProcess -Enable - -# Disable events auditing generated when a process is created (starts) (default value) -# Выключить аудит событий, возникающих при создании или запуске процесса (значение по умолчанию) -# AuditProcess -Disable - -<# - Include command line in process creation events - In order this feature to work events auditing (ProcessAudit -Enable) will be enabled - - Включать командную строку в событиях создания процесса - Для того, чтобы работал данный функционал, будет включен аудит событий (AuditProcess -Enable) -#> CommandLineProcessAudit -Enable - -# Do not include command line in process creation events (default value) -# Не включать командную строку в событиях создания процесса (значение по умолчанию) -# CommandLineProcessAudit -Disable - -<# - Create the "Process Creation" сustom view in the Event Viewer to log executed processes and their arguments - In order this feature to work events auditing (AuditProcess -Enable) and command line (CommandLineProcessAudit -Enable) in process creation events will be enabled - - Создать настраиваемое представление "Создание процесса" в Просмотре событий для журналирования запускаемых процессов и их аргументов - Для того, чтобы работал данный функционал, буден включен аудит событий (AuditProcess -Enable) и командной строки (CommandLineProcessAudit -Enable) в событиях создания процесса -#> EventViewerCustomView -Enable - -# Remove the "Process Creation" custom view in the Event Viewer to log executed processes and their arguments (default value) -# Удалить настаиваемое представление "Создание процесса" в Просмотре событий для журналирования запускаемых процессов и их аргументов (значение по умолчанию) -# EventViewerCustomView -Disable - -# Enable logging for all Windows PowerShell modules -# Включить ведение журнала для всех модулей Windows PowerShell PowerShellModulesLogging -Enable - -# Disable logging for all Windows PowerShell modules (default value) -# Выключить ведение журнала для всех модулей Windows PowerShell (значение по умолчанию) -# PowerShellModulesLogging -Disable - -# Enable logging for all PowerShell scripts input to the Windows PowerShell event log -# Включить ведение журнала для всех вводимых сценариев PowerShell в журнале событий Windows PowerShell PowerShellScriptsLogging -Enable - -# Disable logging for all PowerShell scripts input to the Windows PowerShell event log (default value) -# Выключить ведение журнала для всех вводимых сценариев PowerShell в журнале событий Windows PowerShell (значение по умолчанию) -# PowerShellScriptsLogging -Disable - -# Microsoft Defender SmartScreen doesn't marks downloaded files from the Internet as unsafe -# Microsoft Defender SmartScreen не помечает скачанные файлы из интернета как небезопасные AppsSmartScreen -Disable - -# Microsoft Defender SmartScreen marks downloaded files from the Internet as unsafe (default value) -# Microsoft Defender SmartScreen помечает скачанные файлы из интернета как небезопасные (значение по умолчанию) -# AppsSmartScreen -Enable - -# Disable the Attachment Manager marking files that have been downloaded from the Internet as unsafe -# Выключить проверку Диспетчером вложений файлов, скачанных из интернета, как небезопасные SaveZoneInformation -Disable +DismissMSAccount +DismissSmartScreenFilter -# Enable the Attachment Manager marking files that have been downloaded from the Internet as unsafe (default value) -# Включить проверку Диспетчера вложений файлов, скачанных из интернета как небезопасные (значение по умолчанию) -# SaveZoneInformation -Enable - -<# - Disable Windows Script Host - Blocks WSH from executing .js and .vbs files - - Отключить Windows Script Host - Блокирует запуск файлов .js и .vbs -#> -# WindowsScriptHost -Disable - -# Enable Windows Script Host (default value) -# Включить Windows Script Host (значение по умолчанию) -# WindowsScriptHost -Enable - -# Enable Windows Sandbox -# Включить Windows Sandbox -# WindowsSandbox -Enable - -# Disable Windows Sandbox (default value) -# Выключить Windows Sandbox (значение по умолчанию) -# WindowsSandbox -Disable - -<# - Enable DNS-over-HTTPS for IPv4 - The valid IPv4 addresses: 1.0.0.1, 1.1.1.1, 149.112.112.112, 8.8.4.4, 8.8.8.8, 9.9.9.9 - - Включить DNS-over-HTTPS для IPv4 - Действительные IPv4-адреса: 1.0.0.1, 1.1.1.1, 149.112.112.112, 8.8.4.4, 8.8.8.8, 9.9.9.9 -#> -DNSoverHTTPS -Enable -PrimaryDNS 1.0.0.1 -SecondaryDNS 1.1.1.1 - -# Disable DNS-over-HTTPS for IPv4 (default value) -# Выключить DNS-over-HTTPS для IPv4 (значение по умолчанию) -# DNSoverHTTPS -Disable #endregion Microsoft Defender & Security #region Context menu -# Show the "Extract all" item in the Windows Installer (.msi) context menu -# Отобразить пункт "Извлечь все" в контекстное меню Windows Installer (.msi) -MSIExtractContext -Show -# Hide the "Extract all" item from the Windows Installer (.msi) context menu (default value) -# Скрыть пункт "Извлечь все" из контекстного меню Windows Installer (.msi) (значение по умолчанию) -# MSIExtractContext -Hide - -# Show the "Install" item in the Cabinet (.cab) filenames extensions context menu -# Отобразить пункт "Установить" в контекстное меню .cab архивов +MSIExtractContext -Show CABInstallContext -Show - -# Hide the "Install" item from the Cabinet (.cab) filenames extensions context menu (default value) -# Скрыть пункт "Установить" из контекстного меню .cab архивов (значение по умолчанию) -# CABInstallContext -Hide - -# Show the "Run as different user" item to the .exe filename extensions context menu -# Отобразить пункт "Запуск от имени другого пользователя" в контекстное меню .exe файлов RunAsDifferentUserContext -Show - -# Hide the "Run as different user" item from the .exe filename extensions context menu (default value) -# Скрыть пункт "Запуск от имени другого пользователя" из контекстное меню .exe файлов (значение по умолчанию) -# RunAsDifferentUserContext -Hide - -# Hide the "Cast to Device" item from the media files and folders context menu -# Скрыть пункт "Передать на устройство" из контекстного меню медиа-файлов и папок CastToDeviceContext -Hide - -# Show the "Cast to Device" item in the media files and folders context menu (default value) -# Отобразить пункт "Передать на устройство" в контекстном меню медиа-файлов и папок (значение по умолчанию) -# CastToDeviceContext -Show - -# Hide the "Share" item from the context menu -# Скрыть пункт "Отправить" (поделиться) из контекстного меню ShareContext -Hide - -# Show the "Share" item in the context menu (default value) -# Отобразить пункт "Отправить" (поделиться) в контекстном меню (значение по умолчанию) -# ShareContext -Show - -# Hide the "Edit with Photos" item from the media files context menu -# Скрыть пункт "Изменить с помощью приложения "Фотографии"" из контекстного меню медиа-файлов EditWithPhotosContext -Hide - -# Show the "Edit with Photos" item in the media files context menu (default value) -# Отобразить пункт "Изменить с помощью приложения "Фотографии"" в контекстном меню медиа-файлов (значение по умолчанию) -# EditWithPhotosContext -Show - -# Hide the "Create a new video" item in the media files context menu -# Скрыть пункт "Создать новое видео" из контекстного меню медиа-файлов CreateANewVideoContext -Hide - -# Show the "Create a new video" item in the media files context menu (default value) -# Отобразить пункт "Создать новое видео" в контекстном меню медиа-файлов (значение по умолчанию) -# CreateANewVideoContext -Show - -# Hide the "Print" item from the .bat and .cmd context menu -# Скрыть пункт "Печать" из контекстного меню .bat и .cmd файлов PrintCMDContext -Hide - -# Show the "Print" item in the .bat and .cmd context menu (default value) -# Отобразить пункт "Печать" в контекстном меню .bat и .cmd файлов (значение по умолчанию) -# PrintCMDContext -Show - -# Hide the "Include in Library" item from the folders and drives context menu -# Скрыть пункт "Добавить в библиотеку" из контекстного меню папок и дисков IncludeInLibraryContext -Hide - -# Show the "Include in Library" item in the folders and drives context menu (default value) -# Отобразить пункт "Добавить в библиотеку" в контекстном меню папок и дисков (значение по умолчанию) -# IncludeInLibraryContext -Show - -# Hide the "Send to" item from the folders context menu -# Скрыть пункт "Отправить" из контекстного меню папок SendToContext -Hide - -# Show the "Send to" item in the folders context menu (default value) -# Отобразить пункт "Отправить" в контекстном меню папок (значение по умолчанию) -# SendToContext -Show - -# Hide the "Turn on BitLocker" item from the drives context menu -# Скрыть пункт "Включить BitLocker" из контекстного меню дисков BitLockerContext -Hide - -# Show the "Turn on BitLocker" item in the drives context menu (default value) -# Отобразить пункт "Включить BitLocker" в контекстном меню дисков (значение по умолчанию) -# BitLockerContext -Show - -# Hide the "Compressed (zipped) Folder" item from the "New" context menu -# Скрыть пункт "Сжатая ZIP-папка" из контекстного меню "Создать" CompressedFolderNewContext -Hide - -# Show the "Compressed (zipped) Folder" item to the "New" context menu (default value) -# Отобразить пункт "Сжатая ZIP-папка" в контекстном меню "Создать" (значение по умолчанию) -# CompressedFolderNewContext -Show - -# Enable the "Open", "Print", and "Edit" context menu items for more than 15 items selected -# Включить элементы контекстного меню "Открыть", "Изменить" и "Печать" при выделении более 15 элементов MultipleInvokeContext -Enable - -# Disable the "Open", "Print", and "Edit" context menu items for more than 15 items selected (default value) -# Отключить элементы контекстного меню "Открыть", "Изменить" и "Печать" при выделении более 15 элементов (значение по умолчанию) -# MultipleInvokeContext -Disable - -# Hide the "Look for an app in the Microsoft Store" item in the "Open with" dialog -# Скрыть пункт "Поиск приложения в Microsoft Store" в диалоге "Открыть с помощью" UseStoreOpenWith -Hide - -# Show the "Look for an app in the Microsoft Store" item in the "Open with" dialog (default value) -# Отобразить пункт "Поиск приложения в Microsoft Store" в диалоге "Открыть с помощью" (значение по умолчанию) -# UseStoreOpenWith -Show - -# Hide the "Open in Windows Terminal" item in the folders context menu -# Скрыть пункт "Открыть в Терминале Windows" в контекстном меню папок OpenWindowsTerminalContext -Hide - -# Show the "Open in Windows Terminal" item in the folders context menu (default value) -# Отобразить пункт "Открыть в Терминале Windows" в контекстном меню папок (значение по умолчанию) -# OpenWindowsTerminalContext -Show - -# Show the "Open in Windows Terminal" (Admin) item in the Desktop and folders context menu -# Отобразить пункт "Открыть в Терминале Windows" (Администратор) в контекстном меню Рабочего стола и папок OpenWindowsTerminalAdminContext -Show - -# Hide the "Open in Windows Terminal (Admin)" item from the Desktop and folders context menu (default value) -# Скрыть пункт "Открыть в Терминале Windows (Администратор)" в контекстном меню Рабочего стола и папок (значение по умолчанию) -# OpenWindowsTerminalAdminContext -Hide - -# Disable the Windows 10 context menu style (default value) -# Отключить стиль контекстного меню из Windows 10 (значение по умолчанию) Windows10ContextMenu -Disable -# Enable the Windows 10 context menu style -# Включить стиль контекстного меню из Windows 10 -# Windows10ContextMenu -Enable #endregion Context menu #region Update Policies -# Update Local Group Policy Editor (gpedit.msc) to make all manually created policy keys in the registry visible in the snap-in -# Обновить Редактор локальной групповой политики (gpedit.msc) так, чтобы оснастка отображала все созданные вручную политики в реестре + UpdateLGPEPolicies -#endregion Update Policies -<# - Simulate pressing F5 to refresh the desktop - Refresh desktop icons, environment variables, taskbar - Restart the Start menu - Please, do not comment out this function +#endregion Update Policies - Симулировать нажатие F5 для обновления рабочего стола - Обновить иконки рабочего стола, переменные среды, панель задач - Перезапустить меню "Пуск" - Пожалуйста, не комментируйте данную функцию -#> RefreshEnvironment - -<# - Errors output - Please, do not comment out this function - - Вывод ошибок - Пожалуйста, не комментируйте данную функцию -#> -Errors - -# SIG # Begin signature block -# MIIbvwYJKoZIhvcNAQcCoIIbsDCCG6wCAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB -# gjcCAQSgWzBZMDQGCisGAQQBgjcCAR4wJgIDAQAABBAfzDtgWUsITrck0sYpfvNR -# AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQUpY2nqj7zqBWHj4Irf1/9Rupe -# LRCgghY3MIIDAjCCAeqgAwIBAgIQHBJEoeFlZo5BtFhY0lY32zANBgkqhkiG9w0B -# AQsFADAZMRcwFQYDVQQDDA5Tb3BoaWEgUHJvamVjdDAeFw0yMjA3MDMyMTE5MTha -# Fw0yNDA3MDMyMTI5MThaMBkxFzAVBgNVBAMMDlNvcGhpYSBQcm9qZWN0MIIBIjAN -# BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwGxQ5ya4aq2QIhrHY7iWfsgJablN -# ti3loiPnXdaV0zTf9Ksba98/Cbo54lI1PaM4zy2gUqLOGy88dKvtr+T7NkkiApns -# pIrPbp50QrBoUWx5WEDJ144nPj5FjTAnsYfFcaN3F+fKylPBHb0Pc0/B1F+dEZu/ -# Z9BShmzDgL98JbjgafXWlGE6vJTjqy02SWSqovcEFfwAKcN1diK5mSnbC2RfyHvK -# /9ohG8XrubRZ4znHCin+mq96rOG0Mvz+3DLkodx4AsP+melPWfXOjWHiY5SHbEnb -# YL/ViesUNbvHP7VKLFA8Crap5DyMXpFfU96SuvzF9G4TBQy601MjcZ9U1QIDAQAB -# o0YwRDAOBgNVHQ8BAf8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwMwHQYDVR0O -# BBYEFDZjgZi39aNu04e2Uoa8OPtzEiR1MA0GCSqGSIb3DQEBCwUAA4IBAQBh6dld -# oQH2U5YQ1Vzgn3F+OCtBVdwu2mIiYNddlbu6GmM7trnhKk0TzaYe49LdsJg7He5F -# bIMuv6u2gueTDxR2ZHm1cZMX50Fu3vlllk03R/wXElJhE1Li5ZIOQ6xYtDwWyYgG -# Uts3P1KudCttmZxFTGTl/JzPK3Ai1J3v6IoGsTS3lE+QolyEB5R9Khke/+ulkfyd -# IismxMfZKzLmwcp9jRUmrbRjj+cC2mh3Yhch4BRmyqPeIqAL6rMXhV8fuKVhMhP8 -# UF5CtrCcRgO4NKLDnC7RJ6v7v/vYVl9aquLaj3utZWZ+L40yFQtvQKL56+LIckXG -# 0tmmFS0RnPnJmx48MIIFsTCCBJmgAwIBAgIQASQK+x44C4oW8UtxnfTTwDANBgkq -# hkiG9w0BAQwFADBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5j -# MRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBB -# c3N1cmVkIElEIFJvb3QgQ0EwHhcNMjIwNjA5MDAwMDAwWhcNMzExMTA5MjM1OTU5 -# WjBiMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQL -# ExB3d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJv -# b3QgRzQwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC/5pBzaN675F1K -# PDAiMGkz7MKnJS7JIT3yithZwuEppz1Yq3aaza57G4QNxDAf8xukOBbrVsaXbR2r -# snnyyhHS5F/WBTxSD1Ifxp4VpX6+n6lXFllVcq9ok3DCsrp1mWpzMpTREEQQLt+C -# 8weE5nQ7bXHiLQwb7iDVySAdYyktzuxeTsiT+CFhmzTrBcZe7FsavOvJz82sNEBf -# sXpm7nfISKhmV1efVFiODCu3T6cw2Vbuyntd463JT17lNecxy9qTXtyOj4DatpGY -# QJB5w3jHtrHEtWoYOAMQjdjUN6QuBX2I9YI+EJFwq1WCQTLX2wRzKm6RAXwhTNS8 -# rhsDdV14Ztk6MUSaM0C/CNdaSaTC5qmgZ92kJ7yhTzm1EVgX9yRcRo9k98FpiHaY -# dj1ZXUJ2h4mXaXpI8OCiEhtmmnTK3kse5w5jrubU75KSOp493ADkRSWJtppEGSt+ -# wJS00mFt6zPZxd9LBADMfRyVw4/3IbKyEbe7f/LVjHAsQWCqsWMYRJUadmJ+9oCw -# ++hkpjPRiQfhvbfmQ6QYuKZ3AeEPlAwhHbJUKSWJbOUOUlFHdL4mrLZBdd56rF+N -# P8m800ERElvlEFDrMcXKchYiCd98THU/Y+whX8QgUWtvsauGi0/C1kVfnSD8oR7F -# wI+isX4KJpn15GkvmB0t9dmpsh3lGwIDAQABo4IBXjCCAVowDwYDVR0TAQH/BAUw -# AwEB/zAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5nP+e6mK4cD08wHwYDVR0jBBgwFoAU -# Reuir/SSy4IxLVGLp6chnfNtyA8wDgYDVR0PAQH/BAQDAgGGMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMHkGCCsGAQUFBwEBBG0wazAkBggrBgEFBQcwAYYYaHR0cDovL29j -# c3AuZGlnaWNlcnQuY29tMEMGCCsGAQUFBzAChjdodHRwOi8vY2FjZXJ0cy5kaWdp -# Y2VydC5jb20vRGlnaUNlcnRBc3N1cmVkSURSb290Q0EuY3J0MEUGA1UdHwQ+MDww -# OqA4oDaGNGh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEFzc3VyZWRJ -# RFJvb3RDQS5jcmwwIAYDVR0gBBkwFzAIBgZngQwBBAIwCwYJYIZIAYb9bAcBMA0G -# CSqGSIb3DQEBDAUAA4IBAQCaFgKlAe+B+w20WLJ4ragjGdlzN9pgnlHXy/gvQLmj -# H3xATjM+kDzniQF1hehiex1W4HG63l7GN7x5XGIATfhJelFNBjLzxdIAKicg6oku -# FTngLD74dXwsgkFhNQ8j0O01ldKIlSlDy+CmWBB8U46fRckgNxTA7Rm6fnc50lSW -# x6YR3zQz9nVSQkscnY2W1ZVsRxIUJF8mQfoaRr3esOWRRwOsGAjLy9tmiX8rnGW/ -# vjdOvi3znUrDzMxHXsiVla3Ry7sqBiD5P3LqNutFcpJ6KXsUAzz7TdZIcXoQEYoI -# dM1sGwRc0oqVA3ZRUFPWLvdKRsOuECxxTLCHtic3RGBEMIIGrjCCBJagAwIBAgIQ -# BzY3tyRUfNhHrP0oZipeWzANBgkqhkiG9w0BAQsFADBiMQswCQYDVQQGEwJVUzEV -# MBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29t -# MSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwHhcNMjIwMzIzMDAw -# MDAwWhcNMzcwMzIyMjM1OTU5WjBjMQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGln -# aUNlcnQsIEluYy4xOzA5BgNVBAMTMkRpZ2lDZXJ0IFRydXN0ZWQgRzQgUlNBNDA5 -# NiBTSEEyNTYgVGltZVN0YW1waW5nIENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8A -# MIICCgKCAgEAxoY1BkmzwT1ySVFVxyUDxPKRN6mXUaHW0oPRnkyibaCwzIP5WvYR -# oUQVQl+kiPNo+n3znIkLf50fng8zH1ATCyZzlm34V6gCff1DtITaEfFzsbPuK4CE -# iiIY3+vaPcQXf6sZKz5C3GeO6lE98NZW1OcoLevTsbV15x8GZY2UKdPZ7Gnf2ZCH -# RgB720RBidx8ald68Dd5n12sy+iEZLRS8nZH92GDGd1ftFQLIWhuNyG7QKxfst5K -# fc71ORJn7w6lY2zkpsUdzTYNXNXmG6jBZHRAp8ByxbpOH7G1WE15/tePc5OsLDni -# pUjW8LAxE6lXKZYnLvWHpo9OdhVVJnCYJn+gGkcgQ+NDY4B7dW4nJZCYOjgRs/b2 -# nuY7W+yB3iIU2YIqx5K/oN7jPqJz+ucfWmyU8lKVEStYdEAoq3NDzt9KoRxrOMUp -# 88qqlnNCaJ+2RrOdOqPVA+C/8KI8ykLcGEh/FDTP0kyr75s9/g64ZCr6dSgkQe1C -# vwWcZklSUPRR8zZJTYsg0ixXNXkrqPNFYLwjjVj33GHek/45wPmyMKVM1+mYSlg+ -# 0wOI/rOP015LdhJRk8mMDDtbiiKowSYI+RQQEgN9XyO7ZONj4KbhPvbCdLI/Hgl2 -# 7KtdRnXiYKNYCQEoAA6EVO7O6V3IXjASvUaetdN2udIOa5kM0jO0zbECAwEAAaOC -# AV0wggFZMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFLoW2W1NhS9zKXaa -# L3WMaiCPnshvMB8GA1UdIwQYMBaAFOzX44LScV1kTN8uZz/nupiuHA9PMA4GA1Ud -# DwEB/wQEAwIBhjATBgNVHSUEDDAKBggrBgEFBQcDCDB3BggrBgEFBQcBAQRrMGkw -# JAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBBBggrBgEFBQcw -# AoY1aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0VHJ1c3RlZFJv -# b3RHNC5jcnQwQwYDVR0fBDwwOjA4oDagNIYyaHR0cDovL2NybDMuZGlnaWNlcnQu -# Y29tL0RpZ2lDZXJ0VHJ1c3RlZFJvb3RHNC5jcmwwIAYDVR0gBBkwFzAIBgZngQwB -# BAIwCwYJYIZIAYb9bAcBMA0GCSqGSIb3DQEBCwUAA4ICAQB9WY7Ak7ZvmKlEIgF+ -# ZtbYIULhsBguEE0TzzBTzr8Y+8dQXeJLKftwig2qKWn8acHPHQfpPmDI2AvlXFvX -# bYf6hCAlNDFnzbYSlm/EUExiHQwIgqgWvalWzxVzjQEiJc6VaT9Hd/tydBTX/6tP -# iix6q4XNQ1/tYLaqT5Fmniye4Iqs5f2MvGQmh2ySvZ180HAKfO+ovHVPulr3qRCy -# Xen/KFSJ8NWKcXZl2szwcqMj+sAngkSumScbqyQeJsG33irr9p6xeZmBo1aGqwpF -# yd/EjaDnmPv7pp1yr8THwcFqcdnGE4AJxLafzYeHJLtPo0m5d2aR8XKc6UsCUqc3 -# fpNTrDsdCEkPlM05et3/JWOZJyw9P2un8WbDQc1PtkCbISFA0LcTJM3cHXg65J6t -# 5TRxktcma+Q4c6umAU+9Pzt4rUyt+8SVe+0KXzM5h0F4ejjpnOHdI/0dKNPH+ejx -# mF/7K9h+8kaddSweJywm228Vex4Ziza4k9Tm8heZWcpw8De/mADfIBZPJ/tgZxah -# ZrrdVcA6KYawmKAr7ZVBtzrVFZgxtGIJDwq9gdkT/r+k0fNX2bwE+oLeMt8EifAA -# zV3C+dAjfwAL5HYCJtnwZXZCpimHCUcr5n8apIUP/JiW9lVUKx+A+sDyDivl1vup -# L0QVSucTDh3bNzgaoSv27dZ8/DCCBsYwggSuoAMCAQICEAp6SoieyZlCkAZjOE2G -# l50wDQYJKoZIhvcNAQELBQAwYzELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDkRpZ2lD -# ZXJ0LCBJbmMuMTswOQYDVQQDEzJEaWdpQ2VydCBUcnVzdGVkIEc0IFJTQTQwOTYg -# U0hBMjU2IFRpbWVTdGFtcGluZyBDQTAeFw0yMjAzMjkwMDAwMDBaFw0zMzAzMTQy -# MzU5NTlaMEwxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjEk -# MCIGA1UEAxMbRGlnaUNlcnQgVGltZXN0YW1wIDIwMjIgLSAyMIICIjANBgkqhkiG -# 9w0BAQEFAAOCAg8AMIICCgKCAgEAuSqWI6ZcvF/WSfAVghj0M+7MXGzj4CUu0jHk -# PECu+6vE43hdflw26vUljUOjges4Y/k8iGnePNIwUQ0xB7pGbumjS0joiUF/DbLW -# +YTxmD4LvwqEEnFsoWImAdPOw2z9rDt+3Cocqb0wxhbY2rzrsvGD0Z/NCcW5QWpF -# QiNBWvhg02UsPn5evZan8Pyx9PQoz0J5HzvHkwdoaOVENFJfD1De1FksRHTAMkcZ -# W+KYLo/Qyj//xmfPPJOVToTpdhiYmREUxSsMoDPbTSSF6IKU4S8D7n+FAsmG4dUY -# FLcERfPgOL2ivXpxmOwV5/0u7NKbAIqsHY07gGj+0FmYJs7g7a5/KC7CnuALS8gI -# 0TK7g/ojPNn/0oy790Mj3+fDWgVifnAs5SuyPWPqyK6BIGtDich+X7Aa3Rm9n3RB -# Cq+5jgnTdKEvsFR2wZBPlOyGYf/bES+SAzDOMLeLD11Es0MdI1DNkdcvnfv8zbHB -# p8QOxO9APhk6AtQxqWmgSfl14ZvoaORqDI/r5LEhe4ZnWH5/H+gr5BSyFtaBocra -# MJBr7m91wLA2JrIIO/+9vn9sExjfxm2keUmti39hhwVo99Rw40KV6J67m0uy4rZB -# Peevpxooya1hsKBBGBlO7UebYZXtPgthWuo+epiSUc0/yUTngIspQnL3ebLdhOon -# 7v59emsCAwEAAaOCAYswggGHMA4GA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAA -# MBYGA1UdJQEB/wQMMAoGCCsGAQUFBwMIMCAGA1UdIAQZMBcwCAYGZ4EMAQQCMAsG -# CWCGSAGG/WwHATAfBgNVHSMEGDAWgBS6FtltTYUvcyl2mi91jGogj57IbzAdBgNV -# HQ4EFgQUjWS3iSH+VlhEhGGn6m8cNo/drw0wWgYDVR0fBFMwUTBPoE2gS4ZJaHR0 -# cDovL2NybDMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0VHJ1c3RlZEc0UlNBNDA5NlNI -# QTI1NlRpbWVTdGFtcGluZ0NBLmNybDCBkAYIKwYBBQUHAQEEgYMwgYAwJAYIKwYB -# BQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBYBggrBgEFBQcwAoZMaHR0 -# cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0VHJ1c3RlZEc0UlNBNDA5 -# NlNIQTI1NlRpbWVTdGFtcGluZ0NBLmNydDANBgkqhkiG9w0BAQsFAAOCAgEADS0j -# dKbR9fjqS5k/AeT2DOSvFp3Zs4yXgimcQ28BLas4tXARv4QZiz9d5YZPvpM63io5 -# WjlO2IRZpbwbmKrobO/RSGkZOFvPiTkdcHDZTt8jImzV3/ZZy6HC6kx2yqHcoSuW -# uJtVqRprfdH1AglPgtalc4jEmIDf7kmVt7PMxafuDuHvHjiKn+8RyTFKWLbfOHzL -# +lz35FO/bgp8ftfemNUpZYkPopzAZfQBImXH6l50pls1klB89Bemh2RPPkaJFmMg -# a8vye9A140pwSKm25x1gvQQiFSVwBnKpRDtpRxHT7unHoD5PELkwNuTzqmkJqIt+ -# ZKJllBH7bjLx9bs4rc3AkxHVMnhKSzcqTPNc3LaFwLtwMFV41pj+VG1/calIGnjd -# RncuG3rAM4r4SiiMEqhzzy350yPynhngDZQooOvbGlGglYKOKGukzp123qlzqkhq -# WUOuX+r4DwZCnd8GaJb+KqB0W2Nm3mssuHiqTXBt8CzxBxV+NbTmtQyimaXXFWs1 -# DoXW4CzM4AwkuHxSCx6ZfO/IyMWMWGmvqz3hz8x9Fa4Uv4px38qXsdhH6hyF4EVO -# EhwUKVjMb9N/y77BDkpvIJyu2XMyWQjnLZKhGhH+MpimXSuX4IvTnMxttQ2uR2M4 -# RxdbbxPaahBuH0m3RFu0CAqHWlkEdhGhp3cCExwxggTyMIIE7gIBATAtMBkxFzAV -# BgNVBAMMDlNvcGhpYSBQcm9qZWN0AhAcEkSh4WVmjkG0WFjSVjfbMAkGBSsOAwIa -# BQCgeDAYBgorBgEEAYI3AgEMMQowCKACgAChAoAAMBkGCSqGSIb3DQEJAzEMBgor -# BgEEAYI3AgEEMBwGCisGAQQBgjcCAQsxDjAMBgorBgEEAYI3AgEVMCMGCSqGSIb3 -# DQEJBDEWBBRPYX3amkaYT77EiKuS0eF90GT+HjANBgkqhkiG9w0BAQEFAASCAQB9 -# fFWGiYw2V+YtffqzK2q+3bLXJt3t1oQthfziuNSP9PjbDgVPAZFwBJHpIRoarJsC -# rpZ5uvJmrJQjY4gvfIfrktZkYf5X+dmpVzGRejocFYpXvs6b5KtQIhhBeURiA63D -# q7PaM1D+bn/qTP2DH2vx7jhX0bvFmoSLZ4fyoOyeODn65vrdUYdpS+P55BYOba/r -# FAakiRhrJoO8Z1V4iHqz/c9Deb4LxAdJ7MYkzqWdL41qe7DQP0KdbnDVl7/FtJ2/ -# kWsn+Af2GhO7ArAe0U8FmajNCqzXuJgQigDe4OLOzADu6r1s6NiztxB935fYUlzK -# fbXIOnfJaGpouzG/t2TAoYIDIDCCAxwGCSqGSIb3DQEJBjGCAw0wggMJAgEBMHcw -# YzELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDkRpZ2lDZXJ0LCBJbmMuMTswOQYDVQQD -# EzJEaWdpQ2VydCBUcnVzdGVkIEc0IFJTQTQwOTYgU0hBMjU2IFRpbWVTdGFtcGlu -# ZyBDQQIQCnpKiJ7JmUKQBmM4TYaXnTANBglghkgBZQMEAgEFAKBpMBgGCSqGSIb3 -# DQEJAzELBgkqhkiG9w0BBwEwHAYJKoZIhvcNAQkFMQ8XDTIyMDcwMzIxMjkzMlow -# LwYJKoZIhvcNAQkEMSIEINUTmb8NCh4h3R+ipL/LrV9oMyKbowksFUA0yPVNJg8d -# MA0GCSqGSIb3DQEBAQUABIICABsVTwAA51sDcRzsOkKP9q8MuRiOA5ZBR2mUu7ZY -# qwQVnW3m53ASWFogEnfBZBZchbJkyy0y/NJuDcZ/tyAoL0G4BbfVaEzcbHj5DZMS -# lG4B/xuxr3EbQvJsdXRFk6+k9IbizDv4y22CCmfliebu/AjTtifC07oj0FfbPmBb -# WRckLcKDLidIrkZbNMAO8p9/z4vRuQi1DXBv8+vlZjEmBSLAXhJ4+rOrn3qDJrHB -# zWz2QCOU7KnKc9PRCBC/RcICWgbrgaLzmHIUFkYwCEgMMjK3fMIrBcUEMJ0L8svg -# A8/dXJicDpF/SbeRN+kYSbG3dBfIV4K6zQddKHx6PAZ9JwZkN9+MQwyaBs2/QPDb -# /ag08LpJz/2bjsaWbJK9+P+DVFl3usI9On0E9Uj4V5SiwQ0F5lfR+qmMdOwyGAYg -# RGydTFhTfxp/1NmClxW6b4XBjX/Yxm+u/ZZrgm4taIcksT8H2XsIueK3NrDEZINP -# zpNff2+3/3skaQDsfHkPjPY+zXgYIT1gBkDh+Bp3XRVM7yNrUZLCfBLWnpxu5zoR -# n+tV0xRuZ0QdQ9P0pYT3xAACfErpNufp9Mv5wYPMr+bFO4xB8zUUNy81KTPVfEVd -# MkrE/kRgBiBu78ZC145YT+f2Sy2WnppSvY4xEBpg93zo/k5VIL8TDFJ6X7Ur8zwi -# Wx0u -# SIG # End signature block +Errors \ No newline at end of file diff --git a/Sophia Script/Sophia Script for Windows 11 PowerShell 7/bin/Microsoft.Windows.SDK.NET.dll b/Sophia Script/Sophia Script for Windows 11 PowerShell 7/bin/Microsoft.Windows.SDK.NET.dll deleted file mode 100644 index ffe1c278..00000000 Binary files a/Sophia Script/Sophia Script for Windows 11 PowerShell 7/bin/Microsoft.Windows.SDK.NET.dll and /dev/null differ diff --git a/Sophia Script/Sophia Script for Windows 11 PowerShell 7/bin/Start_Layout/start.bin b/Sophia Script/Sophia Script for Windows 11 PowerShell 7/bin/Start_Layout/start.bin deleted file mode 100644 index 1afb7f53..00000000 Binary files a/Sophia Script/Sophia Script for Windows 11 PowerShell 7/bin/Start_Layout/start.bin and /dev/null differ diff --git a/Sophia Script/Sophia Script for Windows 11 PowerShell 7/bin/WinRT.Runtime.dll b/Sophia Script/Sophia Script for Windows 11 PowerShell 7/bin/WinRT.Runtime.dll deleted file mode 100644 index 83a4082e..00000000 Binary files a/Sophia Script/Sophia Script for Windows 11 PowerShell 7/bin/WinRT.Runtime.dll and /dev/null differ diff --git a/Sophia Script/Sophia Script for Windows 11/Functions.ps1 b/Sophia Script/Sophia Script for Windows 11/Functions.ps1 index 618d4aec..2d1d5c0e 100644 --- a/Sophia Script/Sophia Script for Windows 11/Functions.ps1 +++ b/Sophia Script/Sophia Script for Windows 11/Functions.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS The TAB completion for functions and their arguments - Version: v6.1.0 - Date: 04.07.2022 + Version: v6.1.1 + Date: 05.07.2022 Copyright (c) 2014—2022 farag Copyright (c) 2019—2022 farag & Inestic @@ -54,7 +54,7 @@ function Sophia Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.1.0 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.1.1 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" Remove-Module -Name Sophia -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force diff --git a/Sophia Script/Sophia Script for Windows 11/Manifest/Sophia.psd1 b/Sophia Script/Sophia Script for Windows 11/Manifest/Sophia.psd1 index dffee1c1..4818a6cc 100644 --- a/Sophia Script/Sophia Script for Windows 11/Manifest/Sophia.psd1 +++ b/Sophia Script/Sophia Script for Windows 11/Manifest/Sophia.psd1 @@ -1,6 +1,6 @@ @{ RootModule = '..\Module\Sophia.psm1' - ModuleVersion = '6.1.0' + ModuleVersion = '6.1.1' GUID = '109cc881-c42b-45af-a74a-550781989d6a' Author = 'Dmitry "farag" Nefedov' Copyright = '(c) 2014—2022 farag & Inestic. All rights reserved' diff --git a/Sophia Script/Sophia Script for Windows 11/Module/Sophia.psm1 b/Sophia Script/Sophia Script for Windows 11/Module/Sophia.psm1 index 2ec66794..68b9ac90 100644 --- a/Sophia Script/Sophia Script for Windows 11/Module/Sophia.psm1 +++ b/Sophia Script/Sophia Script for Windows 11/Module/Sophia.psm1 @@ -2,8 +2,8 @@ .SYNOPSIS Sophia Script is a PowerShell module for Windows 10 & Windows 11 fine-tuning and automating the routine tasks - Version: v6.1.0 - Date: 04.07.2022 + Version: v6.1.1 + Date: 05.07.2022 Copyright (c) 2014—2022 farag Copyright (c) 2019—2022 farag & Inestic @@ -508,6 +508,7 @@ function DiagnosticDataLevel } "Default" { + # Optional diagnostic data Remove-ItemProperty -Path HKLM:\Software\Policies\Microsoft\Windows\DataCollection -Name AllowTelemetry -Force New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection -Name MaxTelemetryAllowed -PropertyType DWord -Value 3 -Force @@ -5242,6 +5243,11 @@ function NetworkAdaptersSavePower $Enable ) + if (Get-NetAdapter -Physical | Where-Object -FilterScript {$_.Status -eq "Up"}) + { + $PhysicalAdaptersStatusUp = @((Get-NetAdapter -Physical | Where-Object -FilterScript {$_.Status -eq "Up"}).Name) + } + $Adapters = Get-NetAdapter -Physical | Get-NetAdapterPowerManagement | Where-Object -FilterScript {$_.AllowComputerToTurnOffDevice -ne "Unsupported"} switch ($PSCmdlet.ParameterSetName) @@ -5264,14 +5270,17 @@ function NetworkAdaptersSavePower } } - # All network adapters are turned into "Disconnected" for few seconds, so we need to wait a bit to let them up. - # Otherwise functions below will indicate that there is not the Internet connection. - while - ( - Get-NetAdapter -Physical | ForEach-Object -Process {$_.Status -eq "Disconnected"} - ) + # All network adapters are turned into "Disconnected" for few seconds, so we need to wait a bit to let them up + # Otherwise functions below will indicate that there is no the Internet connection + if ($PhysicalAdaptersStatusUp) { - Start-Sleep -Milliseconds 100 + while + ( + Get-NetAdapter -Physical -Name $PhysicalAdaptersStatusUp | ForEach-Object -Process {$_.Status -eq "Disconnected"} + ) + { + Start-Sleep -Seconds 2 + } } } @@ -8076,10 +8085,10 @@ function InstallDotNetRuntime6 { # https://github.com/dotnet/core/blob/main/release-notes/releases-index.json $Parameters = @{ - Uri = "https://raw.githubusercontent.com/dotnet/core/main/release-notes/releases-index.json" - UseBasicParsing = $true + Uri = "https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/6.0/releases.json" + UseBasicParsing = $true } - $LatestRelease = ((Invoke-RestMethod @Parameters)."releases-index" | Where-Object -FilterScript {$_."channel-version" -eq "6.0"})."latest-release" + $LatestRelease = (Invoke-RestMethod @Parameters)."latest-release" $DownloadsFolder = Get-ItemPropertyValue -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" -Name "{374DE290-123F-4565-9164-39C4925E467B}" # .NET Desktop Runtime x86 @@ -8537,6 +8546,7 @@ function UninstallUWPApps # Photos (and Video Editor) "Microsoft.Windows.Photos", "Microsoft.Photos.MediaEngineDLC", + "Microsoft.RawImageExtension" # HEVC Video Extensions from Device Manufacturer "Microsoft.HEVCVideoExtension", @@ -12104,8 +12114,8 @@ function Windows10ContextMenu #> function UpdateLGPEPolicies { - Write-Information -MessageData "" -InformationAction Continue Write-Verbose -Message $Localization.Patient -Verbose + Write-Information -MessageData "" -InformationAction Continue # Local Machine policies paths to scan recursively $LM_Paths = @( @@ -12132,7 +12142,6 @@ function UpdateLGPEPolicies { try { - Write-Information -MessageData "" -InformationAction Continue Write-Verbose -Message $Item.Replace("{}", "") -Verbose $Parameters = @{ @@ -12181,7 +12190,6 @@ function UpdateLGPEPolicies { try { - Write-Information -MessageData "" -InformationAction Continue Write-Verbose -Message $Item.Replace("{}", "") -Verbose $Parameters = @{ @@ -12205,6 +12213,19 @@ function UpdateLGPEPolicies } } + # Re-build GPT.ini if it doesn't exist + if (-not (Test-Path -Path $env:SystemRoot\System32\GroupPolicy\GPT.ini)) + { + Start-Process -FilePath gpedit.msc + Start-Sleep -Seconds 2 + + # Get mmc.exe's Id with its' argument (gpedit.msc) to close + $gpedit_Process_ID = (Get-CimInstance -ClassName CIM_Process | Where-Object -FilterScript { + $_.Name -eq "mmc.exe" + } | Where-Object -FilterScript {$_.CommandLine -match "GPEDIT.MSC"}).Handle + Get-Process -Id $gpedit_Process_ID | Stop-Process -Force + } + Update-GptIniVersion -Path $env:SystemRoot\System32\GroupPolicy\GPT.ini -PolicyType Machine, User # Apply the new policy immediately diff --git a/Sophia Script/Sophia Script for Windows 11/Sophia.ps1 b/Sophia Script/Sophia Script for Windows 11/Sophia.ps1 index 8c4f5004..bca9aadf 100644 --- a/Sophia Script/Sophia Script for Windows 11/Sophia.ps1 +++ b/Sophia Script/Sophia Script for Windows 11/Sophia.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS Default preset file for "Sophia Script for Windows 11" - Version: v6.1.0 - Date: 04.07.2022 + Version: v6.1.1 + Date: 05.07.2022 Copyright (c) 2014—2022 farag Copyright (c) 2019—2022 farag & Inestic @@ -70,7 +70,7 @@ param Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.1.0 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.1.1 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2022" Remove-Module -Name Sophia -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force diff --git a/Sophia Script/Sophia Script for Windows 11/bin/Start_Layout/start.bin b/Sophia Script/Sophia Script for Windows 11/bin/Start_Layout/start.bin deleted file mode 100644 index 1afb7f53..00000000 Binary files a/Sophia Script/Sophia Script for Windows 11/bin/Start_Layout/start.bin and /dev/null differ diff --git a/Wrapper/Config/config_Windows_10.json b/Wrapper/Config/config_Windows_10.json index 797cfebb..6a6c964f 100644 --- a/Wrapper/Config/config_Windows_10.json +++ b/Wrapper/Config/config_Windows_10.json @@ -2466,7 +2466,7 @@ "Tag": "" } }, - "Preset": "", + "Preset": "Zero", "WindowsDefault": "" } ] diff --git a/Wrapper/Config/config_Windows_10_LTSC.json b/Wrapper/Config/config_Windows_10_LTSC.json index acc19b40..00e307c6 100644 --- a/Wrapper/Config/config_Windows_10_LTSC.json +++ b/Wrapper/Config/config_Windows_10_LTSC.json @@ -2742,7 +2742,7 @@ "Tag": "" } }, - "Preset": "", + "Preset": "Zero", "WindowsDefault": "", "LTSC2019": "true", "LTSC2021": "true" diff --git a/Wrapper/Config/config_Windows_11.json b/Wrapper/Config/config_Windows_11.json index e846c07a..bf5f22a1 100644 --- a/Wrapper/Config/config_Windows_11.json +++ b/Wrapper/Config/config_Windows_11.json @@ -2306,7 +2306,7 @@ "Tag": "" } }, - "Preset": "", + "Preset": "Zero", "WindowsDefault": "" } ] diff --git a/Wrapper/Localizations/it-IT/tooltip_Windows_10.json b/Wrapper/Localizations/it-IT/tooltip_Windows_10.json deleted file mode 100644 index a6e645f0..00000000 --- a/Wrapper/Localizations/it-IT/tooltip_Windows_10.json +++ /dev/null @@ -1,2207 +0,0 @@ -[ - { - "Id": 100, - "Region": "Protection", - "Function": "Checkings", - "Arg": { - "Zero": { - "Tag": "Warning", - "ToolTip": "I controlli obbligatori. Se si desidera Disablere un messaggio di avviso sul fatto che il file preimpostato sia stato personalizzato, rimuovere l'argomento \"-Warning \"" - }, - "One": { - "Tag": "", - "ToolTip": "I controlli obbligatori .Nessun argomento, quindi nessun messaggio di avviso sul fatto che tu abbia personalizzato il file preimpostato" - } - } - }, - { - "Id": 101, - "Region": "Protection", - "Function": "Logging", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Enable il logging dello script. Il log verrà registrato nella cartella dello script. Per interrompere la registrazione basta chiudere la console o il digitare \"Stop-Transcript\"" - } - } - }, - { - "Id": 102, - "Region": "Protection", - "Function": "CreateRestorePoint", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Crea un punto di ripristino" - } - } - }, - { - "Id": 200, - "Region": "Privacy & Telemetry", - "Function": "DiagTrackService", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable il servizio \"Esperienze utente connesse e telemetria\" (DiagTrack) e bloccare la connessione per il traffico in uscita del client di telemetria unificata" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable il servizio Diagtrack, regola del firewall per il traffico in uscita client unificato e consentine la connessione (Impostazione predefinita)" - } - } - }, - { - "Id": 201, - "Region": "Privacy & Telemetry", - "Function": "DiagnosticDataLevel", - "Arg": { - "Zero": { - "Tag": "Minimal", - "ToolTip": "Imposta il livello della raccolta dei dati diagnostici del sistema operativo al minimo" - }, - "One": { - "Tag": "Default", - "ToolTip": "Imposta la raccolta dei dati diagnostici su predefinito (Impostazione predefinita)" - } - } - }, - { - "Id": 202, - "Region": "Privacy & Telemetry", - "Function": "ErrorReporting", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disattiva il reporting degli errori di Windows" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable il report di errore di Windows (Impostazione predefinita)" - } - } - }, - { - "Id": 203, - "Region": "Privacy & Telemetry", - "Function": "FeedbackFrequency", - "Arg": { - "Zero": { - "Tag": "Never", - "ToolTip": "Imposta la frequenza di richiesta feedback in \"mai \"" - }, - "One": { - "Tag": "Automatically", - "ToolTip": "Imposta la frequenza di richiesta feedback in \"Default \" (Impostazione predefinita)" - } - } - }, - { - "Id": 204, - "Region": "Privacy & Telemetry", - "Function": "ScheduledTasks", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disattiva le operazioni pianificate di tracciamento diagnostico" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable le operazioni pianificate per il monitoraggio diagnostico (Impostazione predefinita)" - } - } - }, - { - "Id": 205, - "Region": "Privacy & Telemetry", - "Function": "SigninInfo", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Non utilizzare le informazioni di accesso per ultimare automaticamente l'aggiornamento del dispositivo e riaprire le app dopo un aggiornamento o riavvio" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Utilizza le informazioni di accesso per ultimare automaticamente l'aggiornamento del dispositivo e riaprire le app dopo un aggiornamento o riavvio (Impostazio predefinita)" - } - } - }, - { - "Id": 206, - "Region": "Privacy & Telemetry", - "Function": "LanguageListAccess", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Non consentire ai siti Web di fornire contenuti localmente pertinenti accedendo all'elenco delle lingue" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Permetti ai siti Web di fornire contenuti localmente pertinenti accedendo all'elenco delle lingue (Impostazio predefinita)" - } - } - }, - { - "Id": 207, - "Region": "Privacy & Telemetry", - "Function": "AdvertisingID", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Non consentire alle app di utilizzare l'ID pubblicitario" - }, - "One": { - "Tag": "Enable", - "ToolTip": "consenti alle app di utilizzare l'ID pubblicitario (Impostazione predefinita)" - } - } - }, - { - "Id": 208, - "Region": "Privacy & Telemetry", - "Function": "WindowsWelcomeExperience", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Nascondi l'esperienza di benvenuto di Windows dopo gli aggiornamenti e occasionalmente quando accedo per evidenziare novità e suggerimenti" - }, - "One": { - "Tag": "Show", - "ToolTip": "Mostra l'esperienza di benvenuto di Windows dopo gli aggiornamenti e occasionalmente quando accedo per evidenziare novità e suggerimenti (Impostazione predefinita)" - } - } - }, - { - "Id": 209, - "Region": "Privacy & Telemetry", - "Function": "WindowsTips", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Ottieni suggerimenti, trucchi e suggerimenti mentre usi Windows (Impostazione predefinita)" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Non ricevere suggerimenti, trucchi e suggerimenti mentre usi Windows" - } - } - }, - { - "Id": 210, - "Region": "Privacy & Telemetry", - "Function": "SettingsSuggestedContent", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide from me suggested content in the Settings app" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show me suggested content in the Settings app (Impostazione predefinita)" - } - } - }, - { - "Id": 211, - "Region": "Privacy & Telemetry", - "Function": "AppsSilentInstalling", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disattiva automatic installing suggested apps" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable automatic installing suggested apps (Impostazione predefinita)" - } - } - }, - { - "Id": 212, - "Region": "Privacy & Telemetry", - "Function": "WhatsNewInWindows", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Do not suggest ways I can finish setting up my device to get the most out of Windows" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Suggest ways I can finish setting up my device to get the most out of Windows (Impostazione predefinita)" - } - } - }, - { - "Id": 213, - "Region": "Privacy & Telemetry", - "Function": "TailoredExperiences", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Do not let Microsoft offer you tailored expereinces based on the diagnostic data setting you hava chosen" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Let Microsoft offer you tailored expereinces based on the diagnostic data setting you hava chosen (Impostazione predefinita)" - } - } - }, - { - "Id": 214, - "Region": "Privacy & Telemetry", - "Function": "BingSearch", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable Bing search in the Start Menu (for the USA only)" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable Bing search in the Start Menu (Impostazione predefinita)" - } - } - }, - { - "Id": 300, - "Region": "UI & Personalization", - "Function": "ThisPC", - "Arg": { - "Zero": { - "Tag": "Show", - "ToolTip": "Show the \"This PC\" icon on Desktop" - }, - "One": { - "Tag": "Hide", - "ToolTip": "Hide the \"This PC\" icon on Desktop (Impostazione predefinita)" - } - } - }, - { - "Id": 301, - "Region": "UI & Personalization", - "Function": "CheckBoxes", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Do not use item check boxes" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Use check boxes to select items (Impostazione predefinita)" - } - } - }, - { - "Id": 302, - "Region": "UI & Personalization", - "Function": "HiddenItems", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Show hidden files, folders, and drives" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Do not show hidden files, folders, and drives (Impostazione predefinita)" - } - } - }, - { - "Id": 303, - "Region": "UI & Personalization", - "Function": "FileExtensions", - "Arg": { - "Zero": { - "Tag": "Show", - "ToolTip": "Show the file name extensions" - }, - "One": { - "Tag": "Hide", - "ToolTip": "Hide the file name extensions (Impostazione predefinita)" - } - } - }, - { - "Id": 304, - "Region": "UI & Personalization", - "Function": "MergeConflicts", - "Arg": { - "Zero": { - "Tag": "Show", - "ToolTip": "Show folder merge conflicts" - }, - "One": { - "Tag": "Hide", - "ToolTip": "Hide folder merge conflicts (Impostazione predefinita)" - } - } - }, - { - "Id": 305, - "Region": "UI & Personalization", - "Function": "OpenFileExplorerTo", - "Arg": { - "Zero": { - "Tag": "ThisPC", - "ToolTip": "Open File Explorer to \"This PC\"" - }, - "One": { - "Tag": "QuickAccess", - "ToolTip": "Open File Explorer to Quick access (Impostazione predefinita)" - } - } - }, - { - "Id": 306, - "Region": "UI & Personalization", - "Function": "FileExplorerMode", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable the File Explorer compact mode" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable the File Explorer compact mode (Impostazione predefinita)" - } - } - }, - { - "Id": 307, - "Region": "UI & Personalization", - "Function": "CortanaButton", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide Cortana button on the taskbar" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show Cortana button on the taskbar (Impostazione predefinita)" - } - } - }, - { - "Id": 308, - "Region": "UI & Personalization", - "Function": "OneDriveFileExplorerAd", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Do not show sync provider notification within File Explorer" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show sync provider notification within File Explorer (Impostazione predefinita)" - } - } - }, - { - "Id": 309, - "Region": "UI & Personalization", - "Function": "SnapAssist", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "When I snap a window, do not show what I can snap next to it" - }, - "One": { - "Tag": "Enable", - "ToolTip": "When I snap a window, show what I can snap next to it (Impostazione predefinita)" - } - } - }, - { - "Id": 310, - "Region": "UI & Personalization", - "Function": "FileTransferDialog", - "Arg": { - "Zero": { - "Tag": "Detailed", - "ToolTip": "Show the file transfer dialog box in the detailed mode" - }, - "One": { - "Tag": "Compact", - "ToolTip": "Show the file transfer dialog box in the compact mode (Impostazione predefinita)" - } - } - }, - { - "Id": 311, - "Region": "UI & Personalization", - "Function": "FileExplorerRibbon", - "Arg": { - "Zero": { - "Tag": "Expanded", - "ToolTip": "Expand the File Explorer ribbon" - }, - "One": { - "Tag": "Minimized", - "ToolTip": "Minimize the File Explorer ribbon (Impostazione predefinita)" - } - } - }, - { - "Id": 312, - "Region": "UI & Personalization", - "Function": "RecycleBinDeleteConfirmation", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Display the recycle bin files delete confirmation" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Do not display the recycle bin files delete confirmation (Impostazione predefinita)" - } - } - }, - { - "Id": 313, - "Region": "UI & Personalization", - "Function": "3DObjects", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"3D Objects\" folder in \"This PC\" and \"Quick access\"" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"3D Objects\" folder in \"This PC\" and \"Quick access\" (Impostazione predefinita)" - } - } - }, - { - "Id": 314, - "Region": "UI & Personalization", - "Function": "QuickAccessRecentFiles", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide frequently used files in Quick access" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show recently used files in Quick access (Impostazione predefinita)" - } - } - }, - { - "Id": 315, - "Region": "UI & Personalization", - "Function": "QuickAccessFrequentFolders", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide frequently used folders in Quick access" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show frequently used folders in Quick access (Impostazione predefinita)" - } - } - }, - { - "Id": 316, - "Region": "UI & Personalization", - "Function": "TaskbarSearch", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the search on the taskbar" - }, - "One": { - "Tag": "SearchIcon", - "ToolTip": "Show the search icon on the taskbar" - }, - "Two": { - "Tag": "SearchBox", - "ToolTip": "Show the search box on the taskbar (Impostazione predefinita)" - } - } - }, - { - "Id": 317, - "Region": "UI & Personalization", - "Function": "TaskViewButton", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the Task View button on the taskbar" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the Task View button on the taskbar (Impostazione predefinita)" - } - } - }, - { - "Id": 318, - "Region": "UI & Personalization", - "Function": "SearchHighlights", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Nascondi i punti salienti della ricerca" - }, - "One": { - "Tag": "Show", - "ToolTip": "Mostra i punti salienti della ricerca (Impostazione predefinita)" - } - } - }, - { - "Id": 319, - "Region": "UI & Personalization", - "Function": "PeopleTaskbar", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide People on the taskbar" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show People on the taskbar (Impostazione predefinita)" - } - } - }, - { - "Id": 320, - "Region": "UI & Personalization", - "Function": "SecondsInSystemClock", - "Arg": { - "Zero": { - "Tag": "Show", - "ToolTip": "Show seconds on the taskbar clock" - }, - "One": { - "Tag": "Hide", - "ToolTip": "Hide seconds on the taskbar clock (default value)" - } - } - }, - { - "Id": 321, - "Region": "UI & Personalization", - "Function": "WindowsInkWorkspace", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the Windows Ink Workspace button on the taskbar" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the Windows Ink Workspace button in taskbar (Impostazione predefinita)" - } - } - }, - { - "Id": 322, - "Region": "UI & Personalization", - "Function": "NotificationAreaIcons", - "Arg": { - "Zero": { - "Tag": "Show", - "ToolTip": "Always show all icons in the notification area" - }, - "One": { - "Tag": "Hide", - "ToolTip": "Hide all icons in the notification area (Impostazione predefinita)" - } - } - }, - { - "Id": 323, - "Region": "UI & Personalization", - "Function": "MeetNow", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the Meet Now icon in the notification area" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the Meet Now icon in the notification area (Impostazione predefinita)" - } - } - }, - { - "Id": 324, - "Region": "UI & Personalization", - "Function": "NewsInterests", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable \"News and Interests\" on the taskbar" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable \"News and Interests\" on the taskbar (Impostazione predefinita)" - } - } - }, - { - "Id": 325, - "Region": "UI & Personalization", - "Function": "UnpinTaskbarShortcuts -Shortcuts", - "ToolTip": "Unpin the \"Microsoft Edge\", \"Microsoft Store\", or \"Mail\" shortcuts from the taskbar", - "Arg": { - "Zero": { - "Tag": "Edge", - "ToolTip": "Unpin the \"Microsoft Edge\" shortcut from the taskbar" - }, - "One": { - "Tag": "Store", - "ToolTip": "Unpin the \"Microsoft Store\" shortcut from the taskbar" - }, - "Two": { - "Tag": "Mail", - "ToolTip": "Unpin the \"Mail\" shortcut from the taskbar" - } - } - }, - { - "Id": 326, - "Region": "UI & Personalization", - "Function": "ControlPanelView", - "Arg": { - "Zero": { - "Tag": "LargeIcons", - "ToolTip": "View the Control Panel icons by large icons" - }, - "One": { - "Tag": "SmallIcons", - "ToolTip": "View the Control Panel icons by small icons" - }, - "Two": { - "Tag": "Category", - "ToolTip": "View the Control Panel icons by category (Impostazione predefinita)" - } - } - }, - { - "Id": 327, - "Region": "UI & Personalization", - "Function": "WindowsColorMode", - "Arg": { - "Zero": { - "Tag": "Dark", - "ToolTip": "Set the default Windows mode to dark" - }, - "One": { - "Tag": "Light", - "ToolTip": "Set the default Windows mode to light (Impostazione predefinita)" - } - } - }, - { - "Id": 328, - "Region": "UI & Personalization", - "Function": "AppColorMode", - "Arg": { - "Zero": { - "Tag": "Dark", - "ToolTip": "Set the default app mode to dark" - }, - "One": { - "Tag": "Light", - "ToolTip": "Set the default app mode to light (Impostazione predefinita)" - } - } - }, - { - "Id": 329, - "Region": "UI & Personalization", - "Function": "NewAppInstalledNotification", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"New App Installed\" indicator" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"New App Installed\" indicator (Impostazione predefinita)" - } - } - }, - { - "Id": 330, - "Region": "UI & Personalization", - "Function": "FirstLogonAnimation", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Hide user first sign-in animation after the upgrade" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Show user first sign-in animation after the upgrade (Impostazione predefinita)" - } - } - }, - { - "Id": 331, - "Region": "UI & Personalization", - "Function": "JPEGWallpapersQuality", - "Arg": { - "Zero": { - "Tag": "Max", - "ToolTip": "Set the quality factor of the JPEG desktop wallpapers to maximum" - }, - "One": { - "Tag": "Default", - "ToolTip": "Set the quality factor of the JPEG desktop wallpapers to default (Impostazione predefinita)" - } - } - }, - { - "Id": 332, - "Region": "UI & Personalization", - "Function": "TaskManagerWindow", - "Arg": { - "Zero": { - "Tag": "Expanded", - "ToolTip": "Start Task Manager in the expanded mode" - }, - "One": { - "Tag": "Compact", - "ToolTip": "Start Task Manager in the compact mode (Impostazione predefinita)" - } - } - }, - { - "Id": 333, - "Region": "UI & Personalization", - "Function": "RestartNotification", - "Arg": { - "Zero": { - "Tag": "Show", - "ToolTip": "Show a notification when your PC requires a restart to finish updating" - }, - "One": { - "Tag": "Hide", - "ToolTip": "Do not show a notification when your PC requires a restart to finish updating (Impostazione predefinita)" - } - } - }, - { - "Id": 334, - "Region": "UI & Personalization", - "Function": "ShortcutsSuffix", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Do not add the \"- Shortcut\" suffix to the file name of created shortcuts" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Add the \"- Shortcut\" suffix to the file name of created shortcuts (Impostazione predefinita)" - } - } - }, - { - "Id": 335, - "Region": "UI & Personalization", - "Function": "PrtScnSnippingTool", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Use the Print screen button to open screen snipping" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Do not use the Print screen button to open screen snipping (Impostazione predefinita)" - } - } - }, - { - "Id": 336, - "Region": "UI & Personalization", - "Function": "AppsLanguageSwitch", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Let me use a different input method for each app window" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Do not use a different input method for each app window (Impostazione predefinita)" - } - } - }, - { - "Id": 337, - "Region": "UI & Personalization", - "Function": "AeroShaking", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "When I grab a windows's title bar and shake it, don't minimize all other windows (Impostazione predefinita)" - }, - "One": { - "Tag": "Disable", - "ToolTip": "When I grab a windows's title bar and shake it, minimize all other windows" - } - } - }, - { - "Id": 400, - "Region": "OneDrive", - "Function": "OneDrive", - "Arg": { - "Zero": { - "Tag": "Uninstall", - "ToolTip": "Uninstall OneDrive. The OneDrive user folder won't be removed" - }, - "One": { - "Tag": "Install", - "ToolTip": "Install OneDrive 64-bit" - } - } - }, - { - "Id": 500, - "Region": "System", - "Function": "StorageSense", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable Storage Sense" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disattiva Storage Sense (Impostazione predefinita)" - } - } - }, - { - "Id": 501, - "Region": "System", - "Function": "StorageSenseFrequency", - "Arg": { - "Zero": { - "Tag": "Month", - "ToolTip": "Run Storage Sense every month" - }, - "One": { - "Tag": "Default", - "ToolTip": "Run Storage Sense during low free disk space (Impostazione predefinita)" - } - } - }, - { - "Id": 502, - "Region": "System", - "Function": "StorageSenseTempFiles", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Delete temporary files that apps aren't using (Impostazione predefinita)" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Do not delete temporary files that apps aren't using" - } - } - }, - { - "Id": 503, - "Region": "System", - "Function": "Hibernation", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable hibernation. Do not recommend turning it off on laptops" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable hibernate (Impostazione predefinita)" - } - } - }, - { - "Id": 504, - "Region": "System", - "Function": "TempFolder", - "Arg": { - "Zero": { - "Tag": "SystemDrive", - "ToolTip": "Change the %TEMP% environment variable path to %SystemDrive%\\Temp" - }, - "One": { - "Tag": "Default", - "ToolTip": "Change %TEMP% environment variable path to %LOCALAPPDATA%\\Temp (Impostazione predefinita)" - } - } - }, - { - "Id": 505, - "Region": "System", - "Function": "Win32LongPathLimit", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable the Windows 260 characters path limit" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable the Windows 260 character path limit (Impostazione predefinita)" - } - } - }, - { - "Id": 506, - "Region": "System", - "Function": "BSoDStopError", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Display Stop error code when BSoD occurs" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Do not Stop error code when BSoD occurs (Impostazione predefinita)" - } - } - }, - { - "Id": 507, - "Region": "System", - "Function": "AdminApprovalMode", - "Arg": { - "Zero": { - "Tag": "Never", - "ToolTip": "Choose when to be notified about changes to your computer: never notify" - }, - "One": { - "Tag": "Default", - "ToolTip": "Choose when to be notified about changes to your computer: notify me only when apps try to make changes to my computer (Impostazione predefinita)" - } - } - }, - { - "Id": 508, - "Region": "System", - "Function": "MappedDrivesAppElevatedAccess", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable access to mapped drives from app running with elevated permissions with Admin Approval Mode enabled" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disattiva access to mapped drives from app running with elevated permissions with Admin Approval Mode enabled (Impostazione predefinita)" - } - } - }, - { - "Id": 509, - "Region": "System", - "Function": "DeliveryOptimization", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disattiva Delivery Optimization" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable Delivery Optimization (Impostazione predefinita)" - } - } - }, - { - "Id": 510, - "Region": "System", - "Function": "WaitNetworkStartup", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Always wait for the network at computer startup and logon for workgroup networks" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Never wait for the network at computer startup and logon for workgroup networks (Impostazione predefinita)" - } - } - }, - { - "Id": 511, - "Region": "System", - "Function": "WindowsManageDefaultPrinter", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Do not let Windows manage my default printer" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Let Windows manage my default printer (Impostazione predefinita)" - } - } - }, - { - "Id": 512, - "Region": "System", - "Function": "WindowsFeatures", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable the Windows features using the pop-up dialog box" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable the Windows features using the pop-up dialog box (Impostazione predefinita)" - } - } - }, - { - "Id": 513, - "Region": "System", - "Function": "WindowsCapabilities", - "Arg": { - "Zero": { - "Tag": "Uninstall", - "ToolTip": "Uninstall optional features using the pop-up dialog box" - }, - "One": { - "Tag": "Install", - "ToolTip": "Install optional features using the pop-up dialog box (Impostazione predefinita)" - } - } - }, - { - "Id": 514, - "Region": "System", - "Function": "UpdateMicrosoftProducts", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Receive updates for other Microsoft products when you update Windows" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Do not receive updates for other Microsoft products when you update Windows (Impostazione predefinita)" - } - } - }, - { - "Id": 515, - "Region": "System", - "Function": "PowerPlan", - "Arg": { - "Zero": { - "Tag": "High", - "ToolTip": "Set power plan on \"High performance\". It isn't recommended to turn on the \"High performance\" power plan on laptops" - }, - "One": { - "Tag": "Balanced", - "ToolTip": "Set the power plan on \"Balanced\" (Impostazione predefinita)" - } - } - }, - { - "Id": 516, - "Region": "System", - "Function": "LatestInstalled.NET", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Use the latest installed .NET runtime for all apps" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Do not use the latest installed .NET runtime for all apps (Impostazione predefinita)" - } - } - }, - { - "Id": 517, - "Region": "System", - "Function": "NetworkAdaptersSavePower", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Do not allow the computer to turn off the network adapters to save power" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Allow the computer to turn off the network adapters to save power (Impostazione predefinita)" - } - } - }, - { - "Id": 518, - "Region": "System", - "Function": "IPv6Component", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable the Internet Protocol Version 6 (TCP/IPv6) component for all network connections. Before invoking the function, a check will be run whether your ISP supports the IPv6 protocol using https://ipv6-test.com" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable the Internet Protocol Version 6 (TCP/IPv6) component for all network connections (Impostazione predefinita). Before invoking the function, a check will be run whether your ISP supports the IPv6 protocol using https://ipv6-test.com" - } - } - }, - { - "Id": 519, - "Region": "System", - "Function": "InputMethod", - "Arg": { - "Zero": { - "Tag": "English", - "ToolTip": "Override for default input method: English" - }, - "One": { - "Tag": "Default", - "ToolTip": "Override for default input method: use language list (Impostazione predefinita)" - } - } - }, - { - "Id": 520, - "Region": "System", - "Function": "SetUserShellFolderLocation", - "Arg": { - "Zero": { - "Tag": "Root", - "ToolTip": "Move user folders location to the root of any drive using the interactive menu. User files or folders won't me moved to a new location. Move them manually. They're located in the %USERPROFILE% folder by default" - }, - "One": { - "Tag": "Custom", - "ToolTip": "Select folders for user folders location manually using a folder browser dialog. User files or folders won't me moved to a new location. Move them manually. They're located in the %USERPROFILE% folder by default" - }, - "Two": { - "Tag": "Default", - "ToolTip": "Change user folders location to the default values. User files or folders won't me moved to a new location. Move them manually. They're located in the %USERPROFILE% folder by default (Impostazione predefinita)" - } - } - }, - { - "Id": 521, - "Region": "System", - "Function": "WinPrtScrFolder", - "Arg": { - "Zero": { - "Tag": "Desktop", - "ToolTip": "Save screenshots by pressing Win+PrtScr on the Desktop. The function will be applied only if the preset is configured to remove OneDrive. Otherwise the backup functionality for the \"Desktop\" and \"Pictures\" folders in OneDrive breaks" - }, - "One": { - "Tag": "Default", - "ToolTip": "Save screenshots by pressing Win+PrtScr in the Pictures folder (Impostazione predefinita)" - } - } - }, - { - "Id": 522, - "Region": "System", - "Function": "RecommendedTroubleshooting", - "Arg": { - "Zero": { - "Tag": "Automatically", - "ToolTip": "Run troubleshooter automatically, then notify. In order this feature to work the OS level of diagnostic data gathering will be set to \"Optional diagnostic data\" and the error reporting feature will be turned on" - }, - "One": { - "Tag": "Default", - "ToolTip": "Ask me before running troubleshooters. In order this feature to work the OS level of diagnostic data gathering will be set to \"Optional diagnostic data\" and the error reporting feature will be turned on (Impostazione predefinita)" - } - } - }, - { - "Id": 523, - "Region": "System", - "Function": "FoldersLaunchSeparateProcess", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Launch folder windows in a separate process" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Do not launch folder windows in a separate process (Impostazione predefinita)" - } - } - }, - { - "Id": 524, - "Region": "System", - "Function": "ReservedStorage", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable and delete reserved storage after the next update installation" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable reserved storage (Impostazione predefinita)" - } - } - }, - { - "Id": 525, - "Region": "System", - "Function": "F1HelpPage", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable help lookup via F1" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable help lookup via F1 (Impostazione predefinita)" - } - } - }, - { - "Id": 526, - "Region": "System", - "Function": "NumLock", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable Num Lock at startup" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable Num Lock at startup (Impostazione predefinita)" - } - } - }, - { - "Id": 527, - "Region": "System", - "Function": "CapsLock", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable Caps Lock" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable Caps Lock (Impostazione predefinita)" - } - } - }, - { - "Id": 528, - "Region": "System", - "Function": "StickyShift", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Do not allow the shortcut key to Start Sticky Keys by pressing the the Shift key 5 times to turn Sticky keys off" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Allow the shortcut key to Start Sticky Keys by pressing the the Shift key 5 times to turn Sticky keys on (Impostazione predefinita)" - } - } - }, - { - "Id": 529, - "Region": "System", - "Function": "Autoplay", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Don't use AutoPlay for all media and devices" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Use AutoPlay for all media and devices (Impostazione predefinita)" - } - } - }, - { - "Id": 530, - "Region": "System", - "Function": "ThumbnailCacheRemoval", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable thumbnail cache removal" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable thumbnail cache removal (Impostazione predefinita)" - } - } - }, - { - "Id": 531, - "Region": "System", - "Function": "SaveRestartableApps", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable automatically saving my restartable apps when signing out and restart them after signing in" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable automatically saving my restartable apps when signing out and restart them after signing in (Impostazione predefinita)" - } - } - }, - { - "Id": 532, - "Region": "System", - "Function": "NetworkDiscovery", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable \"Network Discovery\" and \"File and Printers Sharing\" for workgroup networks" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable \"Network Discovery\" and \"File and Printers Sharing\" for workgroup networks (Impostazione predefinita)" - } - } - }, - { - "Id": 533, - "Region": "System", - "Function": "ActiveHours", - "Arg": { - "Zero": { - "Tag": "Automatically", - "ToolTip": "Automatically adjust active hours for me based on daily usage" - }, - "One": { - "Tag": "Manually", - "ToolTip": "Manually adjust active hours for me based on daily usage (Impostazione predefinita)" - } - } - }, - { - "Id": 534, - "Region": "System", - "Function": "RestartDeviceAfterUpdate", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Restart this device as soon as possible when a restart is required to install an update" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Do not restart this device as soon as possible when a restart is required to install an update (Impostazione predefinita)" - } - } - }, - { - "Id": 535, - "Region": "System", - "Function": "UninstallPCHealthCheck", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Uninstall the \"PC Health Check\" app and prevent it from installing in the future. The KB5005463 update installs the PC Health Check app to check if PC meets the system requirements of Windows 11" - } - } - }, - { - "Id": 536, - "Region": "System", - "Function": "InstallVCRedistx64", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Install the latest Microsoft Visual C++ Redistributable Packages 2015–2022 x64" - } - } - }, - { - "Id": 600, - "Region": "WSL", - "Function": "WSL", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Enable Windows Subsystem for Linux (WSL), install the latest WSL Linux kernel version, and a Linux distribution using a pop-up form. The \"Receive updates for other Microsoft products\" setting will enabled automatically to receive kernel updates" - } - } - }, - { - "Id": 700, - "Region": "Start menu", - "Function": "RecentlyAddedApps", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide recently added apps in the Start menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show recently added apps in the Start menu (Impostazione predefinita)" - } - } - }, - { - "Id": 701, - "Region": "Start menu", - "Function": "AppSuggestions", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide app suggestions in the Start menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show app suggestions in the Start menu (Impostazione predefinita)" - } - } - }, - { - "Id": 702, - "Region": "Start menu", - "Function": "RunPowerShellShortcut", - "Arg": { - "Zero": { - "Tag": "Elevated", - "ToolTip": "Run the Windows PowerShell shortcut from the Start menu as Administrator" - }, - "One": { - "Tag": "NonElevated", - "ToolTip": "Run the Windows PowerShell shortcut from the Start menu as user (Impostazione predefinita)" - } - } - }, - { - "Id": 703, - "Region": "Start menu", - "Function": "PinToStart -Tiles", - "ToolTip": "Pin to Start the following shortcuts: Control Panel, Devices and Printers, PowerShell", - "Arg": { - "Zero": { - "Tag": "ControlPanel", - "ToolTip": "Pin the Control Panel shortcut to Start" - }, - "One": { - "Tag": "DevicesPrinters", - "ToolTip": "Pin the \"Devices & Printers\" shortcut to Start" - }, - "Two": { - "Tag": "PowerShell", - "ToolTip": "Pin the Windows PowerShell shortcut to Start" - } - } - }, - { - "Id": 704, - "Region": "Start menu", - "Function": "PinToStart -UnpinAll", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Unpin all the Start tiles" - } - } - }, - { - "Id": 800, - "Region": "UWP apps", - "Function": "UninstallUWPApps", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Uninstall UWP apps using the pop-up dialog box" - } - } - }, - { - "Id": 801, - "Region": "UWP apps", - "Function": "UninstallUWPApps -ForAllUsers", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Uninstall UWP apps using the pop-up dialog box. If the \"For all users\" is checked apps packages will not be installed for new users. The \"ForAllUsers\" argument sets a checkbox to unistall packages for all users" - } - } - }, - { - "Id": 802, - "Region": "UWP apps", - "Function": "RestoreUWPApps", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Restore the default UWP apps using the pop-up dialog box. UWP apps can be restored only if they were uninstalled only for the current user" - } - } - }, - { - "Id": 803, - "Region": "UWP apps", - "Function": "HEIF", - "Arg": { - "Zero": { - "Tag": "Manually", - "ToolTip": "Open Microsoft Store \"HEVC Video Extensions from Device Manufacturer\" page to install this extension manually to be able to open .heic and .heif image formats. The extension can be installed without a Microsoft account" - }, - "One": { - "Tag": "Install", - "ToolTip": "Download and install \"HEVC Video Extensions from Device Manufacturer\" to be able to open .heic and .heif formats" - } - } - }, - { - "Id": 804, - "Region": "UWP apps", - "Function": "CortanaAutostart", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable Cortana autostarting" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable Cortana autostarting (Impostazione predefinita)" - } - } - }, - { - "Id": 805, - "Region": "UWP apps", - "Function": "TeamsAutostart", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable Microsoft Teams autostarting" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable Microsoft Teams autostarting (Impostazione predefinita)" - } - } - }, - { - "Id": 806, - "Region": "UWP apps", - "Function": "BackgroundUWPApps", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Do not let all UWP apps run in the background" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Let all UWP apps run in the background (Impostazione predefinita)" - } - } - }, - { - "Id": 807, - "Region": "UWP apps", - "Function": "CheckUWPAppsUpdates", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Check for UWP apps updates" - } - } - }, - { - "Id": 900, - "Region": "Gaming", - "Function": "XboxGameBar", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable Xbox Game Bar" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable Xbox Game Bar (Impostazione predefinita)" - } - } - }, - { - "Id": 901, - "Region": "Gaming", - "Function": "XboxGameTips", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable Xbox Game Bar tips" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable Xbox Game Bar tips (Impostazione predefinita)" - } - } - }, - { - "Id": 902, - "Region": "Gaming", - "Function": "SetAppGraphicsPerformance", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Choose an app and set the \"High performance\" graphics performance for it. Only if you have a dedicated GPU" - } - } - }, - { - "Id": 903, - "Region": "Gaming", - "Function": "GPUScheduling", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable hardware-accelerated GPU scheduling. Restart needed. Only if you have a dedicated GPU and WDDM verion is 2.7 or higher" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disattiva hardware-accelerated GPU scheduling. Restart needed (Impostazione predefinita)" - } - } - }, - { - "Id": 1000, - "Region": "Scheduled tasks", - "Function": "CleanupTask", - "Arg": { - "Zero": { - "Tag": "Register", - "ToolTip": "Create the \"Windows Cleanup\" scheduled task for cleaning up Windows unused files and updates. A native interactive toast notification pops up every 30 days. The task runs every 30 days" - }, - "One": { - "Tag": "Delete", - "ToolTip": "Delete the \"Windows Cleanup\" and \"Windows Cleanup Notification\" scheduled tasks for cleaning up Windows unused files and updates" - } - } - }, - { - "Id": 1001, - "Region": "Scheduled tasks", - "Function": "SoftwareDistributionTask", - "Arg": { - "Zero": { - "Tag": "Register", - "ToolTip": "Create the \"SoftwareDistribution\" scheduled task for cleaning up the %SystemRoot%\\SoftwareDistribution\\Download folder. The task will wait until the Windows Updates service finishes running. The task runs every 90 days" - }, - "One": { - "Tag": "Delete", - "ToolTip": "Delete the \"SoftwareDistribution\" scheduled task for cleaning up the %SystemRoot%\\SoftwareDistribution\\Download folder" - } - } - }, - { - "Id": 1002, - "Region": "Scheduled tasks", - "Function": "TempTask", - "Arg": { - "Zero": { - "Tag": "Register", - "ToolTip": "Create the \"Temp\" scheduled task for cleaning up the %TEMP% folder. Only files older than one day will be deleted. The task runs every 60 days" - }, - "One": { - "Tag": "Delete", - "ToolTip": "Delete the \"Temp\" scheduled task for cleaning up the %TEMP% folder" - } - } - }, - { - "Id": 1100, - "Region": "Microsoft Defender & Security", - "Function": "NetworkProtection", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable Microsoft Defender Exploit Guard network protection" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable Microsoft Defender Exploit Guard network protection (Impostazione predefinita)" - } - } - }, - { - "Id": 1101, - "Region": "Microsoft Defender & Security", - "Function": "PUAppsDetection", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable detection for potentially unwanted applications and block them" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable detection for potentially unwanted applications and block them (Impostazione predefinita)" - } - } - }, - { - "Id": 1102, - "Region": "Microsoft Defender & Security", - "Function": "DefenderSandbox", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable sandboxing for Microsoft Defender" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable sandboxing for Microsoft Defender (Impostazione predefinita)" - } - } - }, - { - "Id": 1103, - "Region": "Microsoft Defender & Security", - "Function": "DismissMSAccount", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Dismiss Microsoft Defender offer in the Windows Security about signing in Microsoft account" - } - } - }, - { - "Id": 1104, - "Region": "Microsoft Defender & Security", - "Function": "DismissSmartScreenFilter", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Dismiss Microsoft Defender offer in the Windows Security about turning on the SmartScreen filter for Microsoft Edge" - } - } - }, - { - "Id": 1105, - "Region": "Microsoft Defender & Security", - "Function": "AuditProcess", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable events auditing generated when a process is created (starts)" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable events auditing generated when a process is created (starts) (Impostazione predefinita)" - } - } - }, - { - "Id": 1106, - "Region": "Microsoft Defender & Security", - "Function": "CommandLineProcessAudit", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Include command line in process creation events. In order this feature to work events auditing (ProcessAudit -Enable) will be enabled" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Do not include command line in process creation events (Impostazione predefinita)" - } - } - }, - { - "Id": 1107, - "Region": "Microsoft Defender & Security", - "Function": "EventViewerCustomView", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Create the \"Process Creation\" сustom view in the Event Viewer to log executed processes and their arguments. In order this feature to work events auditing (AuditProcess -Enable) and command line (CommandLineProcessAudit -Enable) in process creation events will be enabled" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Remove the \"Process Creation\" custom view in the Event Viewer to log executed processes and their arguments (Impostazione predefinita)" - } - } - }, - { - "Id": 1108, - "Region": "Microsoft Defender & Security", - "Function": "PowerShellModulesLogging", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable logging for all Windows PowerShell modules" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable logging for all Windows PowerShell modules (Impostazione predefinita)" - } - } - }, - { - "Id": 1109, - "Region": "Microsoft Defender & Security", - "Function": "PowerShellScriptsLogging", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable logging for all PowerShell scripts input to the Windows PowerShell event log" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable logging for all PowerShell scripts input to the Windows PowerShell event log (Impostazione predefinita)" - } - } - }, - { - "Id": 1110, - "Region": "Microsoft Defender & Security", - "Function": "AppsSmartScreen", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Microsoft Defender SmartScreen doesn't marks downloaded files from the Internet as unsafe" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Microsoft Defender SmartScreen marks downloaded files from the Internet as unsafe (Impostazione predefinita)" - } - } - }, - { - "Id": 1111, - "Region": "Microsoft Defender & Security", - "Function": "SaveZoneInformation", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable the Attachment Manager marking files that have been downloaded from the Internet as unsafe" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable the Attachment Manager marking files that have been downloaded from the Internet as unsafe (Impostazione predefinita)" - } - } - }, - { - "Id": 1112, - "Region": "Microsoft Defender & Security", - "Function": "WindowsScriptHost", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable Windows Script Host. Blocks WSH from executing .js and .vbs files" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable Windows Script Host (Impostazione predefinita)" - } - } - }, - { - "Id": 1113, - "Region": "Microsoft Defender & Security", - "Function": "WindowsSandbox", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable Windows Sandbox" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable Windows Sandbox (Impostazione predefinita)" - } - } - }, - { - "Id": 1114, - "Region": "Microsoft Defender & Security", - "Function": "DNSoverHTTPS", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable DNS-over-HTTPS for IPv4. The valid IPv4 addresses: 1.0.0.1, 1.1.1.1, 149.112.112.112, 8.8.4.4, 8.8.8.8, 9.9.9.9" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable DNS-over-HTTPS for IPv4 (Impostazione predefinita)" - } - } - }, - { - "Id": 1200, - "Region": "Context menu", - "Function": "MSIExtractContext", - "Arg": { - "Zero": { - "Tag": "Show", - "ToolTip": "Show the \"Extract all\" item in the Windows Installer (.msi) context menu" - }, - "One": { - "Tag": "Hide", - "ToolTip": "Hide the \"Extract all\" item from the Windows Installer (.msi) context menu (Impostazione predefinita)" - } - } - }, - { - "Id": 1201, - "Region": "Context menu", - "Function": "CABInstallContext", - "Arg": { - "Zero": { - "Tag": "Show", - "ToolTip": "Show the \"Install\" item in the Cabinet (.cab) filenames extensions context menu" - }, - "One": { - "Tag": "Hide", - "ToolTip": "Hide the \"Install\" item from the Cabinet (.cab) filenames extensions context menu (Impostazione predefinita)" - } - } - }, - { - "Id": 1202, - "Region": "Context menu", - "Function": "RunAsDifferentUserContext", - "Arg": { - "Zero": { - "Tag": "Show", - "ToolTip": "Show the \"Run as different user\" item to the .exe filename extensions context menu" - }, - "One": { - "Tag": "Hide", - "ToolTip": "Hide the \"Run as different user\" item from the .exe filename extensions context menu (Impostazione predefinita)" - } - } - }, - { - "Id": 1203, - "Region": "Context menu", - "Function": "CastToDeviceContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Cast to Device\" item from the media files and folders context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Cast to Device\" item in the media files and folders context menu (Impostazione predefinita)" - } - } - }, - { - "Id": 1204, - "Region": "Context menu", - "Function": "ShareContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Share\" item from the context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Share\" item in the context menu (Impostazione predefinita)" - } - } - }, - { - "Id": 1205, - "Region": "Context menu", - "Function": "EditWithPaint3DContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Edit with Paint 3D\" item from the media files context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Edit with Paint 3D\" item in the media files context menu (Impostazione predefinita)" - } - } - }, - { - "Id": 1206, - "Region": "Context menu", - "Function": "EditWithPhotosContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Edit with Photos\" item from the media files context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Edit with Photos\" item in the media files context menu (Impostazione predefinita)" - } - } - }, - { - "Id": 1207, - "Region": "Context menu", - "Function": "CreateANewVideoContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Create a new video\" item in the media files context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Create a new video\" item in the media files context menu (Impostazione predefinita)" - } - } - }, - { - "Id": 1208, - "Region": "Context menu", - "Function": "ImagesEditContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Edit\" item from the images context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Edit\" item in images context menu (Impostazione predefinita)" - } - } - }, - { - "Id": 1209, - "Region": "Context menu", - "Function": "PrintCMDContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Print\" item from the .bat and .cmd context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Print\" item in the .bat and .cmd context menu (Impostazione predefinita)" - } - } - }, - { - "Id": 1210, - "Region": "Context menu", - "Function": "IncludeInLibraryContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Include in Library\" item from the folders and drives context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Include in Library\" item in the folders and drives context menu (Impostazione predefinita)" - } - } - }, - { - "Id": 1211, - "Region": "Context menu", - "Function": "SendToContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Send to\" item from the folders context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Send to\" item in the folders context menu (Impostazione predefinita)" - } - } - }, - { - "Id": 1212, - "Region": "Context menu", - "Function": "BitLockerContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Enable BitLocker\" item from the drives context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Enable BitLocker\" item in the drives context menu (Impostazione predefinita)" - } - } - }, - { - "Id": 1213, - "Region": "Context menu", - "Function": "BitmapImageNewContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Bitmap image\" item from the \"New\" context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Bitmap image\" item to the \"New\" context menu (Impostazione predefinita)" - } - } - }, - { - "Id": 1214, - "Region": "Context menu", - "Function": "RichTextDocumentNewContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Rich Text Document\" item from the \"New\" context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Rich Text Document\" item to the \"New\" context menu (Impostazione predefinita)" - } - } - }, - { - "Id": 1215, - "Region": "Context menu", - "Function": "CompressedFolderNewContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Compressed (zipped) Folder\" item from the \"New\" context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Compressed (zipped) Folder\" item to the \"New\" context menu (Impostazione predefinita)" - } - } - }, - { - "Id": 1216, - "Region": "Context menu", - "Function": "MultipleInvokeContext", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable the \"Open\", \"Print\", and \"Edit\" context menu items for more than 15 items selected" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable the \"Open\", \"Print\", and \"Edit\" context menu items for more than 15 items selected (Impostazione predefinita)" - } - } - }, - { - "Id": 1217, - "Region": "Context menu", - "Function": "UseStoreOpenWith", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Look for an app in the Microsoft Store\" item in the \"Open with\" dialog" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Look for an app in the Microsoft Store\" item in the \"Open with\" dialog (Impostazione predefinita)" - } - } - }, - { - "Id": 1218, - "Region": "Context menu", - "Function": "OpenWindowsTerminalContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Open in Windows Terminal\" menu option in the folders context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Open in Windows Terminal\" menu option in the folders context menu (Impostazione predefinita)" - } - } - } -] diff --git a/Wrapper/Localizations/it-IT/tooltip_Windows_11.json b/Wrapper/Localizations/it-IT/tooltip_Windows_11.json deleted file mode 100644 index b113920e..00000000 --- a/Wrapper/Localizations/it-IT/tooltip_Windows_11.json +++ /dev/null @@ -1,1992 +0,0 @@ -[ - { - "Id": 100, - "Region": "Protection", - "Function": "Checkings", - "Arg": { - "Zero": { - "Tag": "Warning", - "ToolTip": "The mandatory checkings. If you want to disable a warning message about whether the preset file was customized, remove the \"-Warning\" argument" - }, - "One": { - "Tag": "", - "ToolTip": "The mandatory checkings. No argument therefore no warning message about whether you've customized the preset file" - } - } - }, - { - "Id": 101, - "Region": "Protection", - "Function": "Logging", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Enable script logging. The log will be being recorded into the script folder. To stop logging just close the console or type \"Stop-Transcript\"" - } - } - }, - { - "Id": 102, - "Region": "Protection", - "Function": "CreateRestorePoint", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Create a restore point" - } - } - }, - { - "Id": 200, - "Region": "Privacy & Telemetry", - "Function": "DiagTrackService", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable the \"Connected User Experiences and Telemetry\" service (DiagTrack), and block the connection for the Unified Telemetry Client Outbound Traffic. Disabling the \"Connected User Experiences and Telemetry\" service (DiagTrack) can cause you not being able to get Xbox achievements anymore" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable the DiagTrack service, firewall rule for Unified Telemetry Client Outbound Traffic and allow connection (default value)" - } - } - }, - { - "Id": 201, - "Region": "Privacy & Telemetry", - "Function": "DiagnosticDataLevel", - "Arg": { - "Zero": { - "Tag": "Minimal", - "ToolTip": "Set the OS level of diagnostic data gathering to minimum" - }, - "One": { - "Tag": "Default", - "ToolTip": "Set the diagnostic data collection to default (default value)" - } - } - }, - { - "Id": 202, - "Region": "Privacy & Telemetry", - "Function": "ErrorReporting", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Turn off the Windows Error Reporting" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Turn on the Windows Error Reporting (default value)" - } - } - }, - { - "Id": 203, - "Region": "Privacy & Telemetry", - "Function": "FeedbackFrequency", - "Arg": { - "Zero": { - "Tag": "Never", - "ToolTip": "Change the feedback frequency to \"Never\"" - }, - "One": { - "Tag": "Automatically", - "ToolTip": "Change the feedback frequency to \"Automatically\" (default value)" - } - } - }, - { - "Id": 204, - "Region": "Privacy & Telemetry", - "Function": "ScheduledTasks", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Turn off the diagnostics tracking scheduled tasks" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Turn on the diagnostics tracking scheduled tasks (default value)" - } - } - }, - { - "Id": 205, - "Region": "Privacy & Telemetry", - "Function": "SigninInfo", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Do not use sign-in info to automatically finish setting up device and reopen apps after an update or restart" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Use sign-in info to automatically finish setting up device and reopen apps after an update or restart (default value)" - } - } - }, - { - "Id": 206, - "Region": "Privacy & Telemetry", - "Function": "LanguageListAccess", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Do not let websites provide locally relevant content by accessing language list" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Let websites provide locally relevant content by accessing language list (default value)" - } - } - }, - { - "Id": 207, - "Region": "Privacy & Telemetry", - "Function": "AdvertisingID", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Do not allow apps to use advertising ID" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Allow apps to use advertising ID (default value)" - } - } - }, - { - "Id": 208, - "Region": "Privacy & Telemetry", - "Function": "WindowsWelcomeExperience", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the Windows welcome experiences after updates and occasionally when I sign in to highlight what's new and suggested" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the Windows welcome experiences after updates and occasionally when I sign in to highlight what's new and suggested (default value)" - } - } - }, - { - "Id": 209, - "Region": "Privacy & Telemetry", - "Function": "WindowsTips", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Get tips and suggestions when I use Windows (default value)" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Do not get tips and suggestions when I use Windows" - } - } - }, - { - "Id": 210, - "Region": "Privacy & Telemetry", - "Function": "SettingsSuggestedContent", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide from me suggested content in the Settings app" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show me suggested content in the Settings app (default value)" - } - } - }, - { - "Id": 211, - "Region": "Privacy & Telemetry", - "Function": "AppsSilentInstalling", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Turn off automatic installing suggested apps" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Turn on automatic installing suggested apps (default value)" - } - } - }, - { - "Id": 212, - "Region": "Privacy & Telemetry", - "Function": "WhatsNewInWindows", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Do not suggest ways I can finish setting up my device to get the most out of Windows" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Suggest ways I can finish setting up my device to get the most out of Windows (default value)" - } - } - }, - { - "Id": 213, - "Region": "Privacy & Telemetry", - "Function": "TailoredExperiences", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Do not let Microsoft offer you tailored expereinces based on the diagnostic data setting you hava chosen" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Let Microsoft offer you tailored expereinces based on the diagnostic data setting you hava chosen (default value)" - } - } - }, - { - "Id": 214, - "Region": "Privacy & Telemetry", - "Function": "BingSearch", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable Bing search in the Start Menu (for the USA only)" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable Bing search in the Start Menu (default value)" - } - } - }, - { - "Id": 300, - "Region": "UI & Personalization", - "Function": "ThisPC", - "Arg": { - "Zero": { - "Tag": "Show", - "ToolTip": "Show the \"This PC\" icon on Desktop" - }, - "One": { - "Tag": "Hide", - "ToolTip": "Hide the \"This PC\" icon on Desktop (default value)" - } - } - }, - { - "Id": 301, - "Region": "UI & Personalization", - "Function": "CheckBoxes", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Do not use item check boxes" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Use check boxes to select items (default value)" - } - } - }, - { - "Id": 302, - "Region": "UI & Personalization", - "Function": "HiddenItems", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Show hidden files, folders, and drives" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Do not show hidden files, folders, and drives (default value)" - } - } - }, - { - "Id": 303, - "Region": "UI & Personalization", - "Function": "FileExtensions", - "Arg": { - "Zero": { - "Tag": "Show", - "ToolTip": "Show the file name extensions" - }, - "One": { - "Tag": "Hide", - "ToolTip": "Hide the file name extensions (default value)" - } - } - }, - { - "Id": 304, - "Region": "UI & Personalization", - "Function": "MergeConflicts", - "Arg": { - "Zero": { - "Tag": "Show", - "ToolTip": "Show folder merge conflicts" - }, - "One": { - "Tag": "Hide", - "ToolTip": "Hide folder merge conflicts (default value)" - } - } - }, - { - "Id": 305, - "Region": "UI & Personalization", - "Function": "OpenFileExplorerTo", - "Arg": { - "Zero": { - "Tag": "ThisPC", - "ToolTip": "Open File Explorer to \"This PC\"" - }, - "One": { - "Tag": "QuickAccess", - "ToolTip": "Open File Explorer to Quick access (default value)" - } - } - }, - { - "Id": 306, - "Region": "UI & Personalization", - "Function": "FileExplorerCompactMode", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable the File Explorer compact mode" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable the File Explorer compact mode (default value)" - } - } - }, - { - "Id": 307, - "Region": "UI & Personalization", - "Function": "OneDriveFileExplorerAd", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Do not show sync provider notification within File Explorer" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show sync provider notification within File Explorer (default value)" - } - } - }, - { - "Id": 308, - "Region": "UI & Personalization", - "Function": "SnapAssistFlyout", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Show snap layouts when I hover over a windows's maximaze button (default value)" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Hide snap layouts when I hover over a windows's maximaze button" - } - } - }, - { - "Id": 309, - "Region": "UI & Personalization", - "Function": "SnapAssist", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "When I snap a window, do not show what I can snap next to it" - }, - "One": { - "Tag": "Enable", - "ToolTip": "When I snap a window, show what I can snap next to it (default value)" - } - } - }, - { - "Id": 310, - "Region": "UI & Personalization", - "Function": "FileTransferDialog", - "Arg": { - "Zero": { - "Tag": "Detailed", - "ToolTip": "Show the file transfer dialog box in the detailed mode" - }, - "One": { - "Tag": "Compact", - "ToolTip": "Show the file transfer dialog box in the compact mode (default value)" - } - } - }, - { - "Id": 311, - "Region": "UI & Personalization", - "Function": "RecycleBinDeleteConfirmation", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Display the recycle bin files delete confirmation" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Do not display the recycle bin files delete confirmation (default value)" - } - } - }, - { - "Id": 312, - "Region": "UI & Personalization", - "Function": "QuickAccessRecentFiles", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide frequently used files in Quick access" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show recently used files in Quick access (default value)" - } - } - }, - { - "Id": 313, - "Region": "UI & Personalization", - "Function": "QuickAccessFrequentFolders", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide frequently used folders in Quick access" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show frequently used folders in Quick access (default value)" - } - } - }, - { - "Id": 314, - "Region": "UI & Personalization", - "Function": "TaskbarAlignment", - "Arg": { - "Zero": { - "Tag": "Left", - "ToolTip": "Set the taskbar alignment to the left" - }, - "One": { - "Tag": "Center", - "ToolTip": "Set the taskbar alignment to the center (default value)" - } - } - }, - { - "Id": 315, - "Region": "UI & Personalization", - "Function": "TaskbarSearch", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the search button from the taskbar" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the search icon on the taskbar (default value)" - } - } - }, - { - "Id": 316, - "Region": "UI & Personalization", - "Function": "TaskViewButton", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the Task View button on the taskbar" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the Task View button on the taskbar (default value)" - } - } - }, - { - "Id": 317, - "Region": "UI & Personalization", - "Function": "TaskbarWidgets", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the widgets icon on the taskbar" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the widgets icon on the taskbar (default value)" - } - } - }, - { - "Id": 318, - "Region": "UI & Personalization", - "Function": "TaskbarChat", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the Chat icon (Microsoft Teams) on the taskbar" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the Chat icon (Microsoft Teams) on the taskbar (default value)" - } - } - }, - { - "Id": 319, - "Region": "UI & Personalization", - "Function": "UnpinTaskbarShortcuts -Shortcuts", - "ToolTip": "Unpin the \"Microsoft Edge\" and \"Microsoft Store\" shortcuts from the taskbar", - "Arg": { - "Zero": { - "Tag": "Edge", - "ToolTip": "Unpin the \"Microsoft Edge\" shortcut from the taskbar" - }, - "One": { - "Tag": "Store", - "ToolTip": "Unpin the \"Microsoft Store\" shortcut from the taskbar" - } - } - }, - { - "Id": 320, - "Region": "UI & Personalization", - "Function": "ControlPanelView", - "Arg": { - "Zero": { - "Tag": "LargeIcons", - "ToolTip": "View the Control Panel icons by large icons" - }, - "One": { - "Tag": "SmallIcons", - "ToolTip": "View the Control Panel icons by small icons" - }, - "Two": { - "Tag": "Category", - "ToolTip": "View the Control Panel icons by category (default value)" - } - } - }, - { - "Id": 321, - "Region": "UI & Personalization", - "Function": "WindowsColorMode", - "Arg": { - "Zero": { - "Tag": "Dark", - "ToolTip": "Set the default Windows mode to dark" - }, - "One": { - "Tag": "Light", - "ToolTip": "Set the default Windows mode to light (default value)" - } - } - }, - { - "Id": 322, - "Region": "UI & Personalization", - "Function": "AppColorMode", - "Arg": { - "Zero": { - "Tag": "Dark", - "ToolTip": "Set the default app mode to dark" - }, - "One": { - "Tag": "Light", - "ToolTip": "Set the default app mode to light (default value)" - } - } - }, - { - "Id": 323, - "Region": "UI & Personalization", - "Function": "FirstLogonAnimation", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Hide user first sign-in animation after the upgrade" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Show user first sign-in animation after the upgrade (default value)" - } - } - }, - { - "Id": 324, - "Region": "UI & Personalization", - "Function": "JPEGWallpapersQuality", - "Arg": { - "Zero": { - "Tag": "Max", - "ToolTip": "Set the quality factor of the JPEG desktop wallpapers to maximum" - }, - "One": { - "Tag": "Default", - "ToolTip": "Set the quality factor of the JPEG desktop wallpapers to default (default value)" - } - } - }, - { - "Id": 325, - "Region": "UI & Personalization", - "Function": "TaskManagerWindow", - "Arg": { - "Zero": { - "Tag": "Expanded", - "ToolTip": "Start Task Manager in the expanded mode" - }, - "One": { - "Tag": "Compact", - "ToolTip": "Start Task Manager in the compact mode (default value)" - } - } - }, - { - "Id": 326, - "Region": "UI & Personalization", - "Function": "RestartNotification", - "Arg": { - "Zero": { - "Tag": "Show", - "ToolTip": "Show a notification when your PC requires a restart to finish updating" - }, - "One": { - "Tag": "Hide", - "ToolTip": "Do not show a notification when your PC requires a restart to finish updating (default value)" - } - } - }, - { - "Id": 327, - "Region": "UI & Personalization", - "Function": "ShortcutsSuffix", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Do not add the \"- Shortcut\" suffix to the file name of created shortcuts" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Add the \"- Shortcut\" suffix to the file name of created shortcuts (default value)" - } - } - }, - { - "Id": 328, - "Region": "UI & Personalization", - "Function": "PrtScnSnippingTool", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Use the Print screen button to open screen snipping" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Do not use the Print screen button to open screen snipping (default value)" - } - } - }, - { - "Id": 329, - "Region": "UI & Personalization", - "Function": "AppsLanguageSwitch", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Let me use a different input method for each app window" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Do not use a different input method for each app window (default value)" - } - } - }, - { - "Id": 330, - "Region": "UI & Personalization", - "Function": "AeroShaking", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "When I grab a windows's title bar and shake it, minimize all other windows" - }, - "One": { - "Tag": "Disable", - "ToolTip": "When I grab a windows's title bar and shake it, don't minimize all other windows (default value)" - } - } - }, - { - "Id": 400, - "Region": "OneDrive", - "Function": "OneDrive", - "Arg": { - "Zero": { - "Tag": "Uninstall", - "ToolTip": "Uninstall OneDrive. The OneDrive user folder won't be removed" - }, - "One": { - "Tag": "Install", - "ToolTip": "Install OneDrive 64-bit" - } - } - }, - { - "Id": 500, - "Region": "System", - "Function": "StorageSense", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Turn on Storage Sense" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Turn off Storage Sense (default value)" - } - } - }, - { - "Id": 501, - "Region": "System", - "Function": "StorageSenseFrequency", - "Arg": { - "Zero": { - "Tag": "Month", - "ToolTip": "Run Storage Sense every month" - }, - "One": { - "Tag": "Default", - "ToolTip": "Run Storage Sense during low free disk space (default value)" - } - } - }, - { - "Id": 502, - "Region": "System", - "Function": "StorageSenseTempFiles", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Delete temporary files that apps aren't using (default value)" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Do not delete temporary files that apps aren't using" - } - } - }, - { - "Id": 503, - "Region": "System", - "Function": "Hibernation", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable hibernation. Do not recommend turning it off on laptops" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable hibernate (default value)" - } - } - }, - { - "Id": 504, - "Region": "System", - "Function": "TempFolder", - "Arg": { - "Zero": { - "Tag": "SystemDrive", - "ToolTip": "Change the %TEMP% environment variable path to %SystemDrive%\\Temp" - }, - "One": { - "Tag": "Default", - "ToolTip": "Change %TEMP% environment variable path to %LOCALAPPDATA%\\Temp (default value)" - } - } - }, - { - "Id": 505, - "Region": "System", - "Function": "Win32LongPathLimit", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable the Windows 260 characters path limit" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable the Windows 260 character path limit (default value)" - } - } - }, - { - "Id": 506, - "Region": "System", - "Function": "BSoDStopError", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Display Stop error code when BSoD occurs" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Do not Stop error code when BSoD occurs (default value)" - } - } - }, - { - "Id": 507, - "Region": "System", - "Function": "AdminApprovalMode", - "Arg": { - "Zero": { - "Tag": "Never", - "ToolTip": "Choose when to be notified about changes to your computer: never notify" - }, - "One": { - "Tag": "Default", - "ToolTip": "Choose when to be notified about changes to your computer: notify me only when apps try to make changes to my computer (default value)" - } - } - }, - { - "Id": 508, - "Region": "System", - "Function": "MappedDrivesAppElevatedAccess", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Turn on access to mapped drives from app running with elevated permissions with Admin Approval Mode enabled" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Turn off access to mapped drives from app running with elevated permissions with Admin Approval Mode enabled (default value)" - } - } - }, - { - "Id": 509, - "Region": "System", - "Function": "DeliveryOptimization", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Turn off Delivery Optimization" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Turn on Delivery Optimization (default value)" - } - } - }, - { - "Id": 510, - "Region": "System", - "Function": "WaitNetworkStartup", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Always wait for the network at computer startup and logon for workgroup networks" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Never wait for the network at computer startup and logon for workgroup networks (default value)" - } - } - }, - { - "Id": 511, - "Region": "System", - "Function": "WindowsManageDefaultPrinter", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Do not let Windows manage my default printer" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Let Windows manage my default printer (default value)" - } - } - }, - { - "Id": 512, - "Region": "System", - "Function": "WindowsFeatures", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable the Windows features using the pop-up dialog box" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable the Windows features using the pop-up dialog box (default value)" - } - } - }, - { - "Id": 513, - "Region": "System", - "Function": "WindowsCapabilities", - "Arg": { - "Zero": { - "Tag": "Uninstall", - "ToolTip": "Uninstall optional features using the pop-up dialog box" - }, - "One": { - "Tag": "Install", - "ToolTip": "Install optional features using the pop-up dialog box (default value)" - } - } - }, - { - "Id": 514, - "Region": "System", - "Function": "UpdateMicrosoftProducts", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Receive updates for other Microsoft products when you update Windows" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Do not receive updates for other Microsoft products when you update Windows (default value)" - } - } - }, - { - "Id": 515, - "Region": "System", - "Function": "PowerPlan", - "Arg": { - "Zero": { - "Tag": "High", - "ToolTip": "Set power plan on \"High performance\". It isn't recommended to turn on the \"High performance\" power plan on laptops" - }, - "One": { - "Tag": "Balanced", - "ToolTip": "Set the power plan on \"Balanced\" (default value)" - } - } - }, - { - "Id": 516, - "Region": "System", - "Function": "LatestInstalled.NET", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Use the latest installed .NET runtime for all apps" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Do not use the latest installed .NET runtime for all apps (default value)" - } - } - }, - { - "Id": 517, - "Region": "System", - "Function": "NetworkAdaptersSavePower", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Do not allow the computer to turn off the network adapters to save power" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Allow the computer to turn off the network adapters to save power (default value)" - } - } - }, - { - "Id": 518, - "Region": "System", - "Function": "IPv6Component", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable the Internet Protocol Version 6 (TCP/IPv6) component for all network connections. Before invoking the function, a check will be run whether your ISP supports the IPv6 protocol using https://ipv6-test.com" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable the Internet Protocol Version 6 (TCP/IPv6) component for all network connections (default value). Before invoking the function, a check will be run whether your ISP supports the IPv6 protocol using https://ipv6-test.com" - } - } - }, - { - "Id": 519, - "Region": "System", - "Function": "InputMethod", - "Arg": { - "Zero": { - "Tag": "English", - "ToolTip": "Override for default input method: English" - }, - "One": { - "Tag": "Default", - "ToolTip": "Override for default input method: use language list (default value)" - } - } - }, - { - "Id": 520, - "Region": "System", - "Function": "SetUserShellFolderLocation", - "Arg": { - "Zero": { - "Tag": "Root", - "ToolTip": "Move user folders location to the root of any drive using the interactive menu. User files or folders won't me moved to a new location. Move them manually. They're located in the %USERPROFILE% folder by default" - }, - "One": { - "Tag": "Custom", - "ToolTip": "Select folders for user folders location manually using a folder browser dialog. User files or folders won't me moved to a new location. Move them manually. They're located in the %USERPROFILE% folder by default" - }, - "Two": { - "Tag": "Default", - "ToolTip": "Change user folders location to the default values. User files or folders won't me moved to a new location. Move them manually. They're located in the %USERPROFILE% folder by default (default value)" - } - } - }, - { - "Id": 521, - "Region": "System", - "Function": "WinPrtScrFolder", - "Arg": { - "Zero": { - "Tag": "Desktop", - "ToolTip": "Save screenshots by pressing Win+PrtScr on the Desktop. The function will be applied only if the preset is configured to remove OneDrive. Otherwise the backup functionality for the \"Desktop\" and \"Pictures\" folders in OneDrive breaks" - }, - "One": { - "Tag": "Default", - "ToolTip": "Save screenshots by pressing Win+PrtScr in the Pictures folder (default value)" - } - } - }, - { - "Id": 522, - "Region": "System", - "Function": "RecommendedTroubleshooting", - "Arg": { - "Zero": { - "Tag": "Automatically", - "ToolTip": "Run troubleshooter automatically, then notify. In order this feature to work the OS level of diagnostic data gathering will be set to \"Optional diagnostic data\" and the error reporting feature will be turned on" - }, - "One": { - "Tag": "Default", - "ToolTip": "Ask me before running troubleshooters. In order this feature to work the OS level of diagnostic data gathering will be set to \"Optional diagnostic data\" and the error reporting feature will be turned on (default value)" - } - } - }, - { - "Id": 523, - "Region": "System", - "Function": "FoldersLaunchSeparateProcess", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Launch folder windows in a separate process" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Do not launch folder windows in a separate process (default value)" - } - } - }, - { - "Id": 524, - "Region": "System", - "Function": "ReservedStorage", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable and delete reserved storage after the next update installation" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable reserved storage (default value)" - } - } - }, - { - "Id": 525, - "Region": "System", - "Function": "F1HelpPage", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable help lookup via F1" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable help lookup via F1 (default value)" - } - } - }, - { - "Id": 526, - "Region": "System", - "Function": "NumLock", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable Num Lock at startup" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable Num Lock at startup (default value)" - } - } - }, - { - "Id": 527, - "Region": "System", - "Function": "CapsLock", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable Caps Lock" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable Caps Lock (default value)" - } - } - }, - { - "Id": 528, - "Region": "System", - "Function": "StickyShift", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Turn off pressing the Shift key 5 times to turn Sticky keys" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Turn on pressing the Shift key 5 times to turn Sticky keys (default value)" - } - } - }, - { - "Id": 529, - "Region": "System", - "Function": "Autoplay", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Don't use AutoPlay for all media and devices" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Use AutoPlay for all media and devices (default value)" - } - } - }, - { - "Id": 530, - "Region": "System", - "Function": "ThumbnailCacheRemoval", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable thumbnail cache removal" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable thumbnail cache removal (default value)" - } - } - }, - { - "Id": 531, - "Region": "System", - "Function": "SaveRestartableApps", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable automatically saving my restartable apps when signing out and restart them after signing in" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable automatically saving my restartable apps when signing out and restart them after signing in (default value)" - } - } - }, - { - "Id": 532, - "Region": "System", - "Function": "NetworkDiscovery", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable \"Network Discovery\" and \"File and Printers Sharing\" for workgroup networks" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable \"Network Discovery\" and \"File and Printers Sharing\" for workgroup networks (default value)" - } - } - }, - { - "Id": 533, - "Region": "System", - "Function": "ActiveHours", - "Arg": { - "Zero": { - "Tag": "Automatically", - "ToolTip": "Automatically adjust active hours for me based on daily usage" - }, - "One": { - "Tag": "Manually", - "ToolTip": "Manually adjust active hours for me based on daily usage (default value)" - } - } - }, - { - "Id": 534, - "Region": "System", - "Function": "RestartDeviceAfterUpdate", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Restart this device as soon as possible when a restart is required to install an update" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Do not restart this device as soon as possible when a restart is required to install an update (default value)" - } - } - }, - { - "Id": 535, - "Region": "System", - "Function": "DefaultTerminalApp", - "Arg": { - "Zero": { - "Tag": "WindowsTerminal", - "ToolTip": "Set Windows Terminal as default terminal app to host the user interface for command-line applications" - }, - "One": { - "Tag": "ConsoleHost", - "ToolTip": "Set Windows Console Host as default terminal app to host the user interface for command-line applications (default value)" - } - } - }, - { - "Id": 536, - "Region": "System", - "Function": "InstallVCRedistx64", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Install the latest Microsoft Visual C++ Redistributable Packages 2015–2022 x64" - } - } - }, - { - "Id": 600, - "Region": "WSL", - "Function": "WSL", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Enable Windows Subsystem for Linux (WSL), install the latest WSL Linux kernel version, and a Linux distribution using a pop-up form. The \"Receive updates for other Microsoft products\" setting will enabled automatically to receive kernel updates" - } - } - }, - { - "Id": 700, - "Region": "Start menu", - "Function": "RunPowerShellShortcut", - "Arg": { - "Zero": { - "Tag": "Elevated", - "ToolTip": "Run the Windows PowerShell shortcut from the Start menu as Administrator" - }, - "One": { - "Tag": "NonElevated", - "ToolTip": "Run the Windows PowerShell shortcut from the Start menu as user (default value)" - } - } - }, - { - "Id": 800, - "Region": "UWP apps", - "Function": "UninstallUWPApps", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Uninstall UWP apps using the pop-up dialog box" - } - } - }, - { - "Id": 801, - "Region": "UWP apps", - "Function": "UninstallUWPApps -ForAllUsers", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Uninstall UWP apps using the pop-up dialog box. If the \"For all users\" is checked apps packages will not be installed for new users. The \"ForAllUsers\" argument sets a checkbox to unistall packages for all users" - } - } - }, - { - "Id": 802, - "Region": "UWP apps", - "Function": "RestoreUWPApps", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Restore the default UWP apps using the pop-up dialog box. UWP apps can be restored only if they were uninstalled only for the current user" - } - } - }, - { - "Id": 803, - "Region": "UWP apps", - "Function": "HEIF", - "Arg": { - "Zero": { - "Tag": "Manually", - "ToolTip": "Open Microsoft Store \"HEVC Video Extensions from Device Manufacturer\" page to install this extension manually to be able to open .heic and .heif image formats. The extension can be installed without a Microsoft account" - }, - "One": { - "Tag": "Install", - "ToolTip": "Download and install \"HEVC Video Extensions from Device Manufacturer\" to be able to open .heic and .heif formats. HEVC Video Extension is already installed in Windows 11 22H2 by default." - } - } - }, - { - "Id": 804, - "Region": "UWP apps", - "Function": "CortanaAutostart", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable Cortana autostarting" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable Cortana autostarting (default value)" - } - } - }, - { - "Id": 805, - "Region": "UWP apps", - "Function": "TeamsAutostart", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable Microsoft Teams autostarting" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable Microsoft Teams autostarting (default value)" - } - } - }, - { - "Id": 806, - "Region": "UWP apps", - "Function": "CheckUWPAppsUpdates", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Check for UWP apps updates" - } - } - }, - { - "Id": 900, - "Region": "Gaming", - "Function": "XboxGameBar", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable Xbox Game Bar. To prevent popping up the \"You'll need a new app to open this ms-gamingoverlay\" warning, you need to disable the Xbox Game Bar app, even if you uninstalled it before" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable Xbox Game Bar (default value)" - } - } - }, - { - "Id": 901, - "Region": "Gaming", - "Function": "XboxGameTips", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable Xbox Game Bar tips" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable Xbox Game Bar tips (default value)" - } - } - }, - { - "Id": 902, - "Region": "Gaming", - "Function": "SetAppGraphicsPerformance", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Choose an app and set the \"High performance\" graphics performance for it. Only if you have a dedicated GPU" - } - } - }, - { - "Id": 903, - "Region": "Gaming", - "Function": "GPUScheduling", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Turn on hardware-accelerated GPU scheduling. Restart needed. Only if you have a dedicated GPU and WDDM verion is 2.7 or higher" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Turn off hardware-accelerated GPU scheduling. Restart needed (default value)" - } - } - }, - { - "Id": 1000, - "Region": "Scheduled tasks", - "Function": "CleanupTask", - "Arg": { - "Zero": { - "Tag": "Register", - "ToolTip": "Create the \"Windows Cleanup\" scheduled task for cleaning up Windows unused files and updates. A native interactive toast notification pops up every 30 days. The task runs every 30 days" - }, - "One": { - "Tag": "Delete", - "ToolTip": "Delete the \"Windows Cleanup\" and \"Windows Cleanup Notification\" scheduled tasks for cleaning up Windows unused files and updates" - } - } - }, - { - "Id": 1001, - "Region": "Scheduled tasks", - "Function": "SoftwareDistributionTask", - "Arg": { - "Zero": { - "Tag": "Register", - "ToolTip": "Create the \"SoftwareDistribution\" scheduled task for cleaning up the %SystemRoot%\\SoftwareDistribution\\Download folder. The task will wait until the Windows Updates service finishes running. The task runs every 90 days" - }, - "One": { - "Tag": "Delete", - "ToolTip": "Delete the \"SoftwareDistribution\" scheduled task for cleaning up the %SystemRoot%\\SoftwareDistribution\\Download folder" - } - } - }, - { - "Id": 1002, - "Region": "Scheduled tasks", - "Function": "TempTask", - "Arg": { - "Zero": { - "Tag": "Register", - "ToolTip": "Create the \"Temp\" scheduled task for cleaning up the %TEMP% folder. Only files older than one day will be deleted. The task runs every 60 days" - }, - "One": { - "Tag": "Delete", - "ToolTip": "Delete the \"Temp\" scheduled task for cleaning up the %TEMP% folder" - } - } - }, - { - "Id": 1100, - "Region": "Microsoft Defender & Security", - "Function": "NetworkProtection", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable Microsoft Defender Exploit Guard network protection" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable Microsoft Defender Exploit Guard network protection (default value)" - } - } - }, - { - "Id": 1101, - "Region": "Microsoft Defender & Security", - "Function": "PUAppsDetection", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable detection for potentially unwanted applications and block them" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable detection for potentially unwanted applications and block them (default value)" - } - } - }, - { - "Id": 1102, - "Region": "Microsoft Defender & Security", - "Function": "DefenderSandbox", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable sandboxing for Microsoft Defender" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable sandboxing for Microsoft Defender (default value)" - } - } - }, - { - "Id": 1103, - "Region": "Microsoft Defender & Security", - "Function": "DismissMSAccount", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Dismiss Microsoft Defender offer in the Windows Security about signing in Microsoft account" - } - } - }, - { - "Id": 1104, - "Region": "Microsoft Defender & Security", - "Function": "DismissSmartScreenFilter", - "Arg": { - "Zero": { - "Tag": "", - "ToolTip": "Dismiss Microsoft Defender offer in the Windows Security about turning on the SmartScreen filter for Microsoft Edge" - } - } - }, - { - "Id": 1105, - "Region": "Microsoft Defender & Security", - "Function": "AuditProcess", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable events auditing generated when a process is created (starts)" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable events auditing generated when a process is created (starts) (default value)" - } - } - }, - { - "Id": 1106, - "Region": "Microsoft Defender & Security", - "Function": "CommandLineProcessAudit", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Include command line in process creation events. In order this feature to work events auditing (ProcessAudit -Enable) will be enabled" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Do not include command line in process creation events (default value)" - } - } - }, - { - "Id": 1107, - "Region": "Microsoft Defender & Security", - "Function": "EventViewerCustomView", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Create the \"Process Creation\" Event Viewer сustom view to log executed processes and their arguments. In order this feature to work events auditing (AuditProcess -Enable) and command line (CommandLineProcessAudit -Enable) in process creation events will be enabled" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Remove \"Process Creation\" Event Viewer сustom view to log executed processes and their arguments (default value)" - } - } - }, - { - "Id": 1108, - "Region": "Microsoft Defender & Security", - "Function": "PowerShellModulesLogging", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable logging for all Windows PowerShell modules" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable logging for all Windows PowerShell modules (default value)" - } - } - }, - { - "Id": 1109, - "Region": "Microsoft Defender & Security", - "Function": "PowerShellScriptsLogging", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable logging for all PowerShell scripts input to the Windows PowerShell event log" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable logging for all PowerShell scripts input to the Windows PowerShell event log (default value)" - } - } - }, - { - "Id": 1110, - "Region": "Microsoft Defender & Security", - "Function": "AppsSmartScreen", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Microsoft Defender SmartScreen doesn't marks downloaded files from the Internet as unsafe" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Microsoft Defender SmartScreen marks downloaded files from the Internet as unsafe (default value)" - } - } - }, - { - "Id": 1111, - "Region": "Microsoft Defender & Security", - "Function": "SaveZoneInformation", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable the Attachment Manager marking files that have been downloaded from the Internet as unsafe" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable the Attachment Manager marking files that have been downloaded from the Internet as unsafe (default value)" - } - } - }, - { - "Id": 1112, - "Region": "Microsoft Defender & Security", - "Function": "WindowsScriptHost", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable Windows Script Host. Blocks WSH from executing .js and .vbs files" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable Windows Script Host (default value)" - } - } - }, - { - "Id": 1113, - "Region": "Microsoft Defender & Security", - "Function": "WindowsSandbox", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable Windows Sandbox" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable Windows Sandbox (default value)" - } - } - }, - { - "Id": 1114, - "Region": "Microsoft Defender & Security", - "Function": "DNSoverHTTPS", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable DNS-over-HTTPS for IPv4. The valid IPv4 addresses: 1.0.0.1, 1.1.1.1, 149.112.112.112, 8.8.4.4, 8.8.8.8, 9.9.9.9" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable DNS-over-HTTPS for IPv4 (default value)" - } - } - }, - { - "Id": 1200, - "Region": "Context menu", - "Function": "MSIExtractContext", - "Arg": { - "Zero": { - "Tag": "Show", - "ToolTip": "Show the \"Extract all\" item in the Windows Installer (.msi) context menu" - }, - "One": { - "Tag": "Hide", - "ToolTip": "Hide the \"Extract all\" item from the Windows Installer (.msi) context menu (default value)" - } - } - }, - { - "Id": 1201, - "Region": "Context menu", - "Function": "CABInstallContext", - "Arg": { - "Zero": { - "Tag": "Show", - "ToolTip": "Show the \"Install\" item in the Cabinet (.cab) filenames extensions context menu" - }, - "One": { - "Tag": "Hide", - "ToolTip": "Hide the \"Install\" item from the Cabinet (.cab) filenames extensions context menu (default value)" - } - } - }, - { - "Id": 1202, - "Region": "Context menu", - "Function": "RunAsDifferentUserContext", - "Arg": { - "Zero": { - "Tag": "Show", - "ToolTip": "Show the \"Run as different user\" item to the .exe filename extensions context menu" - }, - "One": { - "Tag": "Hide", - "ToolTip": "Hide the \"Run as different user\" item from the .exe filename extensions context menu (default value)" - } - } - }, - { - "Id": 1203, - "Region": "Context menu", - "Function": "CastToDeviceContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Cast to Device\" item from the media files and folders context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Cast to Device\" item in the media files and folders context menu (default value)" - } - } - }, - { - "Id": 1204, - "Region": "Context menu", - "Function": "ShareContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Share\" item from the context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Share\" item in the context menu (default value)" - } - } - }, - { - "Id": 1205, - "Region": "Context menu", - "Function": "EditWithPhotosContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Edit with Photos\" item from the media files context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Edit with Photos\" item in the media files context menu (default value)" - } - } - }, - { - "Id": 1206, - "Region": "Context menu", - "Function": "CreateANewVideoContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Create a new video\" item in the media files context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Create a new video\" item in the media files context menu (default value)" - } - } - }, - { - "Id": 1207, - "Region": "Context menu", - "Function": "PrintCMDContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Print\" item from the .bat and .cmd context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Print\" item in the .bat and .cmd context menu (default value)" - } - } - }, - { - "Id": 1208, - "Region": "Context menu", - "Function": "IncludeInLibraryContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Include in Library\" item from the folders and drives context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Include in Library\" item in the folders and drives context menu (default value)" - } - } - }, - { - "Id": 1209, - "Region": "Context menu", - "Function": "SendToContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Send to\" item from the folders context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Send to\" item in the folders context menu (default value)" - } - } - }, - { - "Id": 1210, - "Region": "Context menu", - "Function": "BitLockerContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Turn on BitLocker\" item from the drives context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Turn on BitLocker\" item in the drives context menu (default value)" - } - } - }, - { - "Id": 1211, - "Region": "Context menu", - "Function": "CompressedFolderNewContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Compressed (zipped) Folder\" item from the \"New\" context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Compressed (zipped) Folder\" item to the \"New\" context menu (default value)" - } - } - }, - { - "Id": 1212, - "Region": "Context menu", - "Function": "MultipleInvokeContext", - "Arg": { - "Zero": { - "Tag": "Enable", - "ToolTip": "Enable the \"Open\", \"Print\", and \"Edit\" context menu items for more than 15 items selected" - }, - "One": { - "Tag": "Disable", - "ToolTip": "Disable the \"Open\", \"Print\", and \"Edit\" context menu items for more than 15 items selected (default value)" - } - } - }, - { - "Id": 1213, - "Region": "Context menu", - "Function": "UseStoreOpenWith", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Look for an app in the Microsoft Store\" item in the \"Open with\" dialog" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Look for an app in the Microsoft Store\" item in the \"Open with\" dialog (default value)" - } - } - }, - { - "Id": 1214, - "Region": "Context menu", - "Function": "OpenWindowsTerminalContext", - "Arg": { - "Zero": { - "Tag": "Hide", - "ToolTip": "Hide the \"Open in Windows Terminal\" menu option in the folders context menu" - }, - "One": { - "Tag": "Show", - "ToolTip": "Show the \"Open in Windows Terminal\" menu option in the folders context menu (default value)" - } - } - }, - { - "Id": 1215, - "Region": "Context menu", - "Function": "OpenWindowsTerminalAdminContext", - "Arg": { - "Zero": { - "Tag": "Show", - "ToolTip": "Show the \"Open in Windows Terminal\" (Admin) item in the Desktop and folders context menu" - }, - "One": { - "Tag": "Hide", - "ToolTip": "Hide the \"Open in Windows Terminal\" (Admin) item from the Desktop and folders context menu (default value)" - } - } - }, - { - "Id": 1216, - "Region": "Context menu", - "Function": "Windows10ContextMenu", - "Arg": { - "Zero": { - "Tag": "Disable", - "ToolTip": "Disable the Windows 10 context menu style (default value)" - }, - "One": { - "Tag": "Enable", - "ToolTip": "Enable the Windows 10 context menu style" - } - } - } -] diff --git a/Wrapper/Localizations/it-IT/ui.json b/Wrapper/Localizations/it-IT/ui.json deleted file mode 100644 index 5d6645a2..00000000 --- a/Wrapper/Localizations/it-IT/ui.json +++ /dev/null @@ -1,70 +0,0 @@ -[ - { - "Id": "Menu", - "Options": { - "menuImportExportPreset": "Importa | Esporta", - "menuImportPreset": "Importa Preset", - "menuExportPreset": "Esporta Preset", - "menuPresets": "Preset", - "menuOpposite": "Inverti inpostazioni", - "menuClear": "Reimposta", - "menuTheme": "Tema", - "menuThemeDark": "Scuro", - "menuThemeLight": "Chiaro", - "menuLanguage": "Lingua", - "menuAbout": "Informazioni" - } - }, - { - "Id": "Tab", - "Options": { - "tabSystemProtection": "Protezione del sistema", - "tabPrivacyTelemetry": "Privacy & Telemetria", - "tabUIPersonalization": "Interfaccia & Personalizzazione", - "tabOneDrive": "OneDrive", - "tabSystem": "Sistema", - "tabWSL": "WSL", - "tabStartMenu": "Menu Start", - "tabUWP": "App UWP", - "tabGaming": "Gaming", - "tabScheduledTasks": "Operazioni pianificate", - "tabDefenderSecurity": "Windows Defender & Sicurezza", - "tabContextMenu": "Menu contestuale", - "tabConsoleOutput": "Output della console" - } - }, - { - "Id": "Button", - "Options": { - "btnRefreshConsole": "Riarica la console", - "btnRunPowerShell": "Esegui PowerShell" - } - }, - { - "Id": "StatusBar", - "Options": { - "statusBarHover": "Passa il cursore del mouse sugli elemento selezionatozione per mostrare informazioni su esso", - "statusBarPresetLoaded": "preset caricato!", - "statusBarPresetNotComp": "il file preset file non è compatibile!", - "statusBarSophiaPreset": "Sophia preset caricato!", - "statusBarWindowsDefaultPreset": "Preset di Windows predefinito caricato!", - "statusBarPowerShellScriptCreatedFromSelections": "Script PowerShell creato in base alle tue selezioni!Ora puoi eseguirlo o salvarlo.", - "statusBarPowerShellExport": "Script PowerShell creato!", - "statusBarOpposite": "Le opzioni selezionate sono state invertite!", - "statusBarClear": "Le opzioni selezionate sono state annullate", - "statusBarDisabled": "Devi 'Importare un preset' per l'uso di Wrapper. Importalo per abilitare le opzioni.", - "statusBarCurrentOS": "Current OS" - } - }, - { - "Id": "MessageBox", - "Options": { - "messageBoxNewWrapperFound": "Una nuova versione di 'Wrapper' è stata trovata.\n Aprire la pagina pagina dei rilasci di GitHub?", - "messageBoxNewSophiaFound": "Una nuova versione di 'Sophi Script' è stata trovata.\n Aprire la pagina pagina dei rilasci di GitHub?", - "messageBoxDoesNotExist": "Non esiste", - "messageBoxPresetNotComp": "Il file preset non è compatibile! ", - "messageBoxFilesMissingClose": "Mancano alcuni file. Il wrapper si chiuderà", - "messageBoxConsoleEmpty": "La console è vuota.\n Fare clic sul pulsante 'Aggiorna console' per creare lo script con le selezioni" - } - } -] diff --git a/Wrapper/SophiaScriptWrapper.exe b/Wrapper/SophiaScriptWrapper.exe index c49c4c49..6bf20494 100644 Binary files a/Wrapper/SophiaScriptWrapper.exe and b/Wrapper/SophiaScriptWrapper.exe differ