If you want to be able to set the local admin password but also leave the possibility to make it blank, edit the following file \scripts\DeployWiz_Validation.vbs:
' Validate Password'
Function ValidatePassword
ValidatePassword = TRUE
NonMatchPassword.style.display = "none"
If Password1.Value <> "" then
If Password1.Value <> Password2.Value then
ValidatePassword = FALSE
' Validate Password'
Function ValidatePassword
ValidatePassword = TRUE
NonMatchPassword.style.display = "none"
If Password1.Value <> "" then
If Password1.Value <> Password2.Value then
ValidatePassword = FALSE
NonMatchPassword.style.display = "inline"
End if
End if
ButtonNext.Disabled = not ValidatePassword
End Function
Namaste.
End if
ButtonNext.Disabled = not ValidatePassword
End Function
Namaste.
