> For the complete documentation index, see [llms.txt](https://docs.realmjoin.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.realmjoin.com/ja/realmjoin-no/onboarding-realmjoin-portal/advanced-setup.md).

# 詳細設定

## 推奨セットアップ

RealmJoin Portal に表示されるセットアップ コマンドは、次の権限を提供します:

* コア機能
* Intune LAPS
* サインイン データ
* 修復スクリプト
* Autopilot
* Intune のデバイス操作

すべての機能または個別の機能を追加するには、以下を参照してください [その他のコマンド](#other-commands).

{% stepper %}
{% step %}

#### Windows/Mac で PowerShell を開く

Azure CloudShell ではなく、デバイスの PowerShell で RealmJoin PowerShell モジュールをインストールして実行することをお勧めします。
{% endstep %}

{% step %}

#### RealmJoin のオンボーディング スクリプトをコピーして実行する

スクリプトは Microsoft Graph での認証を求めます。グローバル管理者でサインインしてください。

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

<figure><img src="/files/e0564eae6fcc895120913859f05500044f0b66cb" alt=""><figcaption></figcaption></figure>

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

{% step %}

#### RealmJoin の使用を開始

完了すると、スクリプトは RealmJoin Portal を起動します

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

## その他のコマンド

### インタラクティブ セットアップ

ガイド付きのメニュー形式の操作については:

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

### カスタム構成

#### 最小機能（必須機能のみ）

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

#### フル機能セット

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

#### 読み取り専用権限

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

#### カスタム機能の選択

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

### 既存構成の更新

#### 新しい機能を追加

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

#### 機能を削除

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

#### 読み取り専用権限に切り替える

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

#### 変更内容をプレビュー

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

### ヘルプを表示

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


---

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

```
GET https://docs.realmjoin.com/ja/realmjoin-no/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.
