Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DeployTheNCAgent/DeployTheNCAgent.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ While ($rowid -lt $CustomerList.Count -and $found -eq $False)
If($rowitem.key -eq "customer.registrationtoken")
{
$RetrievedRegistrationToken = $rowitem.value
If($RetrievedRegistrationToken -eq "")
If([string]::IsNullOrWhitespace($RetrievedRegistrationToken))
{
"Note that a valid Registration Token was not returned even though the customer was found. This happens when an agent install has never been downloaded for that customer. Try to download an agent from the N-Central UI and run this script again"
}
Expand Down