2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

PowerApps アプリ所有者の変更

Posted at

はじめに

組織で利用するアプリにおいて、異動などによりPowerAppsのアプリ所有者が不在となってしまった場合、管理者権限により所有者を変更することで対応する。
本件について勉強したことを忘れないようメモするもの。

所有者変更の流れ

  1. 新所有者の「ObjectID」確認
  2. 対象アプリの詳細情報確認
  3. アプリの所有者変更

1.新所有者の「ObjectID」確認

  1. PowerShellでAzureAD管理センターへ接続する。
       Import-Module -Name AzureAD
       Connect-AzureAD
    
  2. 新所有者の「ObjectID」を出力する
       Get-AzureADUser -ObjectID "新所有者のアカウント名" 
    
  3. 「ObjectID」を控えておく。
    画像1.png

2.対象アプリの詳細情報確認

  1. PowerShellでPowerApps管理センターへ接続する。
       Import-Module Microsoft.PowerApps.Administration.PowerShell
       Add-PowerAppsAccount
    
  2. アプリの詳詳細情報一覧を出力する。
       Get-AdminPowerApp
    
  3. 以下の情報を控えておく。
    • AppName
    • EnvironmentName

3.アプリの所有者変更

  1. PowerShellでPowerApps管理センターへ接続する。
       Import-Module Microsoft.PowerApps.Administration.PowerShell
       Add-PowerAppsAccount
    
  2. 以下のコマンドで所有を変更する。
       Set-AdminPowerAppOwner -AppName "所有者を変更したいアプリの「AppName」" -EnvironmentName "所有者を変更したいアプリの「EnvironmentName」" -AppOwner "新所有者のObjectID"
    
  3. Microsoft365管理センターから所有者が変更されていることを確認
2
3
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
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?