diff --git a/sophia_script_versions.json b/sophia_script_versions.json index 74b516ea..1db36890 100644 --- a/sophia_script_versions.json +++ b/sophia_script_versions.json @@ -1,10 +1,10 @@ { - "Sophia_Script_Windows_10_PowerShell_5_1": "5.20.5", - "Sophia_Script_Windows_10_PowerShell_7": "5.20.5", - "Sophia_Script_Windows_10_LTSC2019": "5.10.5", - "Sophia_Script_Windows_10_LTSC2021": "5.20.5", - "Sophia_Script_Windows_11_PowerShell_5_1": "6.8.5", - "Sophia_Script_Windows_11_LTSC2024": "6.8.5", - "Sophia_Script_Windows_11_PowerShell_7": "6.8.5", - "Sophia_Script_Wrapper": "2.7.15" + "Sophia_Script_Windows_10_PowerShell_5_1": "5.20.6", + "Sophia_Script_Windows_10_PowerShell_7": "5.20.6", + "Sophia_Script_Windows_10_LTSC2019": "5.10.6", + "Sophia_Script_Windows_10_LTSC2021": "5.20.6", + "Sophia_Script_Windows_11_PowerShell_5_1": "6.8.6", + "Sophia_Script_Windows_11_LTSC2024": "6.8.6", + "Sophia_Script_Windows_11_PowerShell_7": "6.8.6", + "Sophia_Script_Wrapper": "2.7.16" } diff --git a/src/Sophia_Script_for_Windows_10/Import-TabCompletion.ps1 b/src/Sophia_Script_for_Windows_10/Import-TabCompletion.ps1 index ac857bde..cd6a1a6c 100644 --- a/src/Sophia_Script_for_Windows_10/Import-TabCompletion.ps1 +++ b/src/Sophia_Script_for_Windows_10/Import-TabCompletion.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS Enable tab completion to invoke for functions if you do not know function name - Version: 5.20.5 - Date: 18.04.2025 + Version: 5.20.6 + Date: 09.05.2025 Copyright (c) 2014—2025 Team Sophia @@ -49,7 +49,7 @@ function Sophia Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.20.5 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.20.6 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" Remove-Module -Name SophiaScript -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\SophiaScript.psd1 -PassThru -Force diff --git a/src/Sophia_Script_for_Windows_10/Manifest/SophiaScript.psd1 b/src/Sophia_Script_for_Windows_10/Manifest/SophiaScript.psd1 index 447e5fef..809c5bf7 100644 --- a/src/Sophia_Script_for_Windows_10/Manifest/SophiaScript.psd1 +++ b/src/Sophia_Script_for_Windows_10/Manifest/SophiaScript.psd1 @@ -1,6 +1,6 @@ @{ RootModule = '..\Module\Sophia.psm1' - ModuleVersion = '5.20.5' + ModuleVersion = '5.20.6' GUID = '109cc881-c42b-45af-a74a-550781989d6a' Author = 'Team Sophia' Copyright = '(c) 2014—2025 Team Sophia. All rights reserved' diff --git a/src/Sophia_Script_for_Windows_10/Module/Sophia.psm1 b/src/Sophia_Script_for_Windows_10/Module/Sophia.psm1 index 4eb25459..f99252f1 100644 --- a/src/Sophia_Script_for_Windows_10/Module/Sophia.psm1 +++ b/src/Sophia_Script_for_Windows_10/Module/Sophia.psm1 @@ -3,10 +3,10 @@ Sophia Script is a PowerShell module for Windows 10 & Windows 11 fine-tuning and automating the routine tasks .VERSION - 5.20.5 + 5.20.6 .DATE - 18.04.2025 + 09.05.2025 .AUTHOR Team Sophia @@ -9875,13 +9875,13 @@ function Import-Associations function UninstallPCHealthCheck { $Folder = (New-Object -ComObject Shell.Application).NameSpace("$env:SystemRoot\Installer") - $Files = [hashtable]::new() ### @{{}} + $Files = @{} $Folder.Items() | Where-Object -FilterScript {$_.Path.EndsWith(".msi")} | ForEach-Object -Process {$Files.Add($_.Name, $_)} | Out-Null # Find the necessary .msi with the Subject property equal to "Windows PC Health Check" foreach ($MSI in @(Get-ChildItem -Path "$env:SystemRoot\Installer" -Filter *.msi -File -Force)) { - $Name = $Files.Keys | Where-Object -FilterScript {$_ -eq $MSI.Name} + $Name = $Files.Keys | Where-Object -FilterScript {$_ -eq $MSI.BaseName} # Checking whether necessary files exist in folder unless we get a bunch of errors for $File variable if ($Name) { diff --git a/src/Sophia_Script_for_Windows_10/Sophia.ps1 b/src/Sophia_Script_for_Windows_10/Sophia.ps1 index 85235e1a..c2b316c9 100644 --- a/src/Sophia_Script_for_Windows_10/Sophia.ps1 +++ b/src/Sophia_Script_for_Windows_10/Sophia.ps1 @@ -3,10 +3,10 @@ Default preset file for "Sophia Script for Windows 10" .VERSION - 5.20.5 + 5.20.6 .DATE - 18.04.2025 + 09.05.2025 .COPYRIGHT (c) 2014—2025 Team Sophia @@ -77,7 +77,7 @@ param Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.20.5 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.20.6 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" # Checking whether all files were expanded before running $ScriptFiles = @( diff --git a/src/Sophia_Script_for_Windows_10_LTSC_2019/Import-TabCompletion.ps1 b/src/Sophia_Script_for_Windows_10_LTSC_2019/Import-TabCompletion.ps1 index 8b6ed63b..2605f3b5 100644 --- a/src/Sophia_Script_for_Windows_10_LTSC_2019/Import-TabCompletion.ps1 +++ b/src/Sophia_Script_for_Windows_10_LTSC_2019/Import-TabCompletion.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS Enable tab completion to invoke for functions if you do not know function name - Version: 5.10.5 - Date: 18.04.2025 + Version: 5.10.6 + Date: 09.05.2025 Copyright (c) 2014—2025 Team Sophia @@ -49,7 +49,7 @@ function Sophia Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC 2019 v5.10.5 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows 10 | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC 2019 v5.10.6 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows 10 | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" Remove-Module -Name SophiaScript -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\SophiaScript.psd1 -PassThru -Force diff --git a/src/Sophia_Script_for_Windows_10_LTSC_2019/Manifest/SophiaScript.psd1 b/src/Sophia_Script_for_Windows_10_LTSC_2019/Manifest/SophiaScript.psd1 index 8fe0ca04..27d733cd 100644 --- a/src/Sophia_Script_for_Windows_10_LTSC_2019/Manifest/SophiaScript.psd1 +++ b/src/Sophia_Script_for_Windows_10_LTSC_2019/Manifest/SophiaScript.psd1 @@ -1,6 +1,6 @@ @{ RootModule = '..\Module\Sophia.psm1' - ModuleVersion = '5.10.5' + ModuleVersion = '5.10.6' GUID = 'a36a65ca-70f9-43df-856c-3048fc5e7f01' Author = 'Team Sophia' Copyright = '(c) 2014—2025 Team Sophia. All rights reserved' diff --git a/src/Sophia_Script_for_Windows_10_LTSC_2019/Module/Sophia.psm1 b/src/Sophia_Script_for_Windows_10_LTSC_2019/Module/Sophia.psm1 index 586b9124..b8dbd9ba 100644 --- a/src/Sophia_Script_for_Windows_10_LTSC_2019/Module/Sophia.psm1 +++ b/src/Sophia_Script_for_Windows_10_LTSC_2019/Module/Sophia.psm1 @@ -3,10 +3,10 @@ Sophia Script is a PowerShell module for Windows 10 & Windows 11 fine-tuning and automating the routine tasks .VERSION - 5.10.5 + 5.10.6 .DATE - 18.04.2025 + 09.05.2025 .AUTHOR Team Sophia diff --git a/src/Sophia_Script_for_Windows_10_LTSC_2019/Sophia.ps1 b/src/Sophia_Script_for_Windows_10_LTSC_2019/Sophia.ps1 index 8951b7f6..b253529e 100644 --- a/src/Sophia_Script_for_Windows_10_LTSC_2019/Sophia.ps1 +++ b/src/Sophia_Script_for_Windows_10_LTSC_2019/Sophia.ps1 @@ -3,10 +3,10 @@ Default preset file for "Sophia Script for Windows 10 LTSC 2019" .VERSION - 5.10.5 + 5.10.6 .DATE - 18.04.2025 + 09.05.2025 .COPYRIGHT (c) 2014—2025 Team Sophia @@ -75,7 +75,7 @@ param Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC 2019 v5.10.5 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC 2019 v5.10.6 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" # Checking whether all files were expanded before running $ScriptFiles = @( diff --git a/src/Sophia_Script_for_Windows_10_LTSC_2021/Import-TabCompletion.ps1 b/src/Sophia_Script_for_Windows_10_LTSC_2021/Import-TabCompletion.ps1 index 834cff2f..4d758b79 100644 --- a/src/Sophia_Script_for_Windows_10_LTSC_2021/Import-TabCompletion.ps1 +++ b/src/Sophia_Script_for_Windows_10_LTSC_2021/Import-TabCompletion.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS Enable tab completion to invoke for functions if you do not know function name - Version: 5.20.5 - Date: 18.04.2025 + Version: 5.20.6 + Date: 09.05.2025 Copyright (c) 2014—2025 Team Sophia @@ -49,7 +49,7 @@ function Sophia Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC 2021 v5.20.5 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC 2021 v5.20.6 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" Remove-Module -Name SophiaScript -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\SophiaScript.psd1 -PassThru -Force diff --git a/src/Sophia_Script_for_Windows_10_LTSC_2021/Manifest/SophiaScript.psd1 b/src/Sophia_Script_for_Windows_10_LTSC_2021/Manifest/SophiaScript.psd1 index 447e5fef..809c5bf7 100644 --- a/src/Sophia_Script_for_Windows_10_LTSC_2021/Manifest/SophiaScript.psd1 +++ b/src/Sophia_Script_for_Windows_10_LTSC_2021/Manifest/SophiaScript.psd1 @@ -1,6 +1,6 @@ @{ RootModule = '..\Module\Sophia.psm1' - ModuleVersion = '5.20.5' + ModuleVersion = '5.20.6' GUID = '109cc881-c42b-45af-a74a-550781989d6a' Author = 'Team Sophia' Copyright = '(c) 2014—2025 Team Sophia. All rights reserved' diff --git a/src/Sophia_Script_for_Windows_10_LTSC_2021/Module/Sophia.psm1 b/src/Sophia_Script_for_Windows_10_LTSC_2021/Module/Sophia.psm1 index a6ad3b6a..65461cc6 100644 --- a/src/Sophia_Script_for_Windows_10_LTSC_2021/Module/Sophia.psm1 +++ b/src/Sophia_Script_for_Windows_10_LTSC_2021/Module/Sophia.psm1 @@ -3,10 +3,10 @@ Sophia Script is a PowerShell module for Windows 10 & Windows 11 fine-tuning and automating the routine tasks .VERSION - 5.20.5 + 5.20.6 .DATE - 18.04.2025 + 09.05.2025 .AUTHOR Team Sophia diff --git a/src/Sophia_Script_for_Windows_10_LTSC_2021/Sophia.ps1 b/src/Sophia_Script_for_Windows_10_LTSC_2021/Sophia.ps1 index 4b604a4b..78875d5e 100644 --- a/src/Sophia_Script_for_Windows_10_LTSC_2021/Sophia.ps1 +++ b/src/Sophia_Script_for_Windows_10_LTSC_2021/Sophia.ps1 @@ -3,10 +3,10 @@ Default preset file for "Sophia Script for Windows 10 LTSC 2021" .VERSION - 5.20.5 + 5.20.6 .DATE - 18.04.2025 + 09.05.2025 .COPYRIGHT (c) 2014—2025 Team Sophia @@ -75,7 +75,7 @@ param Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC 2021 v5.20.5 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC 2021 v5.20.6 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" # Checking whether all files were expanded before running $ScriptFiles = @( diff --git a/src/Sophia_Script_for_Windows_10_PowerShell_7/Import-TabCompletion.ps1 b/src/Sophia_Script_for_Windows_10_PowerShell_7/Import-TabCompletion.ps1 index 8f5465d0..2373a61c 100644 --- a/src/Sophia_Script_for_Windows_10_PowerShell_7/Import-TabCompletion.ps1 +++ b/src/Sophia_Script_for_Windows_10_PowerShell_7/Import-TabCompletion.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS Enable tab completion to invoke for functions if you do not know function name - Version: 5.20.5 - Date: 18.04.2025 + Version: 5.20.6 + Date: 09.05.2025 Copyright (c) 2014—2025 Team Sophia @@ -49,7 +49,7 @@ function Sophia Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.20.5 (PowerShell 7) | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.20.6 (PowerShell 7) | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" Remove-Module -Name SophiaScript -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\SophiaScript.psd1 -PassThru -Force diff --git a/src/Sophia_Script_for_Windows_10_PowerShell_7/Manifest/SophiaScript.psd1 b/src/Sophia_Script_for_Windows_10_PowerShell_7/Manifest/SophiaScript.psd1 index 153c2d31..b6086ed6 100644 --- a/src/Sophia_Script_for_Windows_10_PowerShell_7/Manifest/SophiaScript.psd1 +++ b/src/Sophia_Script_for_Windows_10_PowerShell_7/Manifest/SophiaScript.psd1 @@ -1,6 +1,6 @@ @{ RootModule = '..\Module\Sophia.psm1' - ModuleVersion = '5.20.5' + ModuleVersion = '5.20.6' GUID = 'aa0b47a7-1770-4b5d-8c9f-cc6c505bcc7a' Author = 'Team Sophia' Copyright = '(c) 2014—2025 Team Sophia. All rights reserved' diff --git a/src/Sophia_Script_for_Windows_10_PowerShell_7/Module/Sophia.psm1 b/src/Sophia_Script_for_Windows_10_PowerShell_7/Module/Sophia.psm1 index f5e27747..caf6fbc3 100644 --- a/src/Sophia_Script_for_Windows_10_PowerShell_7/Module/Sophia.psm1 +++ b/src/Sophia_Script_for_Windows_10_PowerShell_7/Module/Sophia.psm1 @@ -3,10 +3,10 @@ Sophia Script is a PowerShell module for Windows 10 & Windows 11 fine-tuning and automating the routine tasks .VERSION - 5.20.5 + 5.20.6 .DATE - 18.04.2025 + 09.05.2025 .AUTHOR Team Sophia @@ -9909,13 +9909,13 @@ function Import-Associations function UninstallPCHealthCheck { $Folder = (New-Object -ComObject Shell.Application).NameSpace("$env:SystemRoot\Installer") - $Files = [hashtable]::new() + $Files = @{} $Folder.Items() | Where-Object -FilterScript {$_.Path.EndsWith(".msi")} | ForEach-Object -Process {$Files.Add($_.Name, $_)} | Out-Null # Find the necessary .msi with the Subject property equal to "Windows PC Health Check" foreach ($MSI in @(Get-ChildItem -Path "$env:SystemRoot\Installer" -Filter *.msi -File -Force)) { - $Name = $Files.Keys | Where-Object -FilterScript {$_ -eq $MSI.Name} + $Name = $Files.Keys | Where-Object -FilterScript {$_ -eq $MSI.BaseName} # Checking whether necessary files exist in folder unless we get a bunch of errors for $File variable if ($Name) { diff --git a/src/Sophia_Script_for_Windows_10_PowerShell_7/Sophia.ps1 b/src/Sophia_Script_for_Windows_10_PowerShell_7/Sophia.ps1 index 101ba744..77c7b2c9 100644 --- a/src/Sophia_Script_for_Windows_10_PowerShell_7/Sophia.ps1 +++ b/src/Sophia_Script_for_Windows_10_PowerShell_7/Sophia.ps1 @@ -3,10 +3,10 @@ Default preset file for "Sophia Script for Windows 10 (PowerShell 7)" .VERSION - 5.20.5 + 5.20.6 .DATE - 18.04.2025 + 09.05.2025 .COPYRIGHT (c) 2014—2025 Team Sophia @@ -77,7 +77,7 @@ param Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.20.5 (PowerShell 7) | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.20.6 (PowerShell 7) | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" # Checking whether all files were expanded before running $ScriptFiles = @( diff --git a/src/Sophia_Script_for_Windows_11/Import-TabCompletion.ps1 b/src/Sophia_Script_for_Windows_11/Import-TabCompletion.ps1 index 960d632c..f534c2c1 100644 --- a/src/Sophia_Script_for_Windows_11/Import-TabCompletion.ps1 +++ b/src/Sophia_Script_for_Windows_11/Import-TabCompletion.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS Enable tab completion to invoke for functions if you do not know function name - Version: 6.8.5 - Date: 18.04.2025 + Version: 6.8.6 + Date: 09.05.2025 Copyright (c) 2014—2025 Team Sophia @@ -49,7 +49,7 @@ function Sophia Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.8.5 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.8.6 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" Remove-Module -Name SophiaScript -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\SophiaScript.psd1 -PassThru -Force diff --git a/src/Sophia_Script_for_Windows_11/Manifest/SophiaScript.psd1 b/src/Sophia_Script_for_Windows_11/Manifest/SophiaScript.psd1 index a7075ddb..76d6659d 100644 --- a/src/Sophia_Script_for_Windows_11/Manifest/SophiaScript.psd1 +++ b/src/Sophia_Script_for_Windows_11/Manifest/SophiaScript.psd1 @@ -1,6 +1,6 @@ @{ RootModule = '..\Module\Sophia.psm1' - ModuleVersion = '6.8.5' + ModuleVersion = '6.8.6' GUID = '109cc881-c42b-45af-a74a-550781989d6a' Author = 'Team Sophia' Copyright = '(c) 2014—2025 Team Sophia. All rights reserved' diff --git a/src/Sophia_Script_for_Windows_11/Module/Sophia.psm1 b/src/Sophia_Script_for_Windows_11/Module/Sophia.psm1 index 478a38d7..fe9a8852 100644 --- a/src/Sophia_Script_for_Windows_11/Module/Sophia.psm1 +++ b/src/Sophia_Script_for_Windows_11/Module/Sophia.psm1 @@ -3,10 +3,10 @@ Sophia Script is a PowerShell module for Windows 10 & Windows 11 fine-tuning and automating the routine tasks .VERSION - 6.8.5 + 6.8.6 .DATE - 18.04.2025 + 09.05.2025 .AUTHOR Team Sophia diff --git a/src/Sophia_Script_for_Windows_11/Sophia.ps1 b/src/Sophia_Script_for_Windows_11/Sophia.ps1 index af821776..04a70408 100644 --- a/src/Sophia_Script_for_Windows_11/Sophia.ps1 +++ b/src/Sophia_Script_for_Windows_11/Sophia.ps1 @@ -3,10 +3,10 @@ Default preset file for "Sophia Script for Windows 11" .VERSION - 6.8.5 + 6.8.6 .DATE - 18.04.2025 + 09.05.2025 .COPYRIGHT (c) 2014—2025 Team Sophia @@ -73,7 +73,7 @@ param Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.8.5 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.8.6 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" # Checking whether all files were expanded before running $ScriptFiles = @( diff --git a/src/Sophia_Script_for_Windows_11_LTSC_2024/Import-TabCompletion.ps1 b/src/Sophia_Script_for_Windows_11_LTSC_2024/Import-TabCompletion.ps1 index 4ece3947..2aa5b2a7 100644 --- a/src/Sophia_Script_for_Windows_11_LTSC_2024/Import-TabCompletion.ps1 +++ b/src/Sophia_Script_for_Windows_11_LTSC_2024/Import-TabCompletion.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS Enable tab completion to invoke for functions if you do not know function name - Version: 6.8.5 - Date: 18.04.2025 + Version: 6.8.6 + Date: 09.05.2025 Copyright (c) 2014—2025 Team Sophia @@ -49,7 +49,7 @@ function Sophia Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.8.5 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.8.6 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" Remove-Module -Name SophiaScript -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\SophiaScript.psd1 -PassThru -Force diff --git a/src/Sophia_Script_for_Windows_11_LTSC_2024/Manifest/SophiaScript.psd1 b/src/Sophia_Script_for_Windows_11_LTSC_2024/Manifest/SophiaScript.psd1 index a7075ddb..76d6659d 100644 --- a/src/Sophia_Script_for_Windows_11_LTSC_2024/Manifest/SophiaScript.psd1 +++ b/src/Sophia_Script_for_Windows_11_LTSC_2024/Manifest/SophiaScript.psd1 @@ -1,6 +1,6 @@ @{ RootModule = '..\Module\Sophia.psm1' - ModuleVersion = '6.8.5' + ModuleVersion = '6.8.6' GUID = '109cc881-c42b-45af-a74a-550781989d6a' Author = 'Team Sophia' Copyright = '(c) 2014—2025 Team Sophia. All rights reserved' diff --git a/src/Sophia_Script_for_Windows_11_LTSC_2024/Module/Sophia.psm1 b/src/Sophia_Script_for_Windows_11_LTSC_2024/Module/Sophia.psm1 index 17518bed..7eff4189 100644 --- a/src/Sophia_Script_for_Windows_11_LTSC_2024/Module/Sophia.psm1 +++ b/src/Sophia_Script_for_Windows_11_LTSC_2024/Module/Sophia.psm1 @@ -3,10 +3,10 @@ Sophia Script is a PowerShell module for Windows 10 & Windows 11 fine-tuning and automating the routine tasks .VERSION - 6.8.5 + 6.8.6 .DATE - 18.04.2025 + 09.05.2025 .AUTHOR Team Sophia diff --git a/src/Sophia_Script_for_Windows_11_LTSC_2024/Sophia.ps1 b/src/Sophia_Script_for_Windows_11_LTSC_2024/Sophia.ps1 index 30b1efdf..98547286 100644 --- a/src/Sophia_Script_for_Windows_11_LTSC_2024/Sophia.ps1 +++ b/src/Sophia_Script_for_Windows_11_LTSC_2024/Sophia.ps1 @@ -3,10 +3,10 @@ Default preset file for "Sophia Script for Windows 11 LTSC 2024" .VERSION - 6.8.5 + 6.8.6 .DATE - 18.04.2025 + 09.05.2025 .COPYRIGHT (c) 2014—2025 Team Sophia @@ -74,7 +74,7 @@ param Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 LTSC 2024 v6.8.5 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 LTSC 2024 v6.8.6 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" # Checking whether all files were expanded before running $ScriptFiles = @( diff --git a/src/Sophia_Script_for_Windows_11_PowerShell_7/Import-TabCompletion.ps1 b/src/Sophia_Script_for_Windows_11_PowerShell_7/Import-TabCompletion.ps1 index d57f8827..434d46b1 100644 --- a/src/Sophia_Script_for_Windows_11_PowerShell_7/Import-TabCompletion.ps1 +++ b/src/Sophia_Script_for_Windows_11_PowerShell_7/Import-TabCompletion.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS Enable tab completion to invoke for functions if you do not know function name - Version: 6.8.5 - Date: 18.04.2025 + Version: 6.8.6 + Date: 09.05.2025 Copyright (c) 2014—2025 Team Sophia @@ -49,7 +49,7 @@ function Sophia Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.8.5 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.8.6 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" Remove-Module -Name SophiaScript -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\SophiaScript.psd1 -PassThru -Force diff --git a/src/Sophia_Script_for_Windows_11_PowerShell_7/Manifest/SophiaScript.psd1 b/src/Sophia_Script_for_Windows_11_PowerShell_7/Manifest/SophiaScript.psd1 index e87854c5..b15edaf2 100644 --- a/src/Sophia_Script_for_Windows_11_PowerShell_7/Manifest/SophiaScript.psd1 +++ b/src/Sophia_Script_for_Windows_11_PowerShell_7/Manifest/SophiaScript.psd1 @@ -1,6 +1,6 @@ @{ RootModule = '..\Module\Sophia.psm1' - ModuleVersion = '6.8.5' + ModuleVersion = '6.8.6' GUID = '109cc881-c42b-45af-a74a-550781989d6a' Author = 'Team Sophia' Copyright = '(c) 2014—2025 Team Sophia. All rights reserved' diff --git a/src/Sophia_Script_for_Windows_11_PowerShell_7/Module/Sophia.psm1 b/src/Sophia_Script_for_Windows_11_PowerShell_7/Module/Sophia.psm1 index 14ca8072..3c66a9e0 100644 --- a/src/Sophia_Script_for_Windows_11_PowerShell_7/Module/Sophia.psm1 +++ b/src/Sophia_Script_for_Windows_11_PowerShell_7/Module/Sophia.psm1 @@ -3,10 +3,10 @@ Sophia Script is a PowerShell module for Windows 10 & Windows 11 fine-tuning and automating the routine tasks .VERSION - 6.8.5 + 6.8.6 .DATE - 18.04.2025 + 09.05.2025 .AUTHOR Team Sophia diff --git a/src/Sophia_Script_for_Windows_11_PowerShell_7/Sophia.ps1 b/src/Sophia_Script_for_Windows_11_PowerShell_7/Sophia.ps1 index 06f127ea..1e62ddb9 100644 --- a/src/Sophia_Script_for_Windows_11_PowerShell_7/Sophia.ps1 +++ b/src/Sophia_Script_for_Windows_11_PowerShell_7/Sophia.ps1 @@ -3,10 +3,10 @@ Default preset file for "Sophia Script for Windows 11 (PowerShell 7)" .VERSION - 6.8.5 + 6.8.6 .DATE - 18.04.2025 + 09.05.2025 .COPYRIGHT (c) 2014—2025 Team Sophia @@ -76,7 +76,7 @@ param Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.8.5 (PowerShell 7) | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.8.6 (PowerShell 7) | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) Team Sophia, 2014$([System.Char]0x2013)2025" # Checking whether all files were expanded before running $ScriptFiles = @(