> For the complete documentation index, see [llms.txt](https://docs.bluefletch.com/bluefletch-enterprise/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bluefletch.com/bluefletch-enterprise/product-guides/bluefletch-launcher/security-and-safety/local-admin-password.md).

# Local Admin Password

### Overview

Local Admin Password enables administrators to define a secure, device-level password within the Launcher configuration. By default, this password is not included in the configuration file, but it can be added or modified by providing an SHA256 hash of the desired password.

This feature restricts unauthorized access to administrative settings on shared devices. It ensures that only authorized IT personnel can bypass lockdown modes or modify configurations.&#x20;

### User Guide

To update the Local Admin Password, you must generate an SHA-256 hash of your new password and deploy it via your MDM.&#x20;

1. Determine your new password.
2. Generate the hash using one of two methods below:
   1. Plug password into a SHA256 hash generator:(<https://academo.org/demos/SHA-256-hash-generator/>)
   2. Run the following command in your terminal:

      &#x20;`echo -n adpass321 | shasum -a 256 | awk '{ print $1 }`
3. In your `launcher.json` file, add or update the `adminPassword` field within the `settings` object using the generated value.

Once this configuration file is read by Launcher, the new password will be required to access local admin features.

<figure><img src="/files/kDOSW86pGC5gvbdLbQLA" alt="" width="360"><figcaption></figcaption></figure>

### Feature Configuration

To set up the Local Admin Password feature for a particular device profile or device group, please follow the steps below:\
\
To change the password, add or modify the adminPassword field under `settings` with an SHA-256 hash of the password. Then push the new configuration to the device. Use the example below:

```json
"settings" : {
    ...
    "adminPassword": "d4548952d6815a2d07efbddaa6cfdf81d910121ea4ec094e182b02503214bc92"
    ...
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.bluefletch.com/bluefletch-enterprise/product-guides/bluefletch-launcher/security-and-safety/local-admin-password.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
