< Back

Get-AdminPowerApp

Sat Jan 18, 2020 3:46 pm

NAME Get-AdminPowerApp



SYNOPSIS

Returns information about one or more apps.





SYNTAX

Get-AdminPowerApp [[-Filter] <String[]>] [-EnvironmentName <String>] [-Owner <String>] [-ApiVersion <String>]

[<CommonParameters>]



Get-AdminPowerApp [[-Filter] <String[]>] [-EnvironmentName <String>] -Owner <String> [-ApiVersion <String>]

[<CommonParameters>]



Get-AdminPowerApp -EnvironmentName <String> -AppName <String> [-ApiVersion <String>] [<CommonParameters>]





DESCRIPTION

The Get-AdminPowerApp looks up information about one or more apps depending on parameters.

Use Get-Help Get-AdminPowerApp -Examples for more detail.





PARAMETERS

-Filter <String[]>

Finds apps matching the specified filter (wildcards supported).



Required? false

Position? 1

Default value

Accept pipeline input? false

Accept wildcard characters? false



-EnvironmentName <String>

Limit apps returned to those in a specified environment.



Required? false

Position? named

Default value

Accept pipeline input? true (ByPropertyName)

Accept wildcard characters? false



-AppName <String>

Finds a specific id.



Required? true

Position? named

Default value

Accept pipeline input? true (ByPropertyName)

Accept wildcard characters? false



-Owner <String>

Limit apps returned to those owned by the specified user (you can specify a email address or object id)



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-ApiVersion <String>



Required? false

Position? named

Default value 2016-11-01

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS



-------------------------- EXAMPLE 1 --------------------------



PS C:\\>Get-AdminPowerApp



Returns all apps from all environments where the calling user is an Environment Admin. For Global admins, this

will search across all environments in the tenant.









-------------------------- EXAMPLE 2 --------------------------



PS C:\\>Get-AdminPowerApp *PowerApps*



Returns all apps with the text "PowerApps" from all environments where the calling user is an Environment Admin

For Global admins, this will search across all environments in the tenant.









-------------------------- EXAMPLE 3 --------------------------



PS C:\\>Get-AdminPowerApp -CreatedBy foo@bar.onmicrosoft.com



Returns all apps created by the user with an email of "foo@bar.onmicrosoft.com" from all environment where the

calling user is an Environment Admin. For Global admins, this will search across all environments in the tenant.









-------------------------- EXAMPLE 4 --------------------------



PS C:\\>Get-AdminPowerApp -EnvironmentName 3c2f7648-ad60-4871-91cb-b77d7ef3c239



Finds apps within the 3c2f7648-ad60-4871-91cb-b77d7ef3c239 environment









-------------------------- EXAMPLE 5 --------------------------



PS C:\\>Get-AdminPowerApp *Foobar* -EnvironmentName 3c2f7648-ad60-4871-91cb-b77d7ef3c239



Finds all app in environment 3c2f7648-ad60-4871-91cb-b77d7ef3c239 that contain the string "Foobar" in their

display name.









-------------------------- EXAMPLE 6 --------------------------



PS C:\\>Get-AdminPowerApp -AppName 4d1f7648-ad60-4871-91cb-b77d7ef3c239 -EnvironmentName

3c2f7648-ad60-4871-91cb-b77d7ef3c239



Returns the details for the app named 4d1f7648-ad60-4871-91cb-b77d7ef3c239 in Environment

3c2f7648-ad60-4871-91cb-b77d7ef3c239











RELATED LINKS