Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 1.12 KB

README.md

File metadata and controls

40 lines (27 loc) · 1.12 KB

Admin Check

Version Node.js CI Downloads

Admin Check is an NPM package to check if the current script is running with admin privileges.

Currently only available for Windows. It uses a native Windows command("net session") that is only available with admin privileges to check if the admin privileges are present.

Installation

Use the package manager NPM to install Admin Check.

npm i admin-check

Usage

Returns a <Boolean> which is true when admin privileges are present.

const admin = require("admin-check");

admin.check().then(result => {
  if (result) {
    // Do something when admin privileges are present
  } else {
    // Do something when admin privileges are NOT present
  }
});

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT