Skip to content

Commit bdf00a9

Browse files
Fixed issue with network path testing: issue #34
1 parent a346358 commit bdf00a9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Agent/Lib/InstallAgent-Core.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2475,7 +2475,7 @@ function SelectInstallers {
24752475
ForEach-Object {
24762476
$CurrentSourceName = $_
24772477
$CurrentSource = $Install.Sources.$_
2478-
if (($CurrentSourceName -eq "Network") -and ($Install.NETLOGONAccess -eq $false)) {
2478+
if (($CurrentSourceName -eq "Network" -or $CurrentSourceName -eq "Sysvol") -and ($Install.NETLOGONAccess -eq $false)) {
24792479
$CurrentSource.Available = $false
24802480
$CurrentSource.AgentFound = $false
24812481
$CurrentSource.AgentValid = $false

0 commit comments

Comments
 (0)