2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

PowerAppsをB2Bゲストにも開発させたい場合の設定

Posted at

はじめに

PowerAppsにてB2Bでゲスト招待し、そのゲストにも編集させたいというケースがありました。
ゲスト招待し、環境への割当はできましたがゲストによるアプリの作成は許可されていないとダイアログが表示され、編集することができませんでした。

解決方法

調査したところ、PowerShellを次の手順で実行することでゲストへの開発権限付与ができました。

  1. Install-Module -Name Microsoft.PowerApps.Administration.PowerShellを実行
  2. Add-PowerAppsAccountを実行し、PowerApps管理センターのアクセス権があるユーザーで認証
  3. 下記を実行
$requestBody = Get-TenantSettings
$requestBody.powerPlatform.powerApps.enableGuestsToMake = $True
Set-TenantSettings $requestBody

以上を実施後、ゲストにPowerAppsエディタを開いてもらった際のエラー表示はなくなりました。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?