Skip to content

Commit

Permalink
Updated to 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
hellzerg committed Dec 11, 2017
1 parent a062622 commit e138802
Show file tree
Hide file tree
Showing 7 changed files with 132 additions and 100 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to this project will be documented in this file.

## [3.6] - 2017-12-11
- Added Select All in UWP uninstaller
- Improved Disable Telemetry Tasks
- Changes to Disable Automatic Updates

## [3.5] - 2017-11-24
- Added back UWP app uninstaller
- Disable Windows Defender also removes tray icon now
Expand Down
209 changes: 113 additions & 96 deletions Optimizer/MainForm.Designer.cs

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions Optimizer/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1440,5 +1440,13 @@ private void button74_Click(object sender, EventArgs e)
{
UninstallModernApps();
}

private void chkSelectAllModernApps_CheckedChanged(object sender, EventArgs e)
{
for (int i = 0; i < listModernApps.Items.Count; i++)
{
listModernApps.SetItemChecked(i, chkSelectAllModernApps.Checked);
}
}
}
}
2 changes: 1 addition & 1 deletion Optimizer/Optimize.cs
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ internal static void DisableXboxLive()
internal static void DisableAutomaticUpdates()
{
Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU", "AUOptions", "2", RegistryValueKind.DWord);
Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU", "NoAutoUpdate", "1", RegistryValueKind.DWord);
Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU", "NoAutoRebootWithLoggedOnUsers", "1", RegistryValueKind.DWord);
Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config", "DODownloadMode", "0", RegistryValueKind.DWord);
}

Expand Down
2 changes: 1 addition & 1 deletion Optimizer/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ static class Program

// Enter current version here
internal readonly static float Major = 3;
internal readonly static float Minor = 5;
internal readonly static float Minor = 6;

internal static string GetCurrentVersion()
{
Expand Down
2 changes: 2 additions & 0 deletions Optimizer/Resources/DisableTelemetryTasks.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
schtasks /end /tn "\Microsoft\Windows\Customer Experience Improvement Program\Consolidator"
schtasks /change /tn "\Microsoft\Windows\Customer Experience Improvement Program\Consolidator" /disable
schtasks /end /tn "\Microsoft\Windows\Customer Experience Improvement Program\BthSQM"
schtasks /change /tn "\Microsoft\Windows\Customer Experience Improvement Program\BthSQM" /disable
schtasks /end /tn "\Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask"
schtasks /change /tn "\Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask" /disable
schtasks /end /tn "\Microsoft\Windows\Customer Experience Improvement Program\UsbCeip"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ https://github.com/hellzerg/optimizer/releases

## Details: ##

* Latest version: 3.5
* Released: November 24, 2017
* Latest version: 3.6
* Released: December 11, 2017

0 comments on commit e138802

Please sign in to comment.