Skip to content

Commit

Permalink
Add FS-iSCSITarget-Server (actions#805)
Browse files Browse the repository at this point in the history
  • Loading branch information
al-cheb authored and Mikhail Timofeev committed May 14, 2020
1 parent 33e02ac commit 1f5269c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
9 changes: 9 additions & 0 deletions images/win/scripts/Installers/Windows2016/Initialize-VM.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,15 @@ Install-WindowsFeature -Name NET-Framework-45-Features -IncludeAllSubFeature
Install-WindowsFeature -Name BITS -IncludeAllSubFeature
Install-WindowsFeature -Name DSC-Service

# Install FS-iSCSITarget-Server
$fsResult = Install-WindowsFeature -Name FS-iSCSITarget-Server -IncludeAllSubFeature -IncludeManagementTools
if ( $fsResult.Success ) {
Write-Host "FS-iSCSITarget-Server has been successfully installed"
} else {
Write-Host "Failed to install FS-iSCSITarget-Server"
exit 1
}

Write-Host "Disable UAC"
Disable-UserAccessControl

Expand Down
8 changes: 8 additions & 0 deletions images/win/scripts/Installers/Windows2019/Initialize-VM.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,14 @@ Install-WindowsFeature -Name NET-Framework-Features -IncludeAllSubFeature
# Explicitly install all 4.7 sub features to include ASP.Net.
# As of 1/16/2019, WinServer 19 lists .Net 4.7 as NET-Framework-45-Features
Install-WindowsFeature -Name NET-Framework-45-Features -IncludeAllSubFeature
# Install FS-iSCSITarget-Server
$fsResult = Install-WindowsFeature -Name FS-iSCSITarget-Server -IncludeAllSubFeature -IncludeManagementTools
if ( $fsResult.Success ) {
Write-Host "FS-iSCSITarget-Server has been successfully installed"
} else {
Write-Host "Failed to install FS-iSCSITarget-Server"
exit 1
}

Write-Host "Disable UAC"
Disable-UserAccessControl
Expand Down

0 comments on commit 1f5269c

Please sign in to comment.