mirror of
https://github.com/actions/runner-images.git
synced 2026-01-06 18:19:54 +08:00
Add FS-iSCSITarget-Server (#805)
This commit is contained in:
committed by
GitHub
parent
b58720bb05
commit
6d18844796
@@ -61,6 +61,15 @@ Install-WindowsFeature -Name NET-Framework-45-Features -IncludeAllSubFeature
|
|||||||
Install-WindowsFeature -Name BITS -IncludeAllSubFeature
|
Install-WindowsFeature -Name BITS -IncludeAllSubFeature
|
||||||
Install-WindowsFeature -Name DSC-Service
|
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"
|
Write-Host "Disable UAC"
|
||||||
Disable-UserAccessControl
|
Disable-UserAccessControl
|
||||||
|
|
||||||
|
|||||||
@@ -57,6 +57,14 @@ Install-WindowsFeature -Name NET-Framework-Features -IncludeAllSubFeature
|
|||||||
# Explicitly install all 4.7 sub features to include ASP.Net.
|
# 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
|
# 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-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"
|
Write-Host "Disable UAC"
|
||||||
Disable-UserAccessControl
|
Disable-UserAccessControl
|
||||||
|
|||||||
Reference in New Issue
Block a user