Local Admin Password
Instructions for changing the Local Admin Password within the Launcher.
By default, the password is not part of the configuration file, but can be added/modified through updating the launcher configuration. The actual password value should is an SHA256 hash of the actual password.
To change the password, add/modify the adminPassword field under settings with an SHA256 hash of the password. Then push the new configuration to the device. Example below:
Steps to Update Launcher Config
Determine new password.
Generate the hash using one of two methods below:
Plug Password into a SHA256 hash generator, ie. https://academo.org/demos/SHA-256-hash-generator/
Run on Mac command line
echo -n adpass321 | shasum -a 256 | awk '{ print $1 }'
Update the configuration with the generated value.
Once this configuration file is read by the Launcher, this new password will be required to access local admin.
Last updated