# Erweiterte Einrichtung

## Empfohlene Einrichtung

Der im RealmJoin Portal angezeigte Einrichtungsbefehl gewährt Berechtigungen für:

* Kernfunktionen
* Intune LAPS
* Anmeldedaten
* Behebungsskripte
* Autopilot
* Intune-Geräteaktionen

Um alle Funktionen oder einzelne Funktionen hinzuzufügen, siehe [Weitere Befehle](#other-commands).

{% stepper %}
{% step %}

#### PowerShell unter Windows/Mac öffnen

Wir empfehlen, das RealmJoin PowerShell-Modul auf der PowerShell Ihres Geräts zu installieren und auszuführen, statt Azure CloudShell zu verwenden.
{% endstep %}

{% step %}

#### RealmJoin Onboarding-Skript kopieren und ausführen

Das Skript fordert Sie auf, sich mit Microsoft Graph zu authentifizieren. Melden Sie sich mit Ihrem globalen Administrator an.

```
Install-Module -Force -Name RealmJoin
Complete-RJTenantOnboarding -Token 1234ABCD 6>&1
```

<figure><img src="/files/0ff69e1dc05b015415287a562b381b9313fd02fc" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/a6f8c04ed86ddba94180f42f240b73ee9a304d44" alt=""><figcaption></figcaption></figure>
{% endstep %}

{% step %}

#### Mit der Verwendung von RealmJoin beginnen

Nach Abschluss startet das Skript das RealmJoin Portal

<figure><img src="/files/203e850543f3306f662d78be667b42f8c0a8d9e9" alt=""><figcaption></figcaption></figure>
{% endstep %}
{% endstepper %}

## Weitere Befehle

### Interaktive Einrichtung

Für eine geführte, menügesteuerte Erfahrung:

```
Show-RJInteractiveSetup 6>&1
```

### Benutzerdefinierte Konfiguration

#### Minimale Funktionen (nur erforderliche Funktionen)

```
New-RJTenant -Features @() 6>&1
```

#### Vollständiger Funktionsumfang

```
New-RJTenant -All 6>&1
```

#### Schreibgeschützte Berechtigungen

```
New-RJTenant -ReadOnly 6>&1
```

#### Benutzerdefinierte Funktionsauswahl

```
New-RJTenant -Features @('RealmJoinPortal', 'IntuneLAPS', 'Autopilot') 6>&1
```

### Vorhandene Konfiguration aktualisieren

#### Neue Funktionen hinzufügen

```
Update-RJTenant -AddFeatures @('SecurityFeatures') 6>&1
```

#### Funktionen entfernen

```
Update-RJTenant -RemoveFeatures @('ShowSignin') 6>&1
```

#### Zu schreibgeschützten Berechtigungen wechseln

```
Update-RJTenant -ReadOnly 6>&1
```

#### Änderungsvorschau

```
Update-RJTenant -AddFeatures @('SecurityFeatures') -WhatIf 6>&1
```

### Hilfe erhalten

```
Get-Help New-RJTenant -Full
Get-Help Update-RJTenant -Examples
Get-Help Show-RJInteractiveSetup -Detailed
```


---

# Agent Instructions: 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:

```
GET https://docs.realmjoin.com/de/realmjoin-bereitstellung/onboarding-realmjoin-portal/advanced-setup.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
