forked from NovoaDev/Dependency-Graph-BCExt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEnvironment.ps1
More file actions
22 lines (19 loc) · 728 Bytes
/
Environment.ps1
File metadata and controls
22 lines (19 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# container
$ContainerName = 'DependencyGraph'
$licenseFile = 'C:\License\Dev.bclicense'
# Image
$artifactUrl = Get-BCArtifactUrl -country "es" -version 23
# User
$UserName = 'User'
$Password = ConvertTo-SecureString "Pass123" -AsPlainText -Force
$Credential = New-Object System.Management.Automation.PSCredential ($UserName, $Password)
New-BCContainer -accept_eula `
-accept_outdated `
-updateHosts `
-containername $containername `
-licenseFile $licenseFile `
-artifactUrl $artifactUrl `
-auth NavUserPassword `
-Credential $credential `
-isolation hyperv `
-includeTestToolkit