Get-MbamWebApplication

Gets the configuration of a web application.

Syntax

Get-MbamWebApplication
   [-AdministrationPortal]
   [<CommonParameters>]
Get-MbamWebApplication
   [-AgentService]
   [<CommonParameters>]
Get-MbamWebApplication
   [-SelfServicePortal]
   [<CommonParameters>]

Description

The Get-MbamWebApplication cmdlet gets the configuration of a Microsoft BitLocker Administration and Monitoring (MBAM) web application.

Examples

Example 1: Get the configuration of Administration and Monitoring Website

PS C:\> Get-MbamWebApplication -AdministrationPortal
Name                                 : Administration Web Portal
Enabled                              : True
Description                          : This feature includes the Help Desk web application for administration.
InstallationPath                     : C:\inetpub
HostName                             : MYSERVER.contoso.com
Port                                 : 443
CertificateThumbprint                : E2A7EA5533890D6567E40DFC46F53B3D31D6B689
ComplianceAndAuditDBConnectionString : Integrated Security=SSPI;Data Source=MyDatabaseServer;Initial Catalog="MBAM Compliance Status";
RecoveryDBConnectionString           : Integrated Security=SSPI;Data Source=MyDatabaseServer;Initial Catalog="MBAM Recovery and Hardware";
WebServiceApplicationPoolUser        : MyDomain\MBAMWebServicesAccount
VirtualDirectory                     : /HelpDesk
CMIntegrationMode                    : False
ReportUrl                            : https://MyReportsServer/ReportServer
AdvancedHelpdeskAccessGroup          : MyDomain\AdvancedHelpdeskUserGroup
HelpdeskAccessGroup                  : MyDomain\HelpdeskUserGroup
ReportsReadOnlyAccessGroup           : MyDomain\ReportsUserGroup

This command gets the configuration of the Administration and Monitoring Website feature on the local server.

Example 2: Get the configuration of the Self-Service Portal

PS C:\> Get-MbamWebApplication -SelfServicePortal
Name                                 : Self Service Web Portal
Enabled                              : True
Description                          : This feature includes the Self Service web application that allows users to recover their own BitLocker keys.
InstallationPath                     : C:\inetpub
HostName                             : MYSERVER.contoso.com
Port                                 : 443
CertificateThumbprint                : E2A7EA5533890D6567E40DFC46F53B3D31D6B689
ComplianceAndAuditDBConnectionString : Integrated Security=SSPI;Data Source=MyDatabaseServer;Initial Catalog="MBAM Compliance Status";
RecoveryDBConnectionString           : Integrated Security=SSPI;Data Source=MyDatabaseServer;Initial Catalog="MBAM Recovery and Hardware";
WebServiceApplicationPoolUser        : MyDomain\MBAMWebServicesAccount
VirtualDirectory                     : /SelfService

This command gets the configuration of the Self-Service Portal feature on the local server.

Example 3: Get the configuration of the Agent Services feature

PS C:\> Get-MbamWebApplication -AgentService
Name                                 : Agent Web Services
Enabled                              : True
Description                          : This feature includes the web services to support the MBAM agent.
InstallationPath                     : C:\inetpub
HostName                             : MYSERVER.contoso.com
Port                                 : 443
ComplianceAndAuditDBConnectionString : Integrated Security=SSPI;Data Source=MyDatabaseServer;Initial Catalog="MBAM Compliance Status";
RecoveryDBConnectionString           : Integrated Security=SSPI;Data Source=MyDatabaseServer;Initial Catalog="MBAM Recovery and Hardware";
WebServiceApplicationPoolUser        : MyDomain\MBAMWebServicesAccount
CMIntegrationMode                    : False

This command gets the configuration of the Agent Services feature on the local server.

Parameters

-AdministrationPortal

Indicates that this cmdlet acts on the Administration and Monitoring Website web application.

Type:SwitchParameter
Position:Named
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

-AgentService

Indicates that this cmdlet acts on the Agent Services web application.

Type:SwitchParameter
Position:Named
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

-SelfServicePortal

Indicates that this cmdlet acts on the Self-Service Portal web application.

Type:SwitchParameter
Position:Named
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

Outputs

Microsoft.MBAM.Server.Commands.AdministrationPortalConfiguration, Microsoft.MBAM.Server.Commands.SelfServicePortalConfiguration, Microsoft.MBAM.Server.Commands.AgentServiceConfiguration