Skip to content

Commit dac0bff

Browse files
committed
6.8.6 — 09.05.2025
1 parent 7bf6250 commit dac0bff

File tree

29 files changed

+75
-75
lines changed

29 files changed

+75
-75
lines changed

sophia_script_versions.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"Sophia_Script_Windows_10_PowerShell_5_1": "5.20.5",
3-
"Sophia_Script_Windows_10_PowerShell_7": "5.20.5",
4-
"Sophia_Script_Windows_10_LTSC2019": "5.10.5",
5-
"Sophia_Script_Windows_10_LTSC2021": "5.20.5",
6-
"Sophia_Script_Windows_11_PowerShell_5_1": "6.8.5",
7-
"Sophia_Script_Windows_11_LTSC2024": "6.8.5",
8-
"Sophia_Script_Windows_11_PowerShell_7": "6.8.5",
9-
"Sophia_Script_Wrapper": "2.7.15"
2+
"Sophia_Script_Windows_10_PowerShell_5_1": "5.20.6",
3+
"Sophia_Script_Windows_10_PowerShell_7": "5.20.6",
4+
"Sophia_Script_Windows_10_LTSC2019": "5.10.6",
5+
"Sophia_Script_Windows_10_LTSC2021": "5.20.6",
6+
"Sophia_Script_Windows_11_PowerShell_5_1": "6.8.6",
7+
"Sophia_Script_Windows_11_LTSC2024": "6.8.6",
8+
"Sophia_Script_Windows_11_PowerShell_7": "6.8.6",
9+
"Sophia_Script_Wrapper": "2.7.16"
1010
}

src/Sophia_Script_for_Windows_10/Import-TabCompletion.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
.SYNOPSIS
33
Enable tab completion to invoke for functions if you do not know function name
44
5-
Version: 5.20.5
6-
Date: 18.04.2025
5+
Version: 5.20.6
6+
Date: 09.05.2025
77
88
Copyright (c) 2014—2025 Team Sophia
99
@@ -49,7 +49,7 @@ function Sophia
4949

5050
Clear-Host
5151

52-
$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"
52+
$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"
5353

5454
Remove-Module -Name SophiaScript -Force -ErrorAction Ignore
5555
Import-Module -Name $PSScriptRoot\Manifest\SophiaScript.psd1 -PassThru -Force

src/Sophia_Script_for_Windows_10/Manifest/SophiaScript.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@{
22
RootModule = '..\Module\Sophia.psm1'
3-
ModuleVersion = '5.20.5'
3+
ModuleVersion = '5.20.6'
44
GUID = '109cc881-c42b-45af-a74a-550781989d6a'
55
Author = 'Team Sophia'
66
Copyright = '(c) 2014—2025 Team Sophia. All rights reserved'

src/Sophia_Script_for_Windows_10/Module/Sophia.psm1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
Sophia Script is a PowerShell module for Windows 10 & Windows 11 fine-tuning and automating the routine tasks
44
55
.VERSION
6-
5.20.5
6+
5.20.6
77
88
.DATE
9-
18.04.2025
9+
09.05.2025
1010
1111
.AUTHOR
1212
Team Sophia
@@ -9875,13 +9875,13 @@ function Import-Associations
98759875
function UninstallPCHealthCheck
98769876
{
98779877
$Folder = (New-Object -ComObject Shell.Application).NameSpace("$env:SystemRoot\Installer")
9878-
$Files = [hashtable]::new() ### @{{}}
9878+
$Files = @{}
98799879
$Folder.Items() | Where-Object -FilterScript {$_.Path.EndsWith(".msi")} | ForEach-Object -Process {$Files.Add($_.Name, $_)} | Out-Null
98809880

98819881
# Find the necessary .msi with the Subject property equal to "Windows PC Health Check"
98829882
foreach ($MSI in @(Get-ChildItem -Path "$env:SystemRoot\Installer" -Filter *.msi -File -Force))
98839883
{
9884-
$Name = $Files.Keys | Where-Object -FilterScript {$_ -eq $MSI.Name}
9884+
$Name = $Files.Keys | Where-Object -FilterScript {$_ -eq $MSI.BaseName}
98859885
# Checking whether necessary files exist in folder unless we get a bunch of errors for $File variable
98869886
if ($Name)
98879887
{

src/Sophia_Script_for_Windows_10/Sophia.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
Default preset file for "Sophia Script for Windows 10"
44
55
.VERSION
6-
5.20.5
6+
5.20.6
77
88
.DATE
9-
18.04.2025
9+
09.05.2025
1010
1111
.COPYRIGHT
1212
(c) 2014—2025 Team Sophia
@@ -77,7 +77,7 @@ param
7777

7878
Clear-Host
7979

80-
$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"
80+
$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"
8181

8282
# Checking whether all files were expanded before running
8383
$ScriptFiles = @(

src/Sophia_Script_for_Windows_10_LTSC_2019/Import-TabCompletion.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
.SYNOPSIS
33
Enable tab completion to invoke for functions if you do not know function name
44
5-
Version: 5.10.5
6-
Date: 18.04.2025
5+
Version: 5.10.6
6+
Date: 09.05.2025
77
88
Copyright (c) 2014—2025 Team Sophia
99
@@ -49,7 +49,7 @@ function Sophia
4949

5050
Clear-Host
5151

52-
$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"
52+
$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"
5353

5454
Remove-Module -Name SophiaScript -Force -ErrorAction Ignore
5555
Import-Module -Name $PSScriptRoot\Manifest\SophiaScript.psd1 -PassThru -Force

src/Sophia_Script_for_Windows_10_LTSC_2019/Manifest/SophiaScript.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@{
22
RootModule = '..\Module\Sophia.psm1'
3-
ModuleVersion = '5.10.5'
3+
ModuleVersion = '5.10.6'
44
GUID = 'a36a65ca-70f9-43df-856c-3048fc5e7f01'
55
Author = 'Team Sophia'
66
Copyright = '(c) 2014—2025 Team Sophia. All rights reserved'

src/Sophia_Script_for_Windows_10_LTSC_2019/Module/Sophia.psm1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
Sophia Script is a PowerShell module for Windows 10 & Windows 11 fine-tuning and automating the routine tasks
44
55
.VERSION
6-
5.10.5
6+
5.10.6
77
88
.DATE
9-
18.04.2025
9+
09.05.2025
1010
1111
.AUTHOR
1212
Team Sophia

src/Sophia_Script_for_Windows_10_LTSC_2019/Sophia.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
Default preset file for "Sophia Script for Windows 10 LTSC 2019"
44
55
.VERSION
6-
5.10.5
6+
5.10.6
77
88
.DATE
9-
18.04.2025
9+
09.05.2025
1010
1111
.COPYRIGHT
1212
(c) 2014—2025 Team Sophia
@@ -75,7 +75,7 @@ param
7575

7676
Clear-Host
7777

78-
$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"
78+
$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"
7979

8080
# Checking whether all files were expanded before running
8181
$ScriptFiles = @(

src/Sophia_Script_for_Windows_10_LTSC_2021/Import-TabCompletion.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
.SYNOPSIS
33
Enable tab completion to invoke for functions if you do not know function name
44
5-
Version: 5.20.5
6-
Date: 18.04.2025
5+
Version: 5.20.6
6+
Date: 09.05.2025
77
88
Copyright (c) 2014—2025 Team Sophia
99
@@ -49,7 +49,7 @@ function Sophia
4949

5050
Clear-Host
5151

52-
$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"
52+
$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"
5353

5454
Remove-Module -Name SophiaScript -Force -ErrorAction Ignore
5555
Import-Module -Name $PSScriptRoot\Manifest\SophiaScript.psd1 -PassThru -Force

0 commit comments

Comments
 (0)