vote up 3 vote down star
1

How to ping a computer if the computer name starts with dash "-"

flag
1  
i wouldn't recommend closing this question. Yes it's not directly programming related, but it could be. Sumesh might be writing a program which checks if a server is online or not. In any case, the answer will be short and definitive. – nickf Mar 23 at 2:10

3 Answers

vote up 0 vote down

What about using an IP address?

link|flag
vote up 2 vote down

On Windows:

Try escaping out the dash with a backslash ('\') character:

ping \-<hostname>.<domain>
link|flag
vote up 10 vote down

On *nix, use a "--" to allow an argument beginning with a dash:

ping -- -funkyhost

(This probably won't help on Windows, though, because Windows command-line parsing is kind of rudimentary)

On another side note, well-formed DNS names are not allowed to start with a hyphen.

link|flag
1  
+1 for noting that valid RFC-compliant hostnames cannot start (or end) with a hyphen. – tvanfosson Mar 23 at 2:30
Same with underscore, you can have it in a Windows computer name, but it's not an RFC-compliant host name, so I stay away from using it. – Bratch Mar 23 at 2:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.