ALM in Power Platform
$SecurePassword = ConvertTo-SecureString 'pw123' -AsPlainText -Force
$creds = New-Object System.Management.Automation.PSCredential ('name@email.com', $SecurePassword)
$Connection = Get-CrmConnection -OnLineType OAuth -OrganizationName 'orgname' -DeploymentRegion 'Oceania' -Credential $creds
$EnvVariableId is the GUID of the environment variable
function Update-EnvVariable (
[Guid] $EnvVariableId,
[Microsoft.Xrm.Tooling.Connector.CrmServiceClient] $Connection
) {
$updateFields = @{ }
$updateFields.Add("value", $Value)
Set-CrmRecord -conn $Connection -Fields $updateFields -Id $EnvVariableId -EntityLogicalName "environmentvariablevalue"
}
Update-EnvVariable - $EnvVariableId -$Connection
Comments
Post a Comment