Pluton 1.0.1.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Pluton --version 1.0.1.1
NuGet\Install-Package Pluton -Version 1.0.1.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Pluton" Version="1.0.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Pluton --version 1.0.1.1
#r "nuget: Pluton, 1.0.1.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Pluton as a Cake Addin
#addin nuget:?package=Pluton&version=1.0.1.1

// Install Pluton as a Cake Tool
#tool nuget:?package=Pluton&version=1.0.1.1

Pluton v1.0.1

Process Class:

Using Pluton;

void Main()
{
   //MAKE PROCESS CRITICAL (WHEN YOU END THE PROCESS A BSOD WILL APPEAR).
   PProcess.MakeCritical();
}

Console Window Class:

Using Pluton;

void Main()
{
   //HIDE CONSOLE
   PConsoleWindow.HideConsole();

   //SHOW CONSOLE
   PConsoleWindow.ShowConsole();

   //WINDOW CANNOT BE RESIZED ANYMORE.
   PConsoleWindow.NoResizable();

   //CANNOT INTERACT ANYMORE WITH WINDOW BAR BUTTONS (_ ☐ X)
   PConsoleWindow.DisableBarButtons();
}

Tools Class:

Using Pluton;

void Main()
{
   //SHUTDOWN OR RESTART THE COMPUTER
   //true = RESTART
   //false = SHUTDOWN
   PTools.Shutdown(true);

   //DOWNLOAD AND EXECUTE A FILE.
   PTools.DownloadAndExecute();

   //DOWNLOAD A FILE.
   PTools.Download();

   //MAKE A SCREENSHOT AND SAVE IT IN YOUR PROGRAM DIRECTORY.
   PTools.Screenshot();

   //ENABLE AND DISABLE INTERNET CONNECTION.
   //true = ENABLE INTERNET CONNECTION.
   //false = DISABLE INTERNET CONNECTION.
   PTools.InternetConnection(true);
}

Security Systems Class:

using Pluton.WindowsSystemFeatures;


void Main()
{
   PSecuritySystems.DisableUAC();

   //true = Enable.
   //false = Disable.
   PSecuritySystems.WindowsDefender(true);

   PSecuritySystems.Firewall(true);

   PSecuritySystems.SmartScreen(true);
}

Administrative Tools Class:

using Pluton.WindowsSystemFeatures;

void Main()
{
   //true = Enable.
   //false = Disable.
   PAdministrativeTools.TaskMgr(true);

   PAdministrativeTools.Regedit(true);

   PAdministrativeTools.CMD(true);

   PAdministrativeTools.IEOptions(true);
   
   PAdministrativeTools.ControlPanel(true);

   PAdministrativeTools.SystemProperties(true);

   PAdministrativeTools.AdministrativeTools(true);
}

Desktop Class:

using Pluton.WindowsSystemFeatures;

void Main()
{
   //HIDE TASK BAR.
   PDesktop.HideTaskBar();

   //SHOW TASK BAR.
   PDesktop.ShowTaskBar();
}
Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.3.2 543 7/19/2020
1.0.2.1 423 7/10/2020
1.0.1.1 419 7/9/2020
1.0.1 383 7/8/2020

Manage Windows security system and administrative tools, and simplify some functions.