ユーザマニュアル

書籍「プリザンター入門」発売中! レビューご投稿・公開でアマギフプレゼント! 「プリザンターをもっと活用するために」資料ダウンロード

2025/12/03

MANUAL

Pleasanter Extensionsのトライアル:CodeDefinerを使ったトライアル開始

## 概要 CodeDefinerを使い、手動でPleasanter Extensionsのトライアルを開始する方法を説明します。 CodeDefinerのコマンドについては[こちら](/manual/codedefiner-command)を確認してください。 ## 前提条件 1. 以下の手順では、プリザンターがインストール済みであることを前提とします。以下の手順では、プリザンターはインストールされないことに注意してください。 ## 操作手順 各パスは、本ユーザマニュアルの手順に従ってインストールした場合の一例です。利用中の環境に応じて、適宜読み替えてください。 ### Windowsの場合 1. コマンドプロンプトまたはWindows PowerShellを開き、以下のコマンドを実行してください。 ```shell cd C:\web\pleasanter\Implem.CodeDefiner dotnet Implem.CodeDefiner.dll trial ``` 1. トライアルを開始することを確認してください。「y」と入力し、「Enter」キーを押下してください。 ```shell <INFO> Configurator.OutputLicenseInfo: This Edition is "Community Edtion". Type "y" (yes) to continue the Pleasanter Extensions Trial process, otherwise type "n" (no). y ``` ### Linuxの場合 1. 以下のコマンドを実行します。<プリザンター起動ユーザ>には「[Pleasanterサービス用スクリプト](/manual?search=Pleasanterサービス用スクリプト)」で指定するユーザを指定します。 ```shell cd /web/pleasanter/Implem.CodeDefiner sudo -u <プリザンター起動ユーザ> /usr/local/bin/dotnet Implem.CodeDefiner.dll trial ``` 1. トライアルを開始することを確認してください。「y」と入力し、「Enter」キーを押下してください。 ```shell <INFO> Configurator.OutputLicenseInfo: This Edition is "Community Edtion". Type "y" (yes) to continue the Pleasanter Extensions Trial process, otherwise type "n" (no). y ``` ### Azure App Serviceの場合 1. Kudu のディレクトリ一覧から CodeDefiner を選択し、 プロンプトが C:\home\site\CodeDefiner となることを確認します。 1. 次のコマンドを実行します。 ```shell dotnet Implem.CodeDefiner.dll trial /p C:\home\site\wwwroot ``` 1. トライアルを開始することを確認してください。「y」と入力し、「Enter」キーを押下してください。 ```shell <INFO> Configurator.OutputLicenseInfo: This Edition is "Community Edtion". Type "y" (yes) to continue the Pleasanter Extensions Trial process, otherwise type "n" (no). y ```
TOP