mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-14 22:09:26 +00:00
11 lines
451 B
PowerShell
11 lines
451 B
PowerShell
####################################################################################
|
|
## File: Install-AzureCosmosDbEmulator.ps1
|
|
## Desc: Install Azure CosmosDb Emulator
|
|
####################################################################################
|
|
|
|
Import-Module -Name ImageHelpers -Force
|
|
|
|
$InstallerName = "AzureCosmosDBEmulator.msi"
|
|
$InstallerUrl = "https://aka.ms/cosmosdb-emulator"
|
|
|
|
Install-Binary -Url $InstallerUrl -Name $InstallerName |