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
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/bicep/file.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -405,7 +405,7 @@ See [Arrays](./data-types.md#arrays) and [Objects](./data-types.md#objects) for
405
405
## Known limitations
406
406
407
407
* No support for the concept of apiProfile, which is used to map a single apiProfile to a set apiVersion for each resource type.
408
-
*No support for user-defined functions.
408
+
*User-defined functions are not supported at the moment. However, an experimental feature is currently accessible. For more information, see [User-defined functions in Bicep](./user-defined-functions.md).
409
409
* Some Bicep features require a corresponding change to the intermediate language (Azure Resource Manager JSON templates). We announce these features as available when all of the required updates have been deployed to global Azure. If you're using a different environment, such as Azure Stack, there may be a delay in the availability of the feature. The Bicep feature is only available when the intermediate language has also been updated in that environment.
Copy file name to clipboardExpand all lines: articles/virtual-desktop/app-attach-setup.md
+24-23Lines changed: 24 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,15 +94,15 @@ In order to use MSIX app attach in Azure Virtual Desktop, you need to meet the p
94
94
- If you want to use Azure PowerShell locally, see [Use Azure PowerShell with Azure Virtual Desktop](cli-powershell.md) to make sure you have the [Az.DesktopVirtualization](/powershell/module/az.desktopvirtualization) and [Microsoft Graph](/powershell/microsoftgraph/installation) PowerShell modules installed. Alternatively, use the [Azure Cloud Shell](../cloud-shell/overview.md).
95
95
96
96
::: zone pivot="app-attach"
97
-
- You need to use version 4.2.0 or later of the *Az.DesktopVirtualization* PowerShell module, which contains the cmdlets that support app attach. You can download and install the Az.DesktopVirtualization PowerShell module from the [PowerShell Gallery](https://www.powershellgallery.com/packages/Az.DesktopVirtualization/).
97
+
- You need to use version 4.2.1 of the *Az.DesktopVirtualization* PowerShell module, which contains the cmdlets that support app attach. You can download and install the Az.DesktopVirtualization PowerShell module from the [PowerShell Gallery](https://www.powershellgallery.com/packages/Az.DesktopVirtualization/).
98
98
::: zone-end
99
99
100
100
::: zone pivot="app-attach"
101
101
> [!IMPORTANT]
102
102
>
103
103
> - All MSIX and Appx application packages include a certificate. You're responsible for making sure the certificates are trusted in your environment. Self-signed certificates are supported with the appropriate chain of trust.
104
104
>
105
-
> - You have to choose whether you want to use MSIX app attach or app attach with a host pool. You can't use both versions with the same host pool.
105
+
> - You have to choose whether you want to use MSIX app attach or app attach with a host pool. You can't use both versions with the same package in the same host pool.
106
106
::: zone-end
107
107
108
108
::: zone pivot="msix-app-attach"
@@ -192,12 +192,13 @@ Here's how to add an MSIX or Appx image as an app attach package using the [Az.D
192
192
Your output should be similar to the following output:
193
193
194
194
```output
195
-
CommandType Name Version Source
196
-
----------- ---- ------- ------
197
-
Function Get-AzWvdAppAttachPackage 4.2.0 Az.DesktopVirtualization
198
-
Function New-AzWvdAppAttachPackage 4.2.0 Az.DesktopVirtualization
199
-
Function Remove-AzWvdAppAttachPackage 4.2.0 Az.DesktopVirtualization
200
-
Function Update-AzWvdAppAttachPackage 4.2.0 Az.DesktopVirtualization
195
+
CommandType Name Version Source
196
+
----------- ---- ------- ------
197
+
Function Get-AzWvdAppAttachPackage 4.2.1 Az.DesktopVirtualization
198
+
Function Import-AzWvdAppAttachPackageInfo 4.2.1 Az.DesktopVirtualization
199
+
Function New-AzWvdAppAttachPackage 4.2.1 Az.DesktopVirtualization
200
+
Function Remove-AzWvdAppAttachPackage 4.2.1 Az.DesktopVirtualization
201
+
Function Update-AzWvdAppAttachPackage 4.2.1 Az.DesktopVirtualization
201
202
```
202
203
203
204
3. Get the properties of the image you want to add and store them in a variable by running the following command. You need to specify a host pool, but it can be any host pool where session hosts have access to the file share.
@@ -207,10 +208,10 @@ Here's how to add an MSIX or Appx image as an app attach package using the [Az.D
5. Add the image as an app attach package by running the following command. In this example, the [application state](app-attach-overview.md#application-state) is marked as *active*, the [application registration](app-attach-overview.md#application-registration) is set to **on-demand**, and [session host health check status](troubleshoot-statuses-checks.md) on failure is set to **NeedsAssistance**:
@@ -243,12 +244,12 @@ Here's how to add an MSIX or Appx image as an app attach package using the [Az.D
1. Update an existing package by running the following command. The new disk image supersedes the existing one, but existing assignments are kept. Don't delete the existing image until users have stopped using it.
@@ -631,10 +633,9 @@ Here's how to update an existing package using the [Az.DesktopVirtualization](/p
0 commit comments