Metadata-Version: 2.1
Name: GSAToolKit
Version: 0.0.6
Summary: Systems are supposed to be tested
Home-page: UNKNOWN
Author: Joe
Author-email: alex.riddell88@gmail.com
License: UNKNOWN
Keywords: python,GSA
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft :: Windows

==========
GSAToolKit
==========

|PyPI| |Python| |Downloads|

.. |PyPI| image:: https://img.shields.io/pypi/v/GSAToolKit
    :target: https://pypi.org/project/GSAToolKit
    :alt: PyPI

.. |Python| image:: https://img.shields.io/pypi/pyversions/GSAToolKit
    :target: https://pypi.org/project/GSAToolKit
    :alt: PyPI - Python Version

.. |Downloads| image:: https://img.shields.io/pypi/dm/GSAToolKit
    :target: https://pypi.org/project/GSAToolKit
    :alt: PyPI - Downloads

This is a package to mess with and get around systems.

Usage
=====

Modules on this package::

	commandPrompt()
		- Runs any command that can be
		  ran on a normal command prompt
		  e.g. commandPrompt("ipconfig").

	diskInfo()
		- Default disk is the c drive.
		  If you want to change the disk,
		  type in the disk letter followed
		  by a ":" e.g. diskInfo("d:").

	installPythonModule()
		- This is a function to install
		  any python module on the local
		  machine. e.g.
		  installPythonModule("GSAToolKit")

	internetInfo()
		- Lists all the information about
		  adapters and gateways attatched
		  to the system. It is the same
		  output as the command "ipconfig"
		  on command prompt.

	killChrome()
		- Force kills all google chrome
		  windows that are currently open.

	listDrives()
		- Lists all shown and hidden
		  drive letters that are attatched
		  to the machine.

	listUsers()
		- Lists all users that have ever
		  logged on to the machine and
		  the date/time that they last
		  logged on.

	killNetSupport()
		- Checks if NetSupport is running
		  and kills it if it is. If you
		  want to continualy kill it and
		  prevent it from starting, use
		  the code:

		  while True:
		  	killNetSupport()

	performanceMonitor()
		- Opens windows performance
		  monitor if it is bloacked on
		  your system.

	systemInfo()
		- Lists all information that
		  is provided using the "systeminfo"
		  command in command propmpt.

	taskManager()
		- Displays all process names and
		  ID's for every process currently
		  running on the system.

	treeDrives()
		- Lists all directories and files
		  on any drive. Default is the c
		  drive but can be changed to any
		  drive e.g. treeDrives("d:").


