deadmoon 3 anni fa
parent
commit
8e5e2468ab

+ 34 - 0
FAQ.md

@@ -0,0 +1,34 @@
+## Frequently Asked Questions for using Optimizer safely ##
+
+- Q: Do I need to restart my computer for the app to take effect?
+- A: Absolutely, yes.
+
+- Q: Do I need to keep the app running in the background?
+- A: No. You just need to enable your preferred options and restart.
+
+- Q: My Desktop files and documents got suddenly deleted! Why?
+- A: You shouldn't **Uninstall OneDrive** on a Windows 10/11 with Microsoft-synced account setup.
+It's strongly advisable to **Uninstall OneDrive** only on a fresh Windows installation, before
+setting up Microsoft account.
+
+- Q: How can I disable **Windows Defender** on Windows 10/11?
+- A: The **Disable Windows Defender** toggle is working only on Windows 7/8/8.1.
+In order to effectively disable **Windows Defender** on Windows 10/11 you need to restart in safe-mode.
+You may easily do this just by executing the app with ```/restart=disabledefender```. This command
+will automatically restart in safe-mode, disable **Windows Defender** and finally restart normally again.
+You may anytime enable **Windows Defender** again with ```/restart=enabledefender```.
+
+- Q: Should I disable **System Restore**?
+- A: It's up to you, but keep in mind that by disabling it your current backups will get deleted.
+
+- Q: Should I disable **Print Service** or **Fax Service**?
+- A: In case you are actively using printer and/or fax devices, you shouldn't disable them.
+
+- Q: My digital pen is not working, why?
+- A: Reset **Disable Windows Ink**, restart your computer and your pen should be functional again.
+
+- Q: My clipboard history stopped working, why?
+- A: Reset **Disable Cloud Clipboard** and it's should be fine.
+
+- Q: Should I disable **Sensor Services**?
+- A: If your device is a tablet, has various sensors (proximity, auto-brightness, etc) or a touch-screen, you shouldn't disable this.

+ 0 - 1
Optimizer/CleanHelper.cs

@@ -3,7 +3,6 @@ using System.Collections.Generic;
 using System.IO;
 using System.Linq;
 using System.Runtime.InteropServices;
-using System.Windows.Forms;
 
 namespace Optimizer
 {

+ 3 - 3
Optimizer/Controls/ToggleCard.cs

@@ -6,7 +6,7 @@ namespace Optimizer
     public partial class ToggleCard : UserControl
     {
         public event EventHandler ToggleClicked;
-        
+
         public ToggleCard()
         {
             InitializeComponent();
@@ -18,8 +18,8 @@ namespace Optimizer
         public string LabelText
         {
             get { return Label.Text; }
-            set 
-            { 
+            set
+            {
                 Label.Text = value;
                 this.AccessibleName = value;
             }

+ 1 - 1
Optimizer/Forms/MainForm.cs

@@ -1921,7 +1921,7 @@ namespace Optimizer
 
         private void Main_Load(object sender, EventArgs e)
         {
-            
+
         }
 
         private void GetDesktopItems()

+ 1 - 1
Optimizer/Optimize.cs

@@ -952,7 +952,7 @@ namespace Optimizer
             Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\DeviceAccess\Global\LooselyCoupled", "Value", "Deny", RegistryValueKind.String);
 
             // Feedback & diagnostics
-            Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection", "MaxTelemetryAllowed", "1", RegistryValueKind.DWord);
+            Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection", "MaxTelemetryAllowed", "0", RegistryValueKind.DWord);
             Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System", "UploadUserActivities", "0", RegistryValueKind.DWord);
             Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Siuf\Rules", "PeriodInNanoSeconds", "0", RegistryValueKind.DWord);
             Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Siuf\Rules", "NumberOfSIUFInPeriod", "0", RegistryValueKind.DWord);

+ 1 - 1
Optimizer/Options.cs

@@ -241,7 +241,7 @@ namespace Optimizer
                 CurrentOptions.DisableCloudClipboard = false;
                 CurrentOptions.EnableLongPaths = false;
                 CurrentOptions.RemoveCastToDevice = false;
-     
+
                 CurrentOptions.DisableVisualStudioTelemetry = false;
                 CurrentOptions.DisableFirefoxTemeletry = false;
                 CurrentOptions.DisableChromeTelemetry = false;