Downloading Azure Stack tools

Before starting the deployment, we will need to prepare the host. This will be done with the following PowerShell commands. It will download the necessary PowerShell scripts from GitHub:

    # Variables
     $Uri = 'https://raw.githubusercontent.com/Azure/AzureStack-
Tools/master/Deployment/'
$LocalPath = 'c:AzureStack_SupportFiles' # Create folder New-Item $LocalPath -type directory # Download files ( 'BootMenuNoKVM.ps1', 'PrepareBootFromVHD.ps1', 'Unattend.xml',
'unattend_NoKVM.xml') | `
foreach { Invoke-WebRequest ($uri + $_) -OutFile ($LocalPath +
'' + $_) }
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.118.163.158