You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The New-AzureADApplicationProxyApplication cmdlet creates a new application configured for Application Proxy in Azure Active Directory. To ensure this application is usable, please also make sure you assign users and configure SSO if needed. Note that without specifying a ConnectorGroupId, this application by default will use the �Default� connector group in your tenant.
23
+
The New-AzureADApplicationProxyApplication cmdlet creates a new application configured for Application Proxy in Azure Active Directory.
24
+
To ensure this application is usable, please also make sure you assign users and configure SSO if needed.
25
+
Note that without specifying a ConnectorGroupId, this application by default will use the �Default� connector group in your tenant.
24
26
25
27
## EXAMPLES
26
28
@@ -74,7 +76,7 @@ Example 2: Creating a new application that uses a custom domain and sets several
74
76
## PARAMETERS
75
77
76
78
### -ApplicationServerTimeout
77
-
Set this value to Long only if your application is slow to authenticate and connect.
79
+
Set this value to Long only if your application is slow to authenticate and connect.
Provide the Id of the Connector group you would like assigned to this application. You can find this value by using the Get-AzureADApplicationProxyConnectorGroup command.
94
-
Connectors process the remote access to your application, and connector groups help you organize connectors and apps by region, network, or purpose. If you don't have any connector groups created yet, your app is assigned to Default.
95
+
Provide the Id of the Connector group you would like assigned to this application.
96
+
You can find this value by using the Get-AzureADApplicationProxyConnectorGroup command.
97
+
Connectors process the remote access to your application, and connector groups help you organize connectors and apps by region, network, or purpose.
98
+
If you don't have any connector groups created yet, your app is assigned to Default.
How Application Proxy verifies users before giving them access to your application.
125
-
AadPreAuthentication: Application Proxy redirects users to sign in with Azure AD, which authenticates their permissions for the directory and application. We recommend keeping this option as the default, so that you can take advantage of Azure AD security features like conditional access and Multi-Factor Authentication.
126
-
Passthru: Users don't have to authenticate against Azure Active Directory to access the application. You can still set up authentication requirements on the backend.
129
+
AadPreAuthentication: Application Proxy redirects users to sign in with Azure AD, which authenticates their permissions for the directory and application.
130
+
We recommend keeping this option as the default, so that you can take advantage of Azure AD security features like conditional access and Multi-Factor Authentication.
131
+
Passthru: Users don't have to authenticate against Azure Active Directory to access the application.
132
+
You can still set up authentication requirements on the backend.
The URL that you use to access the application from inside your private network. You can provide a specific path on the backend server to publish, while the rest of the server is unpublished. In this way, you can publish different sites on the same server as different apps, and give each one its own name and access rules. If you publish a path, make sure that it includes all the necessary images, scripts, and style sheets for your application.
163
+
The URL that you use to access the application from inside your private network.
164
+
You can provide a specific path on the backend server to publish, while the rest of the server is unpublished.
165
+
In this way, you can publish different sites on the same server as different apps, and give each one its own name and access rules.
166
+
If you publish a path, make sure that it includes all the necessary images, scripts, and style sheets for your application.
If set to true, translates urls in headers. Keep this value true unless your application required the original host header in the authentication request.
181
+
If set to true, translates urls in headers.
182
+
Keep this value true unless your application required the original host header in the authentication request.
If set to true, translates urls in body. Keep this value as No unless you have hardcoded HTML links to other on-premises applications, and don't use custom domains.
197
+
If set to true, translates urls in body.
198
+
Keep this value as No unless you have hardcoded HTML links to other on-premises applications, and don't use custom domains.
188
199
189
200
```yaml
190
201
Type: Boolean
@@ -204,14 +215,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
Copy file name to clipboardExpand all lines: azureadps-2.0-preview/AzureAD/Remove-AzureADApplicationProxyApplication.md
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
external help file: Microsoft.Open.MS.GraphBeta.PowerShell.Custom.dll-Help.xml
3
-
Module Name:AzureADPreview
3
+
Module Name:
4
4
online version:
5
5
schema: 2.0.0
6
6
---
@@ -39,7 +39,9 @@ Example 2: Remove a Proxy Application, and remove it from Azure AD completely
39
39
## PARAMETERS
40
40
41
41
### -ObjectId
42
-
The unique application Id of the application. This can be found using the Get-AzureADApplication command. You can also find this in the Azure Portal by navigating to AAD, Enterprise Applications, All Applications, Select your application, go to the properties tab, and use the ObjectId on that page.
42
+
The unique application Id of the application.
43
+
This can be found using the Get-AzureADApplication command.
44
+
You can also find this in the Azure Portal by navigating to AAD, Enterprise Applications, All Applications, Select your application, go to the properties tab, and use the ObjectId on that page.
This allows you to delete application completely. When this is false (default), Application Proxy properties are removed from the application but the application still exists. If this is true, the application is completely removed from Azure AD.
59
+
This allows you to delete application completely.
60
+
When this is false (default), Application Proxy properties are removed from the application but the application still exists.
61
+
If this is true, the application is completely removed from Azure AD.
Copy file name to clipboardExpand all lines: azureadps-2.0-preview/AzureAD/Set-AzureADApplicationProxyApplication.md
+24-13Lines changed: 24 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
1
---
2
2
external help file: Microsoft.Open.MS.GraphBeta.PowerShell.Custom.dll-Help.xml
3
-
Module Name:AzureADPreview
3
+
Module Name:
4
4
online version:
5
5
schema: 2.0.0
6
6
---
7
7
8
8
# Set-AzureADApplicationProxyApplication
9
9
10
10
## SYNOPSIS
11
-
The Set-AzureADApplicationProxyApplication allows you to modify and set configurations for an application in Azure Active Directory configured to use ApplicationProxy.
11
+
The Set-AzureADApplicationProxyApplication allows you to modify and set configurations for an application in Azure Active Directory configured to use ApplicationProxy.
The Set-AzureADApplicationProxyApplication allows you to modify and set additional settings for an application in Azure Active Directory configured to use ApplicationProxy.
23
+
The Set-AzureADApplicationProxyApplication allows you to modify and set additional settings for an application in Azure Active Directory configured to use ApplicationProxy.
24
24
25
25
## EXAMPLES
26
26
@@ -47,7 +47,8 @@ Example 1: Add the link translation feature to an application
47
47
## PARAMETERS
48
48
49
49
### -ObjectId
50
-
Specifies a unique application ID of an application in Azure Active Directory. This can be found using the Get-AzureADApplication command.
50
+
Specifies a unique application ID of an application in Azure Active Directory.
51
+
This can be found using the Get-AzureADApplication command.
The URL that you use to access the application from inside your private network. You can provide a specific path on the backend server to publish, while the rest of the server is unpublished. In this way, you can publish different sites on the same server as different apps, and give each one its own name and access rules. If you publish a path, make sure that it includes all the necessary images, scripts, and style sheets for your application.
81
+
The URL that you use to access the application from inside your private network.
82
+
You can provide a specific path on the backend server to publish, while the rest of the server is unpublished.
83
+
In this way, you can publish different sites on the same server as different apps, and give each one its own name and access rules.
84
+
If you publish a path, make sure that it includes all the necessary images, scripts, and style sheets for your application.
How Application Proxy verifies users before giving them access to your application.
96
-
AadPreAuth: Application Proxy redirects users to sign in with Azure AD, which authenticates their permissions for the directory and application. We recommend keeping this option as the default, so that you can take advantage of Azure AD security features like conditional access and Multi-Factor Authentication.
97
-
Passthru: Users don't have to authenticate against Azure Active Directory to access the application. You can still set up authentication requirements on the backend.
100
+
AadPreAuth: Application Proxy redirects users to sign in with Azure AD, which authenticates their permissions for the directory and application.
101
+
We recommend keeping this option as the default, so that you can take advantage of Azure AD security features like conditional access and Multi-Factor Authentication.
102
+
Passthru: Users don't have to authenticate against Azure Active Directory to access the application.
103
+
You can still set up authentication requirements on the backend.
If set to true, translates urls in headers. Keep this value true unless your application required the original host header in the authentication request.
118
+
If set to true, translates urls in headers.
119
+
Keep this value true unless your application required the original host header in the authentication request.
If set to true, translates urls in body. Keep this value as No unless you have hardcoded HTML links to other on-premises applications, and don't use custom domains.
134
+
If set to true, translates urls in body.
135
+
Keep this value as No unless you have hardcoded HTML links to other on-premises applications, and don't use custom domains.
Provide the Id of the Connector group you would like assigned to this application. You can find this value by using the Get-AzureADApplicationProxyConnectorGroup command.
158
-
Connectors process the remote access to your application, and connector groups help you organize connectors and apps by region, network, or purpose. If you don't have any connector groups created yet, your app is assigned to Default.
166
+
Provide the Id of the Connector group you would like assigned to this application.
167
+
You can find this value by using the Get-AzureADApplicationProxyConnectorGroup command.
168
+
Connectors process the remote access to your application, and connector groups help you organize connectors and apps by region, network, or purpose.
169
+
If you don't have any connector groups created yet, your app is assigned to Default.
0 commit comments