Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions lab-guides/01-AzureLocalCloudDeployment/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,6 @@ Since we already have credentials and TrustedHosts configured in Powershell from
#install modules (Not needed with latest media
<#
Invoke-Command -ComputerName $Servers -Scriptblock {
Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

according to docs this seems to be part of the ISO. I have tested this and it seems in fact not required anymore in 2507 and 2508

Install-Module PowerShellGet -AllowClobber -Force
Install-Module -Name AzStackHci.EnvironmentChecker -Force
} -Credential $Credentials
Expand Down Expand Up @@ -473,7 +472,6 @@ $LCMCredentials= New-Object System.Management.Automation.PSCredential ($LCMUserN

#create objects for Azure Local in Active Directory
#install posh module for prestaging Active Directory
Install-PackageProvider -Name NuGet -Force
Install-Module AsHciADArtifactsPreCreationTool -Repository PSGallery -Force

#make sure active directory module and GPMC is installed
Expand Down Expand Up @@ -501,7 +499,6 @@ $Location="eastus" #list of supported regions: https://learn.microsoft.com/en-us

#login to azure
#download Azure module
Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force
if (!(Get-InstalledModule -Name az.accounts -ErrorAction Ignore)){
Install-Module -Name Az.Accounts -Force
}
Expand Down