mirror of
https://github.com/theitaliandeveloper/Perfect11.git
synced 2025-12-06 09:02:03 +00:00
Making big changes
This commit is contained in:
48
Perfect11.TweaksInterface/Perfect11.TweaksInterface.csproj
Normal file
48
Perfect11.TweaksInterface/Perfect11.TweaksInterface.csproj
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{B3F8761A-B4B2-4378-9FE8-06BBFC39FCE6}</ProjectGuid>
|
||||||
|
<OutputType>Library</OutputType>
|
||||||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
|
<RootNamespace>Perfect11.TweaksInterface</RootNamespace>
|
||||||
|
<AssemblyName>Perfect11.TweaksInterface</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<Deterministic>true</Deterministic>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<DebugType>none</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
<Reference Include="Microsoft.CSharp" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Net.Http" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="TweaksInterface.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
</Project>
|
||||||
33
Perfect11.TweaksInterface/Properties/AssemblyInfo.cs
Normal file
33
Perfect11.TweaksInterface/Properties/AssemblyInfo.cs
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
using System.Reflection;
|
||||||
|
using System.Runtime.CompilerServices;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
|
// General Information about an assembly is controlled through the following
|
||||||
|
// set of attributes. Change these attribute values to modify the information
|
||||||
|
// associated with an assembly.
|
||||||
|
[assembly: AssemblyTitle("Perfect11 Tweaks Interface")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
[assembly: AssemblyCompany("Vichingo455")]
|
||||||
|
[assembly: AssemblyProduct("Perfect11")]
|
||||||
|
[assembly: AssemblyCopyright("Copyright © 2025 Vichingo455")]
|
||||||
|
[assembly: AssemblyTrademark("")]
|
||||||
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
|
// Setting ComVisible to false makes the types in this assembly not visible
|
||||||
|
// to COM components. If you need to access a type in this assembly from
|
||||||
|
// COM, set the ComVisible attribute to true on that type.
|
||||||
|
[assembly: ComVisible(false)]
|
||||||
|
|
||||||
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
|
[assembly: Guid("b3f8761a-b4b2-4378-9fe8-06bbfc39fce6")]
|
||||||
|
|
||||||
|
// Version information for an assembly consists of the following four values:
|
||||||
|
//
|
||||||
|
// Major Version
|
||||||
|
// Minor Version
|
||||||
|
// Build Number
|
||||||
|
// Revision
|
||||||
|
//
|
||||||
|
[assembly: AssemblyVersion("1.0.0.0")]
|
||||||
|
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||||
20
Perfect11.TweaksInterface/TweaksInterface.cs
Normal file
20
Perfect11.TweaksInterface/TweaksInterface.cs
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
namespace Perfect11.TweaksInterface
|
||||||
|
{
|
||||||
|
public interface IPlugin
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// The display name of the plugin.
|
||||||
|
/// </summary>
|
||||||
|
string Name { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A short description of what the plugin does.
|
||||||
|
/// </summary>
|
||||||
|
string Description { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Executes the plugin’s main logic.
|
||||||
|
/// </summary>
|
||||||
|
void Execute();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -5,6 +5,10 @@ VisualStudioVersion = 17.14.36429.23
|
|||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Perfect11", "Perfect11\Perfect11.csproj", "{B77C3F94-29F7-40D8-BF81-969C1BBAD7A9}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Perfect11", "Perfect11\Perfect11.csproj", "{B77C3F94-29F7-40D8-BF81-969C1BBAD7A9}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Perfect11.TweaksInterface", "Perfect11.TweaksInterface\Perfect11.TweaksInterface.csproj", "{B3F8761A-B4B2-4378-9FE8-06BBFC39FCE6}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Perfect11.Inbox.UninstallOneDrive", "tweaks\Perfect11.Inbox.UninstallOneDrive\Perfect11.Inbox.UninstallOneDrive.csproj", "{AD55727D-A52C-459D-A316-3459AA80050A}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
@@ -15,6 +19,14 @@ Global
|
|||||||
{B77C3F94-29F7-40D8-BF81-969C1BBAD7A9}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{B77C3F94-29F7-40D8-BF81-969C1BBAD7A9}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{B77C3F94-29F7-40D8-BF81-969C1BBAD7A9}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{B77C3F94-29F7-40D8-BF81-969C1BBAD7A9}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{B77C3F94-29F7-40D8-BF81-969C1BBAD7A9}.Release|Any CPU.Build.0 = Release|Any CPU
|
{B77C3F94-29F7-40D8-BF81-969C1BBAD7A9}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{B3F8761A-B4B2-4378-9FE8-06BBFC39FCE6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{B3F8761A-B4B2-4378-9FE8-06BBFC39FCE6}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{B3F8761A-B4B2-4378-9FE8-06BBFC39FCE6}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{B3F8761A-B4B2-4378-9FE8-06BBFC39FCE6}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{AD55727D-A52C-459D-A316-3459AA80050A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{AD55727D-A52C-459D-A316-3459AA80050A}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{AD55727D-A52C-459D-A316-3459AA80050A}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{AD55727D-A52C-459D-A316-3459AA80050A}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
|||||||
79
Perfect11/Form1.Designer.cs
generated
79
Perfect11/Form1.Designer.cs
generated
@@ -47,11 +47,16 @@
|
|||||||
this.removeButton = new ReaLTaiizor.Controls.PoisonButton();
|
this.removeButton = new ReaLTaiizor.Controls.PoisonButton();
|
||||||
this.addButton = new ReaLTaiizor.Controls.PoisonButton();
|
this.addButton = new ReaLTaiizor.Controls.PoisonButton();
|
||||||
this.LstUWP = new ReaLTaiizor.Controls.PoisonListView();
|
this.LstUWP = new ReaLTaiizor.Controls.PoisonListView();
|
||||||
|
this.tweaksPage = new ReaLTaiizor.Controls.PoisonTabPage();
|
||||||
|
this.tweaksList = new ReaLTaiizor.Controls.PoisonListView();
|
||||||
|
this.runTweaks = new ReaLTaiizor.Controls.PoisonButton();
|
||||||
|
this.editionLabel = new ReaLTaiizor.Controls.PoisonLabel();
|
||||||
this.theme.SuspendLayout();
|
this.theme.SuspendLayout();
|
||||||
this.pages.SuspendLayout();
|
this.pages.SuspendLayout();
|
||||||
this.welcomePage.SuspendLayout();
|
this.welcomePage.SuspendLayout();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
||||||
this.debloatPage.SuspendLayout();
|
this.debloatPage.SuspendLayout();
|
||||||
|
this.tweaksPage.SuspendLayout();
|
||||||
this.SuspendLayout();
|
this.SuspendLayout();
|
||||||
//
|
//
|
||||||
// theme
|
// theme
|
||||||
@@ -88,10 +93,11 @@
|
|||||||
//
|
//
|
||||||
this.pages.Controls.Add(this.welcomePage);
|
this.pages.Controls.Add(this.welcomePage);
|
||||||
this.pages.Controls.Add(this.debloatPage);
|
this.pages.Controls.Add(this.debloatPage);
|
||||||
|
this.pages.Controls.Add(this.tweaksPage);
|
||||||
this.pages.Dock = System.Windows.Forms.DockStyle.Fill;
|
this.pages.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||||
this.pages.Location = new System.Drawing.Point(3, 28);
|
this.pages.Location = new System.Drawing.Point(3, 28);
|
||||||
this.pages.Name = "pages";
|
this.pages.Name = "pages";
|
||||||
this.pages.SelectedIndex = 1;
|
this.pages.SelectedIndex = 2;
|
||||||
this.pages.Size = new System.Drawing.Size(1323, 732);
|
this.pages.Size = new System.Drawing.Size(1323, 732);
|
||||||
this.pages.TabIndex = 1;
|
this.pages.TabIndex = 1;
|
||||||
this.pages.UseSelectable = true;
|
this.pages.UseSelectable = true;
|
||||||
@@ -100,12 +106,13 @@
|
|||||||
//
|
//
|
||||||
this.welcomePage.BackgroundImage = global::Perfect11.Properties.Resources.win11wallpaperdark;
|
this.welcomePage.BackgroundImage = global::Perfect11.Properties.Resources.win11wallpaperdark;
|
||||||
this.welcomePage.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
this.welcomePage.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||||||
|
this.welcomePage.Controls.Add(this.editionLabel);
|
||||||
this.welcomePage.Controls.Add(this.poisonLabel2);
|
this.welcomePage.Controls.Add(this.poisonLabel2);
|
||||||
this.welcomePage.Controls.Add(this.pictureBox1);
|
this.welcomePage.Controls.Add(this.pictureBox1);
|
||||||
this.welcomePage.Controls.Add(this.poisonLabel1);
|
this.welcomePage.Controls.Add(this.poisonLabel1);
|
||||||
this.welcomePage.HorizontalScrollbarBarColor = true;
|
this.welcomePage.HorizontalScrollbarBarColor = true;
|
||||||
this.welcomePage.HorizontalScrollbarHighlightOnWheel = false;
|
this.welcomePage.HorizontalScrollbarHighlightOnWheel = false;
|
||||||
this.welcomePage.HorizontalScrollbarSize = 8;
|
this.welcomePage.HorizontalScrollbarSize = 11;
|
||||||
this.welcomePage.Location = new System.Drawing.Point(4, 38);
|
this.welcomePage.Location = new System.Drawing.Point(4, 38);
|
||||||
this.welcomePage.Name = "welcomePage";
|
this.welcomePage.Name = "welcomePage";
|
||||||
this.welcomePage.Size = new System.Drawing.Size(1315, 690);
|
this.welcomePage.Size = new System.Drawing.Size(1315, 690);
|
||||||
@@ -113,7 +120,7 @@
|
|||||||
this.welcomePage.Text = "Welcome";
|
this.welcomePage.Text = "Welcome";
|
||||||
this.welcomePage.VerticalScrollbarBarColor = true;
|
this.welcomePage.VerticalScrollbarBarColor = true;
|
||||||
this.welcomePage.VerticalScrollbarHighlightOnWheel = false;
|
this.welcomePage.VerticalScrollbarHighlightOnWheel = false;
|
||||||
this.welcomePage.VerticalScrollbarSize = 27;
|
this.welcomePage.VerticalScrollbarSize = 45;
|
||||||
//
|
//
|
||||||
// poisonLabel2
|
// poisonLabel2
|
||||||
//
|
//
|
||||||
@@ -121,7 +128,7 @@
|
|||||||
this.poisonLabel2.BackColor = System.Drawing.Color.Transparent;
|
this.poisonLabel2.BackColor = System.Drawing.Color.Transparent;
|
||||||
this.poisonLabel2.Location = new System.Drawing.Point(416, 379);
|
this.poisonLabel2.Location = new System.Drawing.Point(416, 379);
|
||||||
this.poisonLabel2.Name = "poisonLabel2";
|
this.poisonLabel2.Name = "poisonLabel2";
|
||||||
this.poisonLabel2.Size = new System.Drawing.Size(492, 40);
|
this.poisonLabel2.Size = new System.Drawing.Size(465, 38);
|
||||||
this.poisonLabel2.TabIndex = 3;
|
this.poisonLabel2.TabIndex = 3;
|
||||||
this.poisonLabel2.Text = "Perfect11 is a tool made by a guy who loves to optimize Windows.\r\nIt allows to in" +
|
this.poisonLabel2.Text = "Perfect11 is a tool made by a guy who loves to optimize Windows.\r\nIt allows to in" +
|
||||||
"stalls apps, remove bloatware, configure services and even more.";
|
"stalls apps, remove bloatware, configure services and even more.";
|
||||||
@@ -163,7 +170,7 @@
|
|||||||
this.debloatPage.Controls.Add(this.LstUWP);
|
this.debloatPage.Controls.Add(this.LstUWP);
|
||||||
this.debloatPage.HorizontalScrollbarBarColor = true;
|
this.debloatPage.HorizontalScrollbarBarColor = true;
|
||||||
this.debloatPage.HorizontalScrollbarHighlightOnWheel = false;
|
this.debloatPage.HorizontalScrollbarHighlightOnWheel = false;
|
||||||
this.debloatPage.HorizontalScrollbarSize = 8;
|
this.debloatPage.HorizontalScrollbarSize = 11;
|
||||||
this.debloatPage.Location = new System.Drawing.Point(4, 38);
|
this.debloatPage.Location = new System.Drawing.Point(4, 38);
|
||||||
this.debloatPage.Name = "debloatPage";
|
this.debloatPage.Name = "debloatPage";
|
||||||
this.debloatPage.Size = new System.Drawing.Size(1315, 690);
|
this.debloatPage.Size = new System.Drawing.Size(1315, 690);
|
||||||
@@ -171,7 +178,7 @@
|
|||||||
this.debloatPage.Text = "Debloat";
|
this.debloatPage.Text = "Debloat";
|
||||||
this.debloatPage.VerticalScrollbarBarColor = true;
|
this.debloatPage.VerticalScrollbarBarColor = true;
|
||||||
this.debloatPage.VerticalScrollbarHighlightOnWheel = false;
|
this.debloatPage.VerticalScrollbarHighlightOnWheel = false;
|
||||||
this.debloatPage.VerticalScrollbarSize = 17;
|
this.debloatPage.VerticalScrollbarSize = 28;
|
||||||
//
|
//
|
||||||
// BtnRunUninstaller
|
// BtnRunUninstaller
|
||||||
//
|
//
|
||||||
@@ -209,7 +216,7 @@
|
|||||||
this.ChkShowUWPSystem.AutoSize = true;
|
this.ChkShowUWPSystem.AutoSize = true;
|
||||||
this.ChkShowUWPSystem.Location = new System.Drawing.Point(5, 650);
|
this.ChkShowUWPSystem.Location = new System.Drawing.Point(5, 650);
|
||||||
this.ChkShowUWPSystem.Name = "ChkShowUWPSystem";
|
this.ChkShowUWPSystem.Name = "ChkShowUWPSystem";
|
||||||
this.ChkShowUWPSystem.Size = new System.Drawing.Size(134, 17);
|
this.ChkShowUWPSystem.Size = new System.Drawing.Size(123, 15);
|
||||||
this.ChkShowUWPSystem.TabIndex = 8;
|
this.ChkShowUWPSystem.TabIndex = 8;
|
||||||
this.ChkShowUWPSystem.Text = "Show System Apps";
|
this.ChkShowUWPSystem.Text = "Show System Apps";
|
||||||
this.ChkShowUWPSystem.UseSelectable = true;
|
this.ChkShowUWPSystem.UseSelectable = true;
|
||||||
@@ -290,9 +297,60 @@
|
|||||||
this.LstUWP.UseSelectable = true;
|
this.LstUWP.UseSelectable = true;
|
||||||
this.LstUWP.View = System.Windows.Forms.View.Tile;
|
this.LstUWP.View = System.Windows.Forms.View.Tile;
|
||||||
//
|
//
|
||||||
|
// tweaksPage
|
||||||
|
//
|
||||||
|
this.tweaksPage.Controls.Add(this.runTweaks);
|
||||||
|
this.tweaksPage.Controls.Add(this.tweaksList);
|
||||||
|
this.tweaksPage.HorizontalScrollbarBarColor = true;
|
||||||
|
this.tweaksPage.HorizontalScrollbarHighlightOnWheel = false;
|
||||||
|
this.tweaksPage.HorizontalScrollbarSize = 10;
|
||||||
|
this.tweaksPage.Location = new System.Drawing.Point(4, 38);
|
||||||
|
this.tweaksPage.Name = "tweaksPage";
|
||||||
|
this.tweaksPage.Size = new System.Drawing.Size(1315, 690);
|
||||||
|
this.tweaksPage.TabIndex = 2;
|
||||||
|
this.tweaksPage.Text = "Tweak";
|
||||||
|
this.tweaksPage.VerticalScrollbarBarColor = true;
|
||||||
|
this.tweaksPage.VerticalScrollbarHighlightOnWheel = false;
|
||||||
|
this.tweaksPage.VerticalScrollbarSize = 10;
|
||||||
|
//
|
||||||
|
// tweaksList
|
||||||
|
//
|
||||||
|
this.tweaksList.Font = new System.Drawing.Font("Segoe UI", 12F);
|
||||||
|
this.tweaksList.FullRowSelect = true;
|
||||||
|
this.tweaksList.Location = new System.Drawing.Point(0, 0);
|
||||||
|
this.tweaksList.Name = "tweaksList";
|
||||||
|
this.tweaksList.OwnerDraw = true;
|
||||||
|
this.tweaksList.Size = new System.Drawing.Size(1310, 617);
|
||||||
|
this.tweaksList.Sorting = System.Windows.Forms.SortOrder.Ascending;
|
||||||
|
this.tweaksList.TabIndex = 2;
|
||||||
|
this.tweaksList.UseCompatibleStateImageBehavior = false;
|
||||||
|
this.tweaksList.UseSelectable = true;
|
||||||
|
this.tweaksList.Resize += new System.EventHandler(this.tweaksList_Resize);
|
||||||
|
//
|
||||||
|
// runTweaks
|
||||||
|
//
|
||||||
|
this.runTweaks.FontSize = ReaLTaiizor.Extension.Poison.PoisonButtonSize.Medium;
|
||||||
|
this.runTweaks.Location = new System.Drawing.Point(1189, 633);
|
||||||
|
this.runTweaks.Name = "runTweaks";
|
||||||
|
this.runTweaks.Size = new System.Drawing.Size(121, 54);
|
||||||
|
this.runTweaks.TabIndex = 3;
|
||||||
|
this.runTweaks.Text = "Run Tweaks";
|
||||||
|
this.runTweaks.UseSelectable = true;
|
||||||
|
this.runTweaks.Click += new System.EventHandler(this.runTweaks_Click);
|
||||||
|
//
|
||||||
|
// editionLabel
|
||||||
|
//
|
||||||
|
this.editionLabel.AutoSize = true;
|
||||||
|
this.editionLabel.BackColor = System.Drawing.Color.Transparent;
|
||||||
|
this.editionLabel.Location = new System.Drawing.Point(16, 656);
|
||||||
|
this.editionLabel.Name = "editionLabel";
|
||||||
|
this.editionLabel.Size = new System.Drawing.Size(175, 19);
|
||||||
|
this.editionLabel.TabIndex = 4;
|
||||||
|
this.editionLabel.Text = "Perfect11 Community Edition";
|
||||||
|
//
|
||||||
// Form1
|
// Form1
|
||||||
//
|
//
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
|
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 21F);
|
||||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||||
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(41)))), ((int)(((byte)(50)))));
|
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(41)))), ((int)(((byte)(50)))));
|
||||||
this.ClientSize = new System.Drawing.Size(1329, 788);
|
this.ClientSize = new System.Drawing.Size(1329, 788);
|
||||||
@@ -313,6 +371,7 @@
|
|||||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
||||||
this.debloatPage.ResumeLayout(false);
|
this.debloatPage.ResumeLayout(false);
|
||||||
this.debloatPage.PerformLayout();
|
this.debloatPage.PerformLayout();
|
||||||
|
this.tweaksPage.ResumeLayout(false);
|
||||||
this.ResumeLayout(false);
|
this.ResumeLayout(false);
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -337,6 +396,10 @@
|
|||||||
private ReaLTaiizor.Controls.PoisonLabel LblInstalledCount;
|
private ReaLTaiizor.Controls.PoisonLabel LblInstalledCount;
|
||||||
private ReaLTaiizor.Controls.PoisonLabel LblRemoveCount;
|
private ReaLTaiizor.Controls.PoisonLabel LblRemoveCount;
|
||||||
private ReaLTaiizor.Controls.PoisonButton BtnRunUninstaller;
|
private ReaLTaiizor.Controls.PoisonButton BtnRunUninstaller;
|
||||||
|
private ReaLTaiizor.Controls.PoisonTabPage tweaksPage;
|
||||||
|
private ReaLTaiizor.Controls.PoisonListView tweaksList;
|
||||||
|
private ReaLTaiizor.Controls.PoisonButton runTweaks;
|
||||||
|
private ReaLTaiizor.Controls.PoisonLabel editionLabel;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,15 +1,12 @@
|
|||||||
using Microsoft.VisualBasic.ApplicationServices;
|
using Perfect11.Library;
|
||||||
using Perfect11.Library;
|
|
||||||
using Perfect11.Properties;
|
using Perfect11.Properties;
|
||||||
|
using Perfect11.TweaksInterface;
|
||||||
using ReaLTaiizor.Enum.Poison;
|
using ReaLTaiizor.Enum.Poison;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel;
|
|
||||||
using System.Data;
|
using System.Data;
|
||||||
using System.Drawing;
|
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
|
|
||||||
@@ -18,12 +15,15 @@ namespace Perfect11
|
|||||||
public partial class Form1 : Form
|
public partial class Form1 : Form
|
||||||
{
|
{
|
||||||
private List<string> _listSystemApps = new List<string>();
|
private List<string> _listSystemApps = new List<string>();
|
||||||
|
private List<IPlugin> _tweaks = new List<IPlugin>();
|
||||||
|
private static string AppEdition = "Perfect11 Community Edition";
|
||||||
public Form1()
|
public Form1()
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
DarkMode(true);
|
InitializeDarkMode();
|
||||||
GetUWPSystem();
|
GetUWPSystem();
|
||||||
GetUWP();
|
GetUWP();
|
||||||
|
InitializeTweaks();
|
||||||
}
|
}
|
||||||
public void DarkMode(bool status)
|
public void DarkMode(bool status)
|
||||||
{
|
{
|
||||||
@@ -44,28 +44,47 @@ namespace Perfect11
|
|||||||
addButton.Theme = ThemeStyle.Dark;
|
addButton.Theme = ThemeStyle.Dark;
|
||||||
removeAllButton.Theme = ThemeStyle.Dark;
|
removeAllButton.Theme = ThemeStyle.Dark;
|
||||||
removeButton.Theme = ThemeStyle.Dark;
|
removeButton.Theme = ThemeStyle.Dark;
|
||||||
|
welcomePage.BackgroundImage = Resources.win11wallpaperdark;
|
||||||
|
tweaksPage.Theme = ThemeStyle.Dark;
|
||||||
|
tweaksList.Theme = ThemeStyle.Dark;
|
||||||
|
runTweaks.Theme = ThemeStyle.Dark;
|
||||||
|
editionLabel.Theme = ThemeStyle.Dark;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
pages.Theme = ThemeStyle.Light;
|
pages.Theme = ThemeStyle.Light;
|
||||||
welcomePage.Theme = ThemeStyle.Light;
|
welcomePage.Theme = ThemeStyle.Light;
|
||||||
debloatPage.Theme = ThemeStyle.Light;
|
debloatPage.Theme = ThemeStyle.Light;
|
||||||
|
poisonLabel1.Theme = ThemeStyle.Light;
|
||||||
|
poisonLabel2.Theme = ThemeStyle.Light;
|
||||||
|
LblInstalledCount.Theme = ThemeStyle.Light;
|
||||||
|
LblRemoveCount.Theme = ThemeStyle.Light;
|
||||||
|
LstUWP.Theme = ThemeStyle.Light;
|
||||||
|
LstUWPRemove.Theme = ThemeStyle.Light;
|
||||||
|
ChkShowUWPSystem.Theme = ThemeStyle.Light;
|
||||||
|
BtnRunUninstaller.Theme = ThemeStyle.Light;
|
||||||
|
addAllButton.Theme = ThemeStyle.Light;
|
||||||
|
addButton.Theme = ThemeStyle.Light;
|
||||||
|
removeAllButton.Theme = ThemeStyle.Light;
|
||||||
|
removeButton.Theme = ThemeStyle.Light;
|
||||||
|
welcomePage.BackgroundImage = Resources.win11wallpaperlight;
|
||||||
|
tweaksPage.Theme = ThemeStyle.Light;
|
||||||
|
tweaksList.Theme = ThemeStyle.Light;
|
||||||
|
runTweaks.Theme = ThemeStyle.Light;
|
||||||
|
editionLabel.Theme = ThemeStyle.Light;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private void Form1_Load(object sender, EventArgs e)
|
private void Form1_Load(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
|
pages.SelectedTab = welcomePage; // Always start from the first tab
|
||||||
|
editionLabel.Text = AppEdition;
|
||||||
|
theme.Text = AppEdition;
|
||||||
}
|
}
|
||||||
private void GetUWP()
|
private void GetUWP()
|
||||||
{
|
{
|
||||||
LstUWP.Items.Clear();
|
LstUWP.Items.Clear();
|
||||||
|
|
||||||
// Run PowerShell to get UWP app names
|
|
||||||
string output = PowerShell.Execute("Get-AppxPackage -allusers | Select-Object -ExpandProperty Name");
|
string output = PowerShell.Execute("Get-AppxPackage -allusers | Select-Object -ExpandProperty Name");
|
||||||
|
|
||||||
// Split output into lines
|
|
||||||
string[] lines = output.Split(new[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries);
|
string[] lines = output.Split(new[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries);
|
||||||
|
|
||||||
foreach (string line in lines)
|
foreach (string line in lines)
|
||||||
{
|
{
|
||||||
string current = line.Trim();
|
string current = line.Trim();
|
||||||
@@ -122,7 +141,7 @@ namespace Perfect11
|
|||||||
}
|
}
|
||||||
private void GetUWPSystem()
|
private void GetUWPSystem()
|
||||||
{
|
{
|
||||||
_listSystemApps.Clear(); // Optional: clear old entries
|
_listSystemApps.Clear();
|
||||||
|
|
||||||
using (StringReader reader = new StringReader(Resources.UWPSystemAppList))
|
using (StringReader reader = new StringReader(Resources.UWPSystemAppList))
|
||||||
{
|
{
|
||||||
@@ -139,19 +158,20 @@ namespace Perfect11
|
|||||||
string success = "Successfully removed:" + "\n";
|
string success = "Successfully removed:" + "\n";
|
||||||
string failed = "Failed to remove:" + "\n";
|
string failed = "Failed to remove:" + "\n";
|
||||||
|
|
||||||
foreach (var item in LstUWPRemove.Items)
|
foreach (ListViewItem item in LstUWPRemove.Items)
|
||||||
{
|
{
|
||||||
string appName = item.ToString();
|
string appName = item.Text;
|
||||||
|
|
||||||
// Build the command
|
|
||||||
string command = $"Get-AppxPackage -allusers -Name \"{appName}\" | Remove-AppxPackage -allusers";
|
string command = $"Get-AppxPackage -allusers -Name \"{appName}\" | Remove-AppxPackage -allusers";
|
||||||
|
string command2 = $"Get-AppxProvisionedPackage -online | Where PackageName -like *\"{appName}\"* | Remove-AppxProvisionedPackage -online";
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
string output2 = PowerShell.Execute(command2);
|
||||||
string output = PowerShell.Execute(command);
|
string output = PowerShell.Execute(command);
|
||||||
|
#if DEBUG
|
||||||
// Basic success/failure logic (you can enhance this)
|
MessageBox.Show(output2);
|
||||||
if (!string.IsNullOrWhiteSpace(output) && !output.ToLower().Contains("error"))
|
MessageBox.Show(output);
|
||||||
|
#endif
|
||||||
|
if (!output.ToLower().Contains("error") && !output2.ToLower().Contains("error"))
|
||||||
{
|
{
|
||||||
success += "\t" + appName + "\n";
|
success += "\t" + appName + "\n";
|
||||||
}
|
}
|
||||||
@@ -165,8 +185,6 @@ namespace Perfect11
|
|||||||
failed += $"\t{appName} ({ex.Message})\n";
|
failed += $"\t{appName} ({ex.Message})\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return status summary
|
|
||||||
return success + (failed != "Failed to remove:" + "\n" ? "\n" + failed : "");
|
return success + (failed != "Failed to remove:" + "\n" ? "\n" + failed : "");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -181,7 +199,7 @@ namespace Perfect11
|
|||||||
var itemsToMove = LstUWP.Items.Cast<ListViewItem>().ToList();
|
var itemsToMove = LstUWP.Items.Cast<ListViewItem>().ToList();
|
||||||
foreach (var item in itemsToMove)
|
foreach (var item in itemsToMove)
|
||||||
{
|
{
|
||||||
LstUWPRemove.Items.Add((ListViewItem)item.Clone()); // Clone to avoid reference issues
|
LstUWPRemove.Items.Add((ListViewItem)item.Clone());
|
||||||
}
|
}
|
||||||
LstUWP.Items.Clear();
|
LstUWP.Items.Clear();
|
||||||
RefreshUWP();
|
RefreshUWP();
|
||||||
@@ -202,7 +220,6 @@ namespace Perfect11
|
|||||||
{
|
{
|
||||||
if (LstUWPRemove.SelectedItems.Count > 0)
|
if (LstUWPRemove.SelectedItems.Count > 0)
|
||||||
{
|
{
|
||||||
// Create a temporary list to avoid modifying collection during iteration
|
|
||||||
List<ListViewItem> selectedItems = new List<ListViewItem>();
|
List<ListViewItem> selectedItems = new List<ListViewItem>();
|
||||||
|
|
||||||
foreach (ListViewItem selectedItem in LstUWPRemove.SelectedItems)
|
foreach (ListViewItem selectedItem in LstUWPRemove.SelectedItems)
|
||||||
@@ -223,21 +240,13 @@ namespace Perfect11
|
|||||||
|
|
||||||
private void removeAllButton_Click(object sender, EventArgs e)
|
private void removeAllButton_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
// Create a temporary list to hold items to move
|
|
||||||
List<ListViewItem> itemsToMove = new List<ListViewItem>();
|
List<ListViewItem> itemsToMove = new List<ListViewItem>();
|
||||||
|
|
||||||
foreach (ListViewItem item in LstUWPRemove.Items)
|
foreach (ListViewItem item in LstUWPRemove.Items)
|
||||||
{
|
{
|
||||||
// Clone the item to add to the other ListView
|
|
||||||
itemsToMove.Add((ListViewItem)item.Clone());
|
itemsToMove.Add((ListViewItem)item.Clone());
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add to destination ListView
|
|
||||||
LstUWP.Items.AddRange(itemsToMove.ToArray());
|
LstUWP.Items.AddRange(itemsToMove.ToArray());
|
||||||
|
|
||||||
// Clear source ListView
|
|
||||||
LstUWPRemove.Items.Clear();
|
LstUWPRemove.Items.Clear();
|
||||||
|
|
||||||
RefreshUWP();
|
RefreshUWP();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -247,13 +256,89 @@ namespace Perfect11
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
Enabled = false;
|
Enabled = false;
|
||||||
|
MessageBox.Show(RemoveUWP(),"Perfect11",MessageBoxButtons.OK,MessageBoxIcon.Information);
|
||||||
MessageBox.Show(RemoveUWP());
|
|
||||||
|
|
||||||
LstUWPRemove.Items.Clear();
|
LstUWPRemove.Items.Clear();
|
||||||
GetUWP();
|
GetUWP();
|
||||||
Enabled = true;
|
Enabled = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
private void InitializeTweaks()
|
||||||
|
{
|
||||||
|
if (!Directory.Exists("Tweaks"))
|
||||||
|
{
|
||||||
|
Directory.CreateDirectory("Tweaks");
|
||||||
|
}
|
||||||
|
if (File.Exists("Tweaks\\Perfect11.TweaksInterface.dll"))
|
||||||
|
{
|
||||||
|
File.Delete("Tweaks\\Perfect11.TweaksInterface.dll");
|
||||||
|
}
|
||||||
|
tweaksList.View = View.Details;
|
||||||
|
tweaksList.Columns.Add("Name", 150);
|
||||||
|
tweaksList.Columns.Add("Description", 300);
|
||||||
|
tweaksList.FullRowSelect = true;
|
||||||
|
int totalWidth = tweaksList.ClientSize.Width;
|
||||||
|
tweaksList.Columns[0].Width = (int)(totalWidth * 0.4);
|
||||||
|
tweaksList.Columns[1].Width = (int)(totalWidth * 0.6);
|
||||||
|
|
||||||
|
// Load plugins
|
||||||
|
_tweaks = Utilities.LoadTweaks("Tweaks");
|
||||||
|
|
||||||
|
// Populate ListView
|
||||||
|
foreach (var plugin in _tweaks)
|
||||||
|
{
|
||||||
|
var item = new ListViewItem(plugin.Name);
|
||||||
|
item.SubItems.Add(plugin.Description);
|
||||||
|
item.Tag = plugin; // store the plugin object for later
|
||||||
|
tweaksList.Items.Add(item);
|
||||||
|
}
|
||||||
|
if (tweaksList.Items.Count == 0) runTweaks.Enabled = false;
|
||||||
|
}
|
||||||
|
private void InitializeDarkMode()
|
||||||
|
{
|
||||||
|
if (Utilities.IsAppsDarkMode())
|
||||||
|
{
|
||||||
|
DarkMode(true);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
DarkMode(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async void runTweaks_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if (tweaksList.SelectedItems.Count == 0)
|
||||||
|
{
|
||||||
|
MessageBox.Show("Select one or more plugins to run.","Perfect11",MessageBoxButtons.OK,MessageBoxIcon.Information);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Enabled = false; // prevent multiple clicks
|
||||||
|
try
|
||||||
|
{
|
||||||
|
foreach (ListViewItem item in tweaksList.SelectedItems)
|
||||||
|
{
|
||||||
|
if (item.Tag is IPlugin plugin)
|
||||||
|
{
|
||||||
|
await Task.Run(() => plugin.Execute()); // run in background thread
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
MessageBox.Show($"Error running plugin: {ex.Message}", "Perfect11", MessageBoxButtons.OK,MessageBoxIcon.Error);
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
Enabled = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void tweaksList_Resize(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
int totalWidth = tweaksList.ClientSize.Width;
|
||||||
|
tweaksList.Columns[0].Width = (int)(totalWidth * 0.4);
|
||||||
|
tweaksList.Columns[1].Width = (int)(totalWidth * 0.6);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,11 +1,4 @@
|
|||||||
using Microsoft.VisualBasic.ApplicationServices;
|
using System.Diagnostics;
|
||||||
using Microsoft.VisualBasic.Logging;
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Diagnostics;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Perfect11.Library
|
namespace Perfect11.Library
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
using System;
|
using Microsoft.Win32;
|
||||||
|
using Perfect11.TweaksInterface;
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Reflection;
|
||||||
using System.Threading.Tasks;
|
|
||||||
using Microsoft.Win32;
|
|
||||||
|
|
||||||
namespace Perfect11.Library
|
namespace Perfect11.Library
|
||||||
{
|
{
|
||||||
@@ -16,5 +17,34 @@ namespace Perfect11.Library
|
|||||||
"CurrentBuildNumber", null);
|
"CurrentBuildNumber", null);
|
||||||
return int.TryParse(buildNumber, out int build) && build >= 22000;
|
return int.TryParse(buildNumber, out int build) && build >= 22000;
|
||||||
}
|
}
|
||||||
|
public static List<IPlugin> LoadTweaks(string path)
|
||||||
|
{
|
||||||
|
var plugins = new List<IPlugin>();
|
||||||
|
|
||||||
|
if (!Directory.Exists(path))
|
||||||
|
Directory.CreateDirectory(path);
|
||||||
|
|
||||||
|
foreach (var file in Directory.GetFiles(path, "*.dll"))
|
||||||
|
{
|
||||||
|
var assembly = Assembly.LoadFrom(file);
|
||||||
|
var types = assembly.GetTypes()
|
||||||
|
.Where(t => typeof(IPlugin).IsAssignableFrom(t) && !t.IsInterface && !t.IsAbstract);
|
||||||
|
|
||||||
|
foreach (var type in types)
|
||||||
|
{
|
||||||
|
if (Activator.CreateInstance(type) is IPlugin plugin)
|
||||||
|
plugins.Add(plugin);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return plugins;
|
||||||
|
}
|
||||||
|
public static bool IsAppsDarkMode()
|
||||||
|
{
|
||||||
|
RegistryKey rk = Registry.CurrentUser.OpenSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize");
|
||||||
|
int value = (int)rk.GetValue("AppsUseLightTheme");
|
||||||
|
rk.Close();
|
||||||
|
return value == 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -55,6 +55,9 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<ApplicationIcon>Simpleicons-Team-Simple-Windows-11.ico</ApplicationIcon>
|
<ApplicationIcon>Simpleicons-Team-Simple-Windows-11.ico</ApplicationIcon>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<StartupObject />
|
||||||
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="Microsoft.VisualBasic" />
|
<Reference Include="Microsoft.VisualBasic" />
|
||||||
<Reference Include="ReaLTaiizor, Version=3.8.1.3, Culture=neutral, processorArchitecture=MSIL">
|
<Reference Include="ReaLTaiizor, Version=3.8.1.3, Culture=neutral, processorArchitecture=MSIL">
|
||||||
@@ -131,5 +134,11 @@
|
|||||||
<Content Include="Resources\UWPSystemAppList.txt" />
|
<Content Include="Resources\UWPSystemAppList.txt" />
|
||||||
<Content Include="Simpleicons-Team-Simple-Windows-11.ico" />
|
<Content Include="Simpleicons-Team-Simple-Windows-11.ico" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\Perfect11.TweaksInterface\Perfect11.TweaksInterface.csproj">
|
||||||
|
<Project>{b3f8761a-b4b2-4378-9fe8-06bbfc39fce6}</Project>
|
||||||
|
<Name>Perfect11.TweaksInterface</Name>
|
||||||
|
</ProjectReference>
|
||||||
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
</Project>
|
</Project>
|
||||||
@@ -1,7 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
using Perfect11.Library;
|
using Perfect11.Library;
|
||||||
|
|
||||||
|
|||||||
@@ -57,3 +57,16 @@ Microsoft.DesktopAppInstaller
|
|||||||
Microsoft.SecHealthUI
|
Microsoft.SecHealthUI
|
||||||
Microsoft.StartExperiencesApp
|
Microsoft.StartExperiencesApp
|
||||||
Microsoft.Windows.AugLoop.CBS
|
Microsoft.Windows.AugLoop.CBS
|
||||||
|
MicrosoftWindows.Client.AIX
|
||||||
|
MicrosoftWindows.Client.CBS
|
||||||
|
MicrosoftWindows.Client.Core
|
||||||
|
MicrosoftWindows.Client.FileExp
|
||||||
|
MicrosoftWindows.Client.OOBE
|
||||||
|
MicrosoftWindows.Client.Photon
|
||||||
|
MicrosoftWindows.Client.WebExperience
|
||||||
|
MicrosoftWindows.CrossDevice
|
||||||
|
MicrosoftWindows.UndockedDevKit
|
||||||
|
Microsoft.LanguageExperiencePack
|
||||||
|
Microsoft.XboxIdentityProvider
|
||||||
|
Microsoft.Xbox.TCUI
|
||||||
|
Microsoft.Edge.GameAssist
|
||||||
@@ -0,0 +1,55 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{AD55727D-A52C-459D-A316-3459AA80050A}</ProjectGuid>
|
||||||
|
<OutputType>Library</OutputType>
|
||||||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
|
<RootNamespace>Perfect11.Inbox.UninstallOneDrive</RootNamespace>
|
||||||
|
<AssemblyName>Perfect11.Inbox.UninstallOneDrive</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<Deterministic>true</Deterministic>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<DebugType>none</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
<Reference Include="Microsoft.CSharp" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Net.Http" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="Tweak.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\..\Perfect11.TweaksInterface\Perfect11.TweaksInterface.csproj">
|
||||||
|
<Project>{b3f8761a-b4b2-4378-9fe8-06bbfc39fce6}</Project>
|
||||||
|
<Name>Perfect11.TweaksInterface</Name>
|
||||||
|
<Private>False</Private>
|
||||||
|
</ProjectReference>
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
</Project>
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
using System.Reflection;
|
||||||
|
using System.Runtime.CompilerServices;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
|
// General Information about an assembly is controlled through the following
|
||||||
|
// set of attributes. Change these attribute values to modify the information
|
||||||
|
// associated with an assembly.
|
||||||
|
[assembly: AssemblyTitle("Perfect11 Inbox Plugins")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
[assembly: AssemblyCompany("Vichingo455")]
|
||||||
|
[assembly: AssemblyProduct("Perfect11")]
|
||||||
|
[assembly: AssemblyCopyright("Copyright © 2025 Vichingo455")]
|
||||||
|
[assembly: AssemblyTrademark("")]
|
||||||
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
|
// Setting ComVisible to false makes the types in this assembly not visible
|
||||||
|
// to COM components. If you need to access a type in this assembly from
|
||||||
|
// COM, set the ComVisible attribute to true on that type.
|
||||||
|
[assembly: ComVisible(false)]
|
||||||
|
|
||||||
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
|
[assembly: Guid("ad55727d-a52c-459d-a316-3459aa80050a")]
|
||||||
|
|
||||||
|
// Version information for an assembly consists of the following four values:
|
||||||
|
//
|
||||||
|
// Major Version
|
||||||
|
// Minor Version
|
||||||
|
// Build Number
|
||||||
|
// Revision
|
||||||
|
//
|
||||||
|
[assembly: AssemblyVersion("1.0.0.0")]
|
||||||
|
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||||
172
tweaks/Perfect11.Inbox.UninstallOneDrive/Tweak.cs
Normal file
172
tweaks/Perfect11.Inbox.UninstallOneDrive/Tweak.cs
Normal file
@@ -0,0 +1,172 @@
|
|||||||
|
using Microsoft.Win32;
|
||||||
|
using Perfect11.TweaksInterface;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Perfect11.Inbox.UninstallOneDrive
|
||||||
|
{
|
||||||
|
public class Tweak : IPlugin
|
||||||
|
{
|
||||||
|
public string Name => "Uninstall OneDrive";
|
||||||
|
public string Description => "Remove OneDrive from the system.";
|
||||||
|
public void Execute()
|
||||||
|
{
|
||||||
|
// --- Step 0: Check if OneDrive exists ---
|
||||||
|
bool Exists()
|
||||||
|
{
|
||||||
|
bool regExists = false;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using (var key = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"))
|
||||||
|
{
|
||||||
|
if (key != null)
|
||||||
|
regExists = key.GetSubKeyNames().Any(n => n.ToLower().Contains("onedrive"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch { }
|
||||||
|
|
||||||
|
return regExists;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!Exists())
|
||||||
|
{
|
||||||
|
throw new Exception("OneDrive not found, cannot continue!");
|
||||||
|
}
|
||||||
|
// --- Step 1: Check if OneDrive folders contain files ---
|
||||||
|
string usersRoot = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.System).Substring(0, 3), "Users");
|
||||||
|
foreach (var dir in Directory.GetDirectories(usersRoot))
|
||||||
|
{
|
||||||
|
string oneDrivePath = Path.Combine(dir, "OneDrive");
|
||||||
|
if (Directory.Exists(oneDrivePath) && Directory.EnumerateFileSystemEntries(oneDrivePath).Any())
|
||||||
|
{
|
||||||
|
throw new Exception("OneDrive files found, cannot continue!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Step 2: Kill OneDrive process ---
|
||||||
|
foreach (var proc in Process.GetProcessesByName("OneDrive"))
|
||||||
|
try { proc.Kill(); } catch { }
|
||||||
|
|
||||||
|
// --- Step 3: Uninstall OneDrive executables ---
|
||||||
|
foreach (string setupPath in new[]
|
||||||
|
{
|
||||||
|
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Windows), "System32", "OneDriveSetup.exe"),
|
||||||
|
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Windows), "SysWOW64", "OneDriveSetup.exe")
|
||||||
|
})
|
||||||
|
{
|
||||||
|
if (File.Exists(setupPath))
|
||||||
|
{
|
||||||
|
Process.Start(new ProcessStartInfo
|
||||||
|
{
|
||||||
|
FileName = setupPath,
|
||||||
|
Arguments = "/uninstall",
|
||||||
|
CreateNoWindow = true,
|
||||||
|
UseShellExecute = false
|
||||||
|
})?.WaitForExit(5000);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Step 4: Remove folders ---
|
||||||
|
void TryDelete(string path, bool isDir)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (isDir && Directory.Exists(path)) Directory.Delete(path, true);
|
||||||
|
else if (!isDir && File.Exists(path)) File.Delete(path);
|
||||||
|
}
|
||||||
|
catch { }
|
||||||
|
}
|
||||||
|
|
||||||
|
TryDelete(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "Microsoft", "OneDrive"), true);
|
||||||
|
TryDelete(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "Microsoft", "OneDrive"), true);
|
||||||
|
|
||||||
|
foreach (var dir in Directory.GetDirectories(usersRoot))
|
||||||
|
{
|
||||||
|
TryDelete(Path.Combine(dir, "AppData", "Local", "Microsoft", "OneDrive"), true);
|
||||||
|
TryDelete(Path.Combine(dir, "OneDrive"), true);
|
||||||
|
TryDelete(Path.Combine(dir, "AppData", "Roaming", "Microsoft", "Windows", "Start Menu", "Programs", "OneDrive.lnk"), false);
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Step 5: Clean registry (HKLM + HKU) ---
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using (var key = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\SyncRootManager", true))
|
||||||
|
{
|
||||||
|
if (key != null)
|
||||||
|
{
|
||||||
|
foreach (var sub in key.GetSubKeyNames().Where(k => k.Contains("OneDrive")).ToArray())
|
||||||
|
key.DeleteSubKeyTree(sub, false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch { }
|
||||||
|
|
||||||
|
foreach (string userHive in Registry.Users.GetSubKeyNames())
|
||||||
|
{
|
||||||
|
if (!userHive.StartsWith("S-")) continue;
|
||||||
|
|
||||||
|
string[] paths =
|
||||||
|
{
|
||||||
|
@"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\BannerStore",
|
||||||
|
@"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers",
|
||||||
|
@"SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths",
|
||||||
|
@"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"
|
||||||
|
};
|
||||||
|
|
||||||
|
foreach (string p in paths)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using (var key = Registry.Users.OpenSubKey($"{userHive}\\{p}", true))
|
||||||
|
{
|
||||||
|
if (key == null) continue;
|
||||||
|
foreach (var sub in key.GetSubKeyNames().Where(n => n.Contains("OneDrive")).ToArray())
|
||||||
|
key.DeleteSubKeyTree(sub, false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch { }
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Registry.SetValue($@"HKEY_USERS\{userHive}\SOFTWARE\Classes\CLSID\{{018D5C66-4533-4307-9B53-224DE2ED1FE6}}", "System.IsPinnedToNameSpaceTree", 0, RegistryValueKind.DWord);
|
||||||
|
Registry.SetValue($@"HKEY_USERS\{userHive}\SOFTWARE\Classes\WOW6432Node\CLSID\{{018D5C66-4533-4307-9B53-224DE2ED1FE6}}", "System.IsPinnedToNameSpaceTree", 0, RegistryValueKind.DWord);
|
||||||
|
Registry.Users.DeleteSubKeyTree($"{userHive}\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Desktop\\NameSpace\\{{018D5C66-4533-4307-9B53-224DE2ED1FE6}}", false);
|
||||||
|
|
||||||
|
using (var env = Registry.Users.OpenSubKey(userHive + "\\Environment", true))
|
||||||
|
env?.DeleteValue("OneDrive", false);
|
||||||
|
|
||||||
|
using (var run = Registry.Users.OpenSubKey(userHive + @"\SOFTWARE\Microsoft\Windows\CurrentVersion\Run", true))
|
||||||
|
run?.DeleteValue("OneDriveSetup", false);
|
||||||
|
}
|
||||||
|
catch { }
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Step 6: Remove scheduled tasks ---
|
||||||
|
void DeleteTask(string name)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Process.Start(new ProcessStartInfo
|
||||||
|
{
|
||||||
|
FileName = "schtasks",
|
||||||
|
Arguments = $"/delete /tn \"{name}\" /f",
|
||||||
|
CreateNoWindow = true,
|
||||||
|
UseShellExecute = false
|
||||||
|
});
|
||||||
|
}
|
||||||
|
catch { }
|
||||||
|
}
|
||||||
|
|
||||||
|
DeleteTask(@"\OneDrive Reporting Task");
|
||||||
|
DeleteTask(@"\OneDrive Standalone Update Task");
|
||||||
|
|
||||||
|
Console.WriteLine("OneDrive has been completely removed.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user