# Configuración avanzada

## Configuración recomendada

El comando de configuración que muestra el RealmJoin Portal proporcionará permisos para:

* Características principales
* Intune LAPS
* Datos de inicio de sesión
* Scripts de remediación
* Autopilot
* Acciones de dispositivo de Intune

Para agregar todas las características o características individuales, consulte [Otros comandos](#other-commands).

{% stepper %}
{% step %}

#### Abra PowerShell en Windows/Mac

Recomendamos instalar y ejecutar el módulo de PowerShell de RealmJoin en el PowerShell de su dispositivo en lugar de Azure CloudShell.
{% endstep %}

{% step %}

#### Copiar y ejecutar el script de incorporación de RealmJoin

El script le solicitará autenticarse con Microsoft Graph. Inicie sesión con su Administrador Global.

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

<figure><img src="/files/6fd00db9ef181862cf4a44d57c1ad3efadfe6851" alt=""><figcaption></figcaption></figure>

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

{% step %}

#### Comenzar a usar RealmJoin

Una vez finalizado, el script iniciará el RealmJoin Portal

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

## Otros comandos

### Configuración interactiva

Para una experiencia guiada por menú:

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

### Configuración personalizada

#### Características mínimas (solo características obligatorias)

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

#### Conjunto completo de características

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

#### Permisos de solo lectura

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

#### Selección personalizada de características

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

### Actualización de la configuración existente

#### Agregar nuevas características

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

#### Quitar características

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

#### Cambiar a permisos de solo lectura

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

#### Vista previa de cambios

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

### Obtener ayuda

```
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/es/implementacion-de-realmjoin/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.
