From 4483fbb1616857c3530dc91a4924383be3b023b4 Mon Sep 17 00:00:00 2001 From: Disassembler Date: Thu, 12 Nov 2020 19:46:44 +0100 Subject: [PATCH 1/3] Add 20H2 to build overview --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 5bd1babe..1726f048 100644 --- a/README.md +++ b/README.md @@ -85,6 +85,7 @@ The script supports command line options and parameters which can help you custo | 1903 | 19H1 | May 2019 Update | 18362 | | 1909 | 19H2 | November 2019 Update | 18363 | | 2004 | 20H1 | May 2020 Update | 19041 | +| 20H2 | 20H2 | October 2020 Update | 19042 |   From 96739c6b03ca68a501538d5525e8931d1db0addd Mon Sep 17 00:00:00 2001 From: Disassembler Date: Sat, 21 Nov 2020 18:06:48 +0100 Subject: [PATCH 2/3] Update comment for DisableActivityHistory --- Win10.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Win10.psm1 b/Win10.psm1 index f6d71ecb..c14bd232 100644 --- a/Win10.psm1 +++ b/Win10.psm1 @@ -252,7 +252,7 @@ Function EnableAppSuggestions { } # Disable Activity History feed in Task View -# Note: The checkbox "Let Windows collect my activities from this PC" remains checked even when the function is disabled +# Note: The checkbox "Store my activity history on this device" ("Let Windows collect my activities from this PC" on older versions) remains checked even when the function is disabled Function DisableActivityHistory { Write-Output "Disabling Activity History..." Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\System" -Name "EnableActivityFeed" -Type DWord -Value 0 From ceca720bc74fede48b6bd7301afab28801ccc016 Mon Sep 17 00:00:00 2001 From: Disassembler Date: Fri, 28 May 2021 10:14:15 +0200 Subject: [PATCH 3/3] Add archival notice --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 1726f048..ca91190e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,15 @@ +## The project is archived + +This project has been archived because I no longer use Windows. I grew tired with the system being unable to keep itself configured in the desired state, group policies randomly stopping working for hundreds of managed workstations at once, advertisements, unwanted tips and content popping up on various places throughout the user interface, and incompetent support even for enterprise products. Ultimately I have migrated virtually all my servers, workstations and laptops to linux. Even though there are areas where the open source products are still lacking, the transparency, configurability and reliability greatly outweighs the drawbacks for me. + +I also lost faith in humanity throughout the years I was actively maintaining the project. The influx of pings, bumps, repeating questions already answered in FAQ, and various other unreasonable demands without any givebacks was just astounding. Please do not contact me regarding this project as I have no desire to invest any more time into it. As per MIT license, you're still free to use, modify, and distribute the code further, as long as you keep the license and copyright notice. + +  + +--- + +  + ## Contents - [Description](#description) - [Usage](#usage)