Skip to content

Commit

Permalink
CreateVMFleetImage -> CreateVMFleetDisk
Browse files Browse the repository at this point in the history
  • Loading branch information
jaromirk committed Sep 27, 2021
1 parent 64b3253 commit 318687e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Scenarios/AzSHCI and VMFleet/Scenario.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
}

#Ask for VHD
Write-Output "Please select VHD created using CreateVMFleetImage"
Write-Output "Please select VHD created using CreateVMFleetDisk.ps1"
[reflection.assembly]::loadwithpartialname("System.Windows.Forms")
$openFile = New-Object System.Windows.Forms.OpenFileDialog -Property @{
Title="Please select VHD created by convert-windowsimage. Click cancel if you want to create it"
Title="Please select VHD created using CreateVMFleetDisk.ps1"
}
$openFile.Filter = "vhdx files (*.vhdx)|*.vhdx|All files (*.*)|*.*"
If($openFile.ShowDialog() -eq "OK"){
Expand Down
2 changes: 1 addition & 1 deletion Scripts/1_Prereq.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ function Get-WindowsBuildNumber {
}

# add createparentdisks, DownloadLatestCU and PatchParentDisks scripts to Parent Disks folder
$FileNames="CreateParentDisk","DownloadLatestCUs","PatchParentDisks","CreateVMFleetImage"
$FileNames="CreateParentDisk","DownloadLatestCUs","PatchParentDisks","CreateVMFleetDisk"
foreach ($filename in $filenames){
$Path="$PSScriptRoot\ParentDisks\$FileName.ps1"
If (Test-Path -Path $Path){
Expand Down
File renamed without changes.

0 comments on commit 318687e

Please sign in to comment.