The above cURL commands runs on native Linux. If using Windows, you will need to run it from a PowerShell prompt as it allows curl commands as an alias to the native Invoke-WebRequest cmdlet that you can use as well. For example, Invoke-WebRequest -Uri https://<YourCustomDNSName>.sealights.co | Select-Object StatusCode,StatusDescription or, if using If a proxy , Invoke-WebRequest -Uri https://<YourCustomDNSName>.sealights.co -Proxy <Uri> | Select-Object StatusCode,StatusDescription is required, you can add -Proxy <Uri> parameter to the first part of the command. More details can be found in Microsoft’s Official documentation page. |