> 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-for-windows/getting-started/installation/local-installation-guide.md).

# Local Installation Guide

#### Additional requirements

* Have a Windows account with Administrative access.
* Turn on the Shell Launcher Windows Feature:
  * **Manually** (for testing/reference machines)
    * Search for "Turn Windows features on or off" in Control Panel then go to Device Lockdown >> Shell Launcher.
  * **SCCM**
    * Deploy this powershell script as a Configuration Item or SCCM Package running as the SYSTEM account. Open an **Elevated PowerShell** window (Run as Administrator)  and run the following script:

```
Enable-WindowsOptionalFeature -FeatureName Client-DeviceLockdown, Client-EmbeddedShellLauncher -Online
```

#### **Steps:**

1. Log in to a computer under an administrative account.
2. Open an **Elevated PowerShell** window (Run as Administrator) for the changes to take effect.
3. Run the following command based on your needs (see [Installation](https://docs.bluefletch.com/bluefletch-enterprise/product-guides/bluefletch-launcher-for-windows/getting-started/installation) page for parameter details).

```powershell
# Application + configuration + shell assignment + set auto logon
.\BFEWindowsLauncher_installationScript.ps1 -MSIPath "C:\path\to\BlueFletchLauncher-<VERSION>-x64.msi" `
  -ConfigPath "C:\path\to\launcher.json" -UserSetup '<USER_INSTALLATION_TYPE>' -Domain "<DOMAINNAME>" -Username "<USERNAME>" `
  -AutoLogonPath "C:\path\to\Autologon64.exe" -Password "<PASSWORD>"
```

{% hint style="warning" %}
If you get an error about "running scripts is disabled on this system", run `Set-ExecutionPolicy RemoteSigned -Scope CurrentUser` in the same shell and try again.
{% endhint %}


---

# 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-for-windows/getting-started/installation/local-installation-guide.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.
