Sto provando a creare un file batch che eseguirà il ping di una variabile determinata dall'input dell'utente
per esempio. "Inserisci nome PC:" nome pc = 123
Quindi esegue 123.domain.com
@echo off
set /p UserInputPath = Enter chosen PC:
ping %UserInputPath%
ping MyServerName
PAUSE
Ping MyServerName
funziona bene
Ma ping %UserInputPath%
non fa e mostra solo il menu "Aiuto" per Ping in CMD
Qualsiasi aiuto sarebbe apprezzato ::::MODIFICARE:::
ping %UserInputPath% -n 5
Restituisce questo errore: IP address must be specified.
Non puoi eseguire il ping di un nome host? (COME questo è quello che sto cercando di fare)
EDIT 2 ::
Questo è il mio ultimo:
@echo off
set /p UserInputPath = "Enter chosen PC: "
PAUSE
ping %UserInputPath%.store.domain.company.com
ping MyServerName
PAUSE
ping %UserInputPath%.store.domain.company.com
, qual è esattamente l'input dell'utente? Se metti un echo %UserInputPath%.store.domain.company.com
cosa stampa?