How to pass a value that has ampersand (&) and possibly other characters. the following powershell script fails
$groupname = "owtest"
$tags = @()
$key="test"
$value="some=&this&that"
$tags += "$key=$value"
$creation = az pipelines variable-group create --name $groupname --variables $tags --only-show-errors
Is there a workaround to allow the ampersand embedded character?