0

I was referring to How to fix ERR_UNSAFE_PORT error on Chrome when browsing to unsafe ports, but while appending --explicitly-allowed-ports=6000 to shortcut target, it's showing the error message below while appending --explicitly-allowed-ports=6000 to the shortcut target path:

error

Anu
  • 1

1 Answers1

3

Take out the --explicitly-allowed-ports=6000 flag out of the quotes around the target path.

Target should look like this:

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --explicitly-allowed-ports=6000
nick064
  • 81