diff --git a/sophia_script_versions.json b/sophia_script_versions.json index a4c72a53b..8d7b03764 100644 --- a/sophia_script_versions.json +++ b/sophia_script_versions.json @@ -1,10 +1,10 @@ { - "Sophia_Script_Windows_10_PowerShell_5_1": "5.20.0", - "Sophia_Script_Windows_10_PowerShell_7": "5.20.0", - "Sophia_Script_Windows_10_LTSC2019": "5.10.0", - "Sophia_Script_Windows_10_LTSC2021": "5.20.0", - "Sophia_Script_Windows_11_PowerShell_5_1": "6.8.0", - "Sophia_Script_Windows_11_LTSC2024": "6.8.0", - "Sophia_Script_Windows_11_PowerShell_7": "6.8.0", - "Sophia_Script_Wrapper": "2.7.7" + "Sophia_Script_Windows_10_PowerShell_5_1": "5.20.1", + "Sophia_Script_Windows_10_PowerShell_7": "5.20.1", + "Sophia_Script_Windows_10_LTSC2019": "5.10.1", + "Sophia_Script_Windows_10_LTSC2021": "5.20.1", + "Sophia_Script_Windows_11_PowerShell_5_1": "6.8.1", + "Sophia_Script_Windows_11_LTSC2024": "6.8.1", + "Sophia_Script_Windows_11_PowerShell_7": "6.8.1", + "Sophia_Script_Wrapper": "2.7.8" } diff --git a/src/Sophia_Script_for_Windows_10/Functions.ps1 b/src/Sophia_Script_for_Windows_10/Functions.ps1 index 49d8b0b57..704ce6e5b 100644 --- a/src/Sophia_Script_for_Windows_10/Functions.ps1 +++ b/src/Sophia_Script_for_Windows_10/Functions.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS The TAB completion for functions and their arguments - Version: 5.20.0 - Date: 29.12.2024 + Version: 5.20.1 + Date: 19.01.2025 Copyright (c) 2014—2025 farag, Inestic & lowl1f3 @@ -49,7 +49,7 @@ function Sophia Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.20.0 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.20.1 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" Remove-Module -Name Sophia -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force diff --git a/src/Sophia_Script_for_Windows_10/Manifest/Sophia.psd1 b/src/Sophia_Script_for_Windows_10/Manifest/Sophia.psd1 index ea6f5ccc3..e6c0061de 100644 --- a/src/Sophia_Script_for_Windows_10/Manifest/Sophia.psd1 +++ b/src/Sophia_Script_for_Windows_10/Manifest/Sophia.psd1 @@ -1,6 +1,6 @@ @{ RootModule = '..\Module\Sophia.psm1' - ModuleVersion = '5.20.0' + ModuleVersion = '5.20.1' GUID = '109cc881-c42b-45af-a74a-550781989d6a' Author = 'Dmitry "farag" Nefedov' Copyright = '(c) 2014—2025 farag, Inestic & lowl1f3. 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 be0f966a5..051cce3e2 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.0 + 5.20.1 .DATE - 29.12.2024 + 19.01.2025 .AUTHOR farag, Inestic & lowl1f3 diff --git a/src/Sophia_Script_for_Windows_10/Sophia.ps1 b/src/Sophia_Script_for_Windows_10/Sophia.ps1 index f6e08ac2f..04825d479 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.0 + 5.20.1 .DATE - 29.12.2024 + 19.01.2025 .COPYRIGHT (c) 2014—2025 farag, Inestic & lowl1f3 @@ -28,6 +28,9 @@ .EXAMPLE Download and expand the latest Sophia Script version archive (without running) according which Windows and PowerShell versions it is run on iwr script.sophia.team -useb | iex + .EXAMPLE The command will download and expand the latest Sophia Script archive (without running) from the last commit available according which Windows and PowerShell versions it is run on + iwr sl.sophia.team -useb | iex + .NOTES Supported Windows 10 versions Version: 22H2 @@ -74,7 +77,7 @@ param Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.20.0 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.20.1 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 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/Functions.ps1 b/src/Sophia_Script_for_Windows_10_LTSC_2019/Functions.ps1 index f181a08c1..7186f642b 100644 --- a/src/Sophia_Script_for_Windows_10_LTSC_2019/Functions.ps1 +++ b/src/Sophia_Script_for_Windows_10_LTSC_2019/Functions.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS The TAB completion for functions and their arguments - Version: 5.10.0 - Date: 29.12.2024 + Version: 5.10.1 + Date: 19.01.2025 Copyright (c) 2014—2025 farag, Inestic & lowl1f3 @@ -49,7 +49,7 @@ function Sophia Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC 2019 v5.10.0 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows 10 | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC 2019 v5.10.1 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows 10 | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" Remove-Module -Name Sophia -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force diff --git a/src/Sophia_Script_for_Windows_10_LTSC_2019/Manifest/Sophia.psd1 b/src/Sophia_Script_for_Windows_10_LTSC_2019/Manifest/Sophia.psd1 index f9465f98d..af079195f 100644 --- a/src/Sophia_Script_for_Windows_10_LTSC_2019/Manifest/Sophia.psd1 +++ b/src/Sophia_Script_for_Windows_10_LTSC_2019/Manifest/Sophia.psd1 @@ -1,6 +1,6 @@ @{ RootModule = '..\Module\Sophia.psm1' - ModuleVersion = '5.10.0' + ModuleVersion = '5.10.1' GUID = 'a36a65ca-70f9-43df-856c-3048fc5e7f01' Author = 'Dmitry "farag" Nefedov' Copyright = '(c) 2014—2025 farag, Inestic & lowl1f3. 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 4563a3caf..203bf5193 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.0 + 5.10.1 .DATE - 29.12.2024 + 19.01.2025 .AUTHOR farag, Inestic & lowl1f3 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 d86001b1a..4e7f414d5 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.0 + 5.10.1 .DATE - 29.12.2024 + 19.01.2025 .COPYRIGHT (c) 2014—2025 farag, Inestic & lowl1f3 @@ -28,6 +28,9 @@ .EXAMPLE Download and expand the latest Sophia Script version archive (without running) according which Windows and PowerShell versions it is run on iwr script.sophia.team -useb | iex + .EXAMPLE The command will download and expand the latest Sophia Script archive (without running) from the last commit available according which Windows and PowerShell versions it is run on + iwr sl.sophia.team -useb | iex + .NOTES Supports Windows 10 Enterprise LTSC 2019 Architecture: x64 @@ -72,7 +75,7 @@ param Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC 2019 v5.10.0 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC 2019 v5.10.1 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 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/Functions.ps1 b/src/Sophia_Script_for_Windows_10_LTSC_2021/Functions.ps1 index f3dfe58af..539240d03 100644 --- a/src/Sophia_Script_for_Windows_10_LTSC_2021/Functions.ps1 +++ b/src/Sophia_Script_for_Windows_10_LTSC_2021/Functions.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS The TAB completion for functions and their arguments - Version: 5.20.0 - Date: 29.12.2024 + Version: 5.20.1 + Date: 19.01.2025 Copyright (c) 2014—2025 farag, Inestic & lowl1f3 @@ -49,7 +49,7 @@ function Sophia Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC 2021 v5.20.0 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC 2021 v5.20.1 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" Remove-Module -Name Sophia -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force diff --git a/src/Sophia_Script_for_Windows_10_LTSC_2021/Manifest/Sophia.psd1 b/src/Sophia_Script_for_Windows_10_LTSC_2021/Manifest/Sophia.psd1 index ea6f5ccc3..e6c0061de 100644 --- a/src/Sophia_Script_for_Windows_10_LTSC_2021/Manifest/Sophia.psd1 +++ b/src/Sophia_Script_for_Windows_10_LTSC_2021/Manifest/Sophia.psd1 @@ -1,6 +1,6 @@ @{ RootModule = '..\Module\Sophia.psm1' - ModuleVersion = '5.20.0' + ModuleVersion = '5.20.1' GUID = '109cc881-c42b-45af-a74a-550781989d6a' Author = 'Dmitry "farag" Nefedov' Copyright = '(c) 2014—2025 farag, Inestic & lowl1f3. 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 f159733b0..17d5e0308 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.0 + 5.20.1 .DATE - 29.12.2024 + 19.01.2025 .AUTHOR farag, Inestic & lowl1f3 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 8ed913d45..cee3bc4c5 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.0 + 5.20.1 .DATE - 29.12.2024 + 19.01.2025 .COPYRIGHT (c) 2014—2025 farag, Inestic & lowl1f3 @@ -28,6 +28,9 @@ .EXAMPLE Download and expand the latest Sophia Script version archive (without running) according which Windows and PowerShell versions it is run on iwr script.sophia.team -useb | iex + .EXAMPLE The command will download and expand the latest Sophia Script archive (without running) from the last commit available according which Windows and PowerShell versions it is run on + iwr sl.sophia.team -useb | iex + .NOTES Supports Windows 10 Enterprise LTSC 2021 Architecture: x64 @@ -72,7 +75,7 @@ param Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC 2021 v5.20.0 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC 2021 v5.20.1 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 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/Functions.ps1 b/src/Sophia_Script_for_Windows_10_PowerShell_7/Functions.ps1 index 6d5b9b631..811d1cbea 100644 --- a/src/Sophia_Script_for_Windows_10_PowerShell_7/Functions.ps1 +++ b/src/Sophia_Script_for_Windows_10_PowerShell_7/Functions.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS The TAB completion for functions and their arguments - Version: 5.20.0 - Date: 29.12.2024 + Version: 5.20.1 + Date: 19.01.2025 Copyright (c) 2014—2025 farag, Inestic & lowl1f3 @@ -49,7 +49,7 @@ function Sophia Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.20.0 (PowerShell 7) | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.20.1 (PowerShell 7) | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" Remove-Module -Name Sophia -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force diff --git a/src/Sophia_Script_for_Windows_10_PowerShell_7/Manifest/Sophia.psd1 b/src/Sophia_Script_for_Windows_10_PowerShell_7/Manifest/Sophia.psd1 index 736c3ecd7..6399468c0 100644 --- a/src/Sophia_Script_for_Windows_10_PowerShell_7/Manifest/Sophia.psd1 +++ b/src/Sophia_Script_for_Windows_10_PowerShell_7/Manifest/Sophia.psd1 @@ -1,6 +1,6 @@ @{ RootModule = '..\Module\Sophia.psm1' - ModuleVersion = '5.20.0' + ModuleVersion = '5.20.1' GUID = 'aa0b47a7-1770-4b5d-8c9f-cc6c505bcc7a' Author = 'Dmitry "farag" Nefedov' Copyright = '(c) 2014—2025 farag, Inestic & lowl1f3. 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 fce32993a..05dcb197b 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.0 + 5.20.1 .DATE - 29.12.2024 + 19.01.2025 .AUTHOR farag, Inestic & lowl1f3 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 2dbc89b4d..658dbfb98 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.0 + 5.20.1 .DATE - 29.12.2024 + 19.01.2025 .COPYRIGHT (c) 2014—2025 farag, Inestic & lowl1f3 @@ -28,6 +28,9 @@ .EXAMPLE Download and expand the latest Sophia Script version archive (without running) according which Windows and PowerShell versions it is run on iwr script.sophia.team -useb | iex + .EXAMPLE The command will download and expand the latest Sophia Script archive (without running) from the last commit available according which Windows and PowerShell versions it is run on + iwr sl.sophia.team -useb | iex + .NOTES Supported Windows 10 versions Version: 22H2 @@ -74,7 +77,7 @@ param Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.20.0 (PowerShell 7) | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.20.1 (PowerShell 7) | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" # Checking whether all files were expanded before running $ScriptFiles = @( diff --git a/src/Sophia_Script_for_Windows_11/Functions.ps1 b/src/Sophia_Script_for_Windows_11/Functions.ps1 index 9c0fdc237..97aaee587 100644 --- a/src/Sophia_Script_for_Windows_11/Functions.ps1 +++ b/src/Sophia_Script_for_Windows_11/Functions.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS The TAB completion for functions and their arguments - Version: 6.8.0 - Date: 29.12.2024 + Version: 6.8.1 + Date: 19.01.2025 Copyright (c) 2014—2025 farag, Inestic & lowl1f3 @@ -49,7 +49,7 @@ function Sophia Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.8.0 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.8.1 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" Remove-Module -Name Sophia -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force diff --git a/src/Sophia_Script_for_Windows_11/Manifest/Sophia.psd1 b/src/Sophia_Script_for_Windows_11/Manifest/Sophia.psd1 index 0f7b60137..220fc30f7 100644 --- a/src/Sophia_Script_for_Windows_11/Manifest/Sophia.psd1 +++ b/src/Sophia_Script_for_Windows_11/Manifest/Sophia.psd1 @@ -1,6 +1,6 @@ @{ RootModule = '..\Module\Sophia.psm1' - ModuleVersion = '6.8.0' + ModuleVersion = '6.8.1' GUID = '109cc881-c42b-45af-a74a-550781989d6a' Author = 'Dmitry "farag" Nefedov' Copyright = '(c) 2014—2025 farag, Inestic & lowl1f3. 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 6c2ef84ce..fc88b5304 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.0 + 6.8.1 .DATE - 29.12.2024 + 19.01.2025 .AUTHOR farag, Inestic & lowl1f3 diff --git a/src/Sophia_Script_for_Windows_11/Sophia.ps1 b/src/Sophia_Script_for_Windows_11/Sophia.ps1 index f9b8a48e9..8577b8934 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.0 + 6.8.1 .DATE - 29.12.2024 + 19.01.2025 .COPYRIGHT (c) 2014—2025 farag, Inestic & lowl1f3 @@ -73,7 +73,7 @@ param Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.8.0 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.8.1 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 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/Functions.ps1 b/src/Sophia_Script_for_Windows_11_LTSC_2024/Functions.ps1 index c97959360..53e78fab1 100644 --- a/src/Sophia_Script_for_Windows_11_LTSC_2024/Functions.ps1 +++ b/src/Sophia_Script_for_Windows_11_LTSC_2024/Functions.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS The TAB completion for functions and their arguments - Version: 6.8.0 - Date: 29.12.2024 + Version: 6.8.1 + Date: 19.01.2025 Copyright (c) 2014—2025 farag, Inestic & lowl1f3 @@ -49,7 +49,7 @@ function Sophia Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.8.0 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.8.1 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" Remove-Module -Name Sophia -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force diff --git a/src/Sophia_Script_for_Windows_11_LTSC_2024/Manifest/Sophia.psd1 b/src/Sophia_Script_for_Windows_11_LTSC_2024/Manifest/Sophia.psd1 index 0f7b60137..220fc30f7 100644 --- a/src/Sophia_Script_for_Windows_11_LTSC_2024/Manifest/Sophia.psd1 +++ b/src/Sophia_Script_for_Windows_11_LTSC_2024/Manifest/Sophia.psd1 @@ -1,6 +1,6 @@ @{ RootModule = '..\Module\Sophia.psm1' - ModuleVersion = '6.8.0' + ModuleVersion = '6.8.1' GUID = '109cc881-c42b-45af-a74a-550781989d6a' Author = 'Dmitry "farag" Nefedov' Copyright = '(c) 2014—2025 farag, Inestic & lowl1f3. 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 12dc8293b..46c6a016c 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.0 + 6.8.1 .DATE - 29.12.2024 + 19.01.2025 .AUTHOR farag, Inestic & lowl1f3 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 3df3b78f3..5cac4d4d6 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.0 + 6.8.1 .DATE - 29.12.2024 + 19.01.2025 .COPYRIGHT (c) 2014—2025 farag, Inestic & lowl1f3 @@ -28,6 +28,9 @@ .EXAMPLE Download and expand the latest Sophia Script version archive (without running) according which Windows and PowerShell versions it is run on iwr script.sophia.team -useb | iex + .EXAMPLE The command will download and expand the latest Sophia Script archive (without running) from the last commit available according which Windows and PowerShell versions it is run on + iwr sl.sophia.team -useb | iex + .NOTES Supported Windows 11 Enterprise LTSC 2024 @@ -71,7 +74,7 @@ param Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 LTSC 2024 v6.8.0 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 LTSC 2024 v6.8.1 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 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/Functions.ps1 b/src/Sophia_Script_for_Windows_11_PowerShell_7/Functions.ps1 index f1c44ce63..da1e157f5 100644 --- a/src/Sophia_Script_for_Windows_11_PowerShell_7/Functions.ps1 +++ b/src/Sophia_Script_for_Windows_11_PowerShell_7/Functions.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS The TAB completion for functions and their arguments - Version: 6.8.0 - Date: 29.12.2024 + Version: 6.8.1 + Date: 19.01.2025 Copyright (c) 2014—2025 farag, Inestic & lowl1f3 @@ -49,7 +49,7 @@ function Sophia Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.8.0 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.8.1 | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" Remove-Module -Name Sophia -Force -ErrorAction Ignore Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force diff --git a/src/Sophia_Script_for_Windows_11_PowerShell_7/Manifest/Sophia.psd1 b/src/Sophia_Script_for_Windows_11_PowerShell_7/Manifest/Sophia.psd1 index e35037746..961e980a2 100644 --- a/src/Sophia_Script_for_Windows_11_PowerShell_7/Manifest/Sophia.psd1 +++ b/src/Sophia_Script_for_Windows_11_PowerShell_7/Manifest/Sophia.psd1 @@ -1,6 +1,6 @@ @{ RootModule = '..\Module\Sophia.psm1' - ModuleVersion = '6.8.0' + ModuleVersion = '6.8.1' GUID = '109cc881-c42b-45af-a74a-550781989d6a' Author = 'Dmitry "farag" Nefedov' Copyright = '(c) 2014—2025 farag, Inestic & lowl1f3. 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 ef810c82b..7c22a55d0 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.0 + 6.8.1 .DATE - 29.12.2024 + 19.01.2025 .AUTHOR farag, Inestic & lowl1f3 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 f846ef58d..bd47bfb52 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.0 + 6.8.1 .DATE - 29.12.2024 + 19.01.2025 .COPYRIGHT (c) 2014—2025 farag, Inestic & lowl1f3 @@ -28,6 +28,9 @@ .EXAMPLE Download and expand the latest Sophia Script version archive (without running) according which Windows and PowerShell versions it is run on iwr script.sophia.team -useb | iex + .EXAMPLE The command will download and expand the latest Sophia Script archive (without running) from the last commit available according which Windows and PowerShell versions it is run on + iwr sl.sophia.team -useb | iex + .NOTES Supported Windows 11 versions Version: 23H2+ @@ -73,7 +76,7 @@ param Clear-Host -$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.8.0 (PowerShell 7) | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" +$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 11 v6.8.1 (PowerShell 7) | Made with $([System.Char]::ConvertFromUtf32(0x1F497)) of Windows | $([System.Char]0x00A9) farag, Inestic & lowl1f3, 2014$([System.Char]0x2013)2025" # Checking whether all files were expanded before running $ScriptFiles = @( diff --git a/supported_windows_builds.json b/supported_windows_builds.json index 9f39e7d2f..b4e1db798 100644 --- a/supported_windows_builds.json +++ b/supported_windows_builds.json @@ -1,12 +1,12 @@ { "Windows_10_URL": "https://support.microsoft.com/en-us/topic/windows-10-update-history-8127c2c6-6edf-4fdf-8b9f-0f7be1ef3562", - "Windows_10": "5247", + "Windows_10": "5371", "Windows_10_LTSC_2019_URL": "https://support.microsoft.com/en-us/topic/windows-10-and-windows-server-2019-update-history-725fc2e1-4443-6831-a5ca-51ff5cbcb059", - "Windows_10_LTSC_2019": "6659", + "Windows_10_LTSC_2019": "6775", "Windows_10_LTSC_2021_URL": "https://support.microsoft.com/en-us/topic/windows-10-update-history-857b8ccb-71e4-49e5-b3f6-7073197d98fb", - "Windows_10_LTSC_2021": "5247", + "Windows_10_LTSC_2021": "5371", "Windows_11_URL": "https://support.microsoft.com/en-us/topic/windows-11-version-23h2-update-history-59875222-b990-4bd9-932f-91a5954de434", - "Windows_11": "4602", + "Windows_11": "4751", "Windows_11_LTSC_2024_URL": "https://support.microsoft.com/en-us/topic/windows-11-version-24h2-update-history-0929c747-1815-4543-8461-0160d16f15e5", - "Windows_11_LTSC_2024": "2605" + "Windows_11_LTSC_2024": "2894" }