> ## Documentation Index
> Fetch the complete documentation index at: https://developer.box.com/llms.txt
> Use this file to discover all available pages before exploring further.

# CLIサンプルスクリプト

export const Link = ({href, children, className, ...props}) => {
  const localizedHref = localizeLink(href);
  return <a href={localizedHref} className={className} {...props}>
      {children}
    </a>;
};

Box CLIのスクリプトは、タスクの自動化に役立つよう設計されています。現在、ユーザーが使用、カスタマイズできるいくつかのPowerShellスクリプトがサンプルスクリプトライブラリで提供されています。これらのスクリプトを実行するには、Box CLIをインストールし、構成する必要があります。これは、<Link href="/guides/cli">クイックスタートガイド</Link>に従って実行することができます。

<Warning>
  以下のスクリプトのほとんどでは、コマンドの実行に使用するユーザーにBoxの[管理者権限][7]が必要です。
</Warning>

## PowerShellスクリプト

* <Link href="/guides/cli/scripts/powershell-script-templates">PowerShellスクリプトのテンプレート</Link>
* <Link href="/guides/cli/scripts/deprovision-users">ユーザーのプロビジョニング解除とフォルダのアーカイブ</Link>
* <Link href="/guides/cli/scripts/manage-groups-collaborations">グループとコラボレーションの管理</Link>
* <Link href="/guides/cli/scripts/report-inactive-users">非アクティブなユーザーのレポート</Link>
* <Link href="/guides/cli/scripts/metadata-extraction">メタデータの抽出</Link>
* <Link href="/guides/cli/scripts/user-zones-mass-update">ユーザーのゾーンの更新</Link>
* <Link href="/guides/cli/scripts/slack-integration-mappings">Slack統合フォルダマッピングの管理</Link>

[7]: https://support.box.com/hc/en-us/articles/360043694174-Understanding-Administrator-and-Co-Administrator-Permissions
