瀏覽代碼

README.md updates

deadmoon 5 年之前
父節點
當前提交
cd0c4a3bd8
共有 6 個文件被更改,包括 84 次插入0 次删除
  1. 4 0
      CHANGELOG.md
  2. 12 0
      CONFS.md
  3. 4 0
      README.md
  4. 25 0
      conf/w10.conf
  5. 19 0
      conf/w7.conf
  6. 20 0
      conf/w8.conf

+ 4 - 0
CHANGELOG.md

@@ -2,6 +2,10 @@
 
 All notable changes to this project will be documented in this file.
 
+## [4.9] - 2019-10-23
+- Added: Run Optimizer silently, using configuration file
+- Added: Disable Windows Store automatic updates (Disable Silent App Install)
+
 ## [4.8] - 2019-05-12
 - Added: Disable Sticky Keys (for current user)
 - Added: Enable Long Paths (removes 260 character path limit, for Windows 10)

+ 12 - 0
CONFS.md

@@ -0,0 +1,12 @@
+You can execute Optimizer silently, applying tweaks according to a configuration file.
+Download the configuration file based on your Windows version and edit it accordingly.
+Then, execute it like this: optimizer.exe /w10.conf
+
+## For Windows 7 ##
+https://github.com/hellzerg/optimizer/blob/master/conf/w7.conf
+
+## For Windows 8/8.1 ##
+https://github.com/hellzerg/optimizer/blob/master/conf/w8.conf
+
+## For Windows 10 ##
+https://github.com/hellzerg/optimizer/blob/master/conf/w10.conf

+ 4 - 0
README.md

@@ -23,6 +23,7 @@ Depending on your version of Windows, Optimizer will also allow you to perform s
 * Edit your hosts file
 * Add items in desktop right-click menu
 * Define custom commands for run dialog
+* Supports silent run using configuration file
 
 ## Downloads: ##
 https://github.com/hellzerg/optimizer/releases
@@ -30,6 +31,9 @@ https://github.com/hellzerg/optimizer/releases
 ## Screenshots: ##
 https://github.com/hellzerg/optimizer/blob/master/IMAGES.md
 
+## Silent configuration files ##
+https://github.com/hellzerg/optimizer/blob/master/CONFS.md
+
 ## Changelog: ##
 https://github.com/hellzerg/optimizer/blob/master/CHANGELOG.md
 

+ 25 - 0
conf/w10.conf

@@ -0,0 +1,25 @@
+{
+  "WindowsVersion": 10,
+  "DisableCloudClipboard": false,
+  "EnableLegacyVolumeSlider": false,
+  "EnableTaskbarColor": false,
+  "DisableQuickAccessHistory": false,
+  "DisableStartMenuAds": false,
+  "EnableDarkTheme": false,
+  "UninstallOneDrive": false,
+  "DisableMyPeople": false,
+  "DisableAutomaticUpdates": false,
+  "ExcludeDrivers": false,
+  "DisableTelemetryServices": false,
+  "DisablePrivacyOptions": false,
+  "DisableSilentAppInstall": false,
+  "DisableCortana": false,
+  "DisableSensorServices": false,
+  "DisableWindowsInk": false,
+  "DisableSpellingTyping": false,
+  "DisableXboxLive": false,
+  "DisableGameBar": false,
+  "DisableInsiderService": false,
+  "DisableFeatureUpdates": false,
+  "EnableLongPaths": false
+}

+ 19 - 0
conf/w7.conf

@@ -0,0 +1,19 @@
+{
+  "WindowsVersion": 7,
+  "EnablePerformanceTweaks": false,
+  "DisableNetworkThrottling": false,
+  "DisableWindowsDefender": false,
+  "DisableSystemRestore": false,
+  "DisablePrintService": false,
+  "DisableMediaPlayerSharing": false,
+  "BlockSkypeAds": false,
+  "DisableErrorReporting": false,
+  "DisableHomeGroup": false,
+  "DisableSuperfetch": false,
+  "DisableTelemetryTasks": false,
+  "DisableOffice2016Telemetry": false,
+  "DisableCompatibilityAssistant": false,
+  "DisableFaxService": false,
+  "DisableSmartScreen": false,
+  "DisableStickyKeys": false
+}

+ 20 - 0
conf/w8.conf

@@ -0,0 +1,20 @@
+{
+  "WindowsVersion": 8,
+  "EnablePerformanceTweaks": false,
+  "DisableNetworkThrottling": false,
+  "DisableWindowsDefender": false,
+  "DisableSystemRestore": false,
+  "DisablePrintService": false,
+  "DisableMediaPlayerSharing": false,
+  "BlockSkypeAds": false,
+  "DisableErrorReporting": false,
+  "DisableHomeGroup": false,
+  "DisableSuperfetch": false,
+  "DisableTelemetryTasks": false,
+  "DisableOffice2016Telemetry": false,
+  "DisableCompatibilityAssistant": false,
+  "DisableFaxService": false,
+  "DisableSmartScreen": false,
+  "DisableStickyKeys": false,
+  "DisableOneDrive": false
+}