The error:
Initialization of container bcsandbox failed
At C:\Program Files\WindowsPowerShell\Modules\BcContainerHelper\3.0.11\ContainerHandling\Wait-NavContainerReady.ps1:42 char:17
+ ... throw "Initialization of container $containerName failed" ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : OperationStopped: (Initialization ...csandbox failed:String) [], RuntimeException
+ FullyQualifiedErrorId : Initialization of container bcsandbox failed
Why does this error come up? I used the BcContainerHelper to make the powershell script:
$containerName = 'bcsandbox'
$credential = Get-Credential -Message 'Using UserPassword authentication. Please enter credentials for the container.'
$auth = 'UserPassword'
$artifactUrl = Get-BcArtifactUrl -type 'Sandbox' -country 'us' -select 'Latest'
$licenseFile = ' '
New-BcContainer `
-accept_eula `
-containerName $containerName `
-credential $credential `
-auth $auth `
-artifactUrl $artifactUrl `
-multitenant:$false `
-licenseFile $licenseFile `
-includeAL -doNotExportObjectsToText `
-updateHosts
-myscripts @("">raw.githubusercontent.com/.../HelperFunctions.ps1")