v5.10.2 23.04.2021 Windows 10 2004 (20H1)/20H2 (2009) | LTSC Diff from v5.10.1 5.10.1...5.10.2 Updated the descriptions; PowerShell 7 version; CsWinRT updated up to 1.2.5. Minor changes. The development focus shifted to SophiApp A Refresher CHANGELOG
re-released the latest version: accidentally placed double quotes instead of six double quotes. LOL https://github.com/farag2/Windows-10-Sophia-Script/commit/33cfb7654bdd7d8f7fc16fd003ca2c2419452dc8
There are two buttons Default (to select all default options) and a Opposite button (to select the opposite option at the right) but there's a third option to ignore either two options. Tell David to add a button to select all at once without doing it manually. In my case I just wanted to uninstall OneDrive so I had to select it but none of the others.
Hopefully, this will be the lastest release until the Sun Valley will see the light in Autumn. I've finally found a new job in an international company (after 1,5 years of searching and 25 interviews, OMG). Everything is new for me here. Thats why I decided to release it before going to the new work place. oz-zo is still coding SophiApp. Everything goes according to plan. Not perfect, but its OK. https://github.com/Sophia-Community/SophiApp
02.06.2021 v5.10.6 Diff from 5.10.5...5.10.6 Added functions NewsInterests -Hide & NewsInterests -Show to configure "News and Interests" on the taskbar; #184 closed. Updated the CABInstallContext -Add function; If the .cab file extension type associated to open with a third party app by default, the "Install" context menu item won't be displayed, so the default association for the .cab file type will be restored forcedly. Updated the French translation; #181 closed. Thanks @couleurm. Minor changes. The development focus shifted to SophiApp Sophia Script Wrapper was rewritten from the scratch; Redefined UI and UX; Many bugs fixed. Supports LTSC and the current supported Windows 10 editions; Dark and light themes; Just import the Sophia.ps1 file and all functions will be set up automatically.
hi Farag I noticed that you may have swapped two numbers in the Sophia.psm1 module and that here "Light" is set to 1 should be 0 and "Dark" is set to 0 and should be 1 you can see this on the clock when the script is finished, then the display is black
Spoiler: Code function WindowsColorScheme { param ( [Parameter( Mandatory = $true, ParameterSetName = "Light" )] [switch] $Light, [Parameter( Mandatory = $true, ParameterSetName = "Dark" )] [switch] $Dark ) switch ($PSCmdlet.ParameterSetName) { "Light" { New-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name SystemUsesLightTheme -PropertyType DWord -Value 0 -Force } "Dark" { New-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name SystemUsesLightTheme -PropertyType DWord -Value 1 -Force } } } this is my setting you set light to 1 and dark to 0 i saw this if i used the light colorscheme
I haven't the same. Look: https://github.com/farag2/Windows-10-Sophia-Script/blob/73de164d1936868daeb5bbe60e19ff6eadfeb218/Sophia/PowerShell 5.1/Sophia.psm1#L2823 Light is 1. Dark is 0.