Giter Club home page Giter Club logo

pluton's Introduction


Pluton


Process Class:

using Pluton.Utilities;

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

Console Window Class:

using Pluton.Utilities;

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.Utilities;

void Main()
{
   //SHUTDOWN THE COMPUTER
   PTools.Shutdown();
   
   //RESTART THE COMPUTER
   PTools.Reboot();

   //MAKE A SCREENSHOT AND SAVE IT IN YOUR PROGRAM DIRECTORY.
   PTools.Screenshot();
   
   //CLEAR SYSTEM TEMP
   PTools.ClearSystemTemp();
   
   //CLEAR USER TEMP
   PTools.ClearUserTemp();
   
   //CLEAR RECYCLE BIN
   PTools.ClearRecycleBin();

}

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();

   //SET WINDOWS THEME(false = DARK/true = LIGHT)
   PDesktop.SetTheme();
}

Network Class:

using Pluton.WindowsSystemFeatures;

void Main()
{
   //GET PUBLIC IP.
   PNetwork.GetPublicIP();

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

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

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

pluton's People

Contributors

relickw-dev avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.