Skip to content
Discussion options

You must be logged in to vote

This is happening because the extensions from the marketplace that are used in each of these do not currently exist.

@tomfrenzel created a Script to get a list of all of the extensions from the Source.

$sourceOrg = "org1"
$sourcePat = "abc"

$targetOrg = "org2"
$targetPat = "abc"

$sourcePair = "user:$($sourcePat)"
$sourecEncodedCreds = [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes($sourcePair))
$sourceBasicAuthValue = "Basic $sourecEncodedCreds"
$sourceHeaders = @{
    Authorization = $sourceBasicAuthValue
}

$targetPair = "user:$($targetPat)"
$targetEncodedCreds = [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes($targetPair))
$targetBasic…

Replies: 1 comment 4 replies

Comment options

MrHinsh
Mar 16, 2023
Maintainer Author

You must be logged in to vote
4 replies
@MiguelIsaza27
Comment options

@tomfrenzel
Comment options

@joshmurari
Comment options

@tomfrenzel
Comment options

Answer selected by MrHinsh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
4 participants