> 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/support-application/getting-started.md).

# Getting Started

## Before you begin

1. Request a free trial BFE account by emailing <info@bluefletch.com>.
2. Once you have a BFE account, log into the BFE Portal using your account credentials.
3. Follow the steps below to quickly get Support Application up and running on your device.

## About this task

This tutorial describes how to set up and activate BlueFletch Support Application to manage your devices. The BlueFletch Support Application installation process consists of several components, including the Support Application app, configuration files, and other dependencies.

#### In the instructions below, you'll learn how to:

* Configure the ADB command.
* Configure the AirWatch command.
* Define permissions via ADB.

### Configure via ADB Command

To start silently, invoke the Silent Init Activity using this package: com.bluefletch.ems.support.features.ui.hidden.SilentInitActivity.

```json
adb shell am start -n com.bluefletch.ems.support/com.bluefletch.ems.support.features.ui.hidden.SilentInitActivity
```

### Configure via AirWatch Command

```json
mode=explicit,action=android.action.intent.MAIN,package=com.bluefletch.ems.support,class=com.bluefletch.ems.support.features.ui.hidden.SilentInitActivity,broadcast=false
```

### Configure via Soti Script

```
execute shell "am start -a android.intent.action.MAIN -n com.bluefletch.ems.support/com.bluefletch.ems.support.features.ui.hidden.SilentInitActivity"
```

### Define Permissions via ADB

These ADB commands will give all defined permissions to the Support Application.

```json
adb shell pm grant com.bluefletch.ems.support android.permission.READ_EXTERNAL_STORAGE
adb shell pm grant com.bluefletch.ems.support android.permission.WRITE_EXTERNAL_STORAGE
adb shell pm grant com.bluefletch.ems.support android.permission.ACCESS_FINE_LOCATION
adb shell pm grant com.bluefletch.ems.support android.permission.READ_PHONE_STATE
adb shell pm grant com.bluefletch.ems.support android.permission.PACKAGE_USAGE_STATS
adb shell pm grant com.bluefletch.ems.support android.permission.CAMERA
```

\ <br>

###

### <br>


---

# 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/support-application/getting-started.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.
