admin-check

package to check if the script is running with admin permissions

Usage no npm install needed!

<script type="module">
  import adminCheck from 'https://cdn.skypack.dev/admin-check';
</script>

README

Admin Check

Version Node.js CI

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