# Update Test Manager local deployment

> Update a standalone Test Manager local deployment to the latest version by downloading new packages and running the update script via Windows PowerShell.

To update Test Manager to the latest version, download the new packages found in the [Requirements section](https://docs.uipath.com/test-manager/standalone/2025.10/installation-guide/test-manager-local-azure-resource-manager-deployment).

Open Windows PowerShell and run the `TestManagerLocalDeploymentWrapper.ps1` script with the `-Update` flag and then supply the following parameters.

| Parameter | Description |
| --- | --- |
| **webAppName** | The name of the Azure Web App resource where UiPath Test Manager will be installed. |
| **resourceGroupName** | The name of the Azure Resource Group where UiPath Test Manager will be installed. |

## Script example

In the following example, the local deployment script is executed to install Test Manager given that the [resources have been provisioned](https://docs.uipath.com/test-manager/standalone/2025.10/installation-guide/test-manager-local-azure-resource-manager-deployment).

1. Use the `az login` to log in to your Azure environment.
2. Run the `TestManagerLocalDeploymentWrapper.ps1` script and then supply the following parameters.
   ```
   .\TestManagerLocalDeploymentWrapper.ps1
   -webAppName "tmh-test"
   -resourceGroupName "tmh-testing"
   -update
   ```
