We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I don't know how to make a commit on GitHub, so I will just comment here:
I have changed the following line :
$Service = $PortsHashTable.Get_Item($Job_Result.Port).Split('|')
To this :
if ($PortsHashTable.Get_Item($Job_Result.Port)) { $Service = $PortsHashTable.Get_Item($Job_Result.Port).Split('|') } else { $service = @("Unknown","Unknown") }
This is because there are $null errors for certain SharePoint ports, which messes up the output in the console window.
The text was updated successfully, but these errors were encountered:
97ee2fd
Thanks!
Sorry, something went wrong.
No branches or pull requests
I don't know how to make a commit on GitHub, so I will just comment here:
I have changed the following line :
$Service = $PortsHashTable.Get_Item($Job_Result.Port).Split('|')
To this :
This is because there are $null errors for certain SharePoint ports, which messes up the output in the console window.
The text was updated successfully, but these errors were encountered: