PS C:\Windows\system32> .\ipconfig.exe
Configuration IP de Windows
Carte Ethernet Ethernet 2 :
Statut du média. . . . . . . . . . . . : Média déconnecté
Suffixe DNS propre à la connexion. . . :
Carte réseau sans fil Connexion au réseau local* 9 :
Statut du média. . . . . . . . . . . . : Média déconnecté
Suffixe DNS propre à la connexion. . . :
Carte réseau sans fil Connexion au réseau local* 10 :
Statut du média. . . . . . . . . . . . : Média déconnecté
Suffixe DNS propre à la connexion. . . :
Carte réseau sans fil Wi-Fi :
Suffixe DNS propre à la connexion. . . :
Adresse IPv6 de liaison locale. . . . .: fe80::8e8c:4de3:e3d9:81de%15
Adresse IPv4. . . . . . . . . . . . . .: 10.1.4.250
Masque de sous-réseau. . . . . . . . . : 255.255.255.0
Passerelle par défaut. . . . . . . . . : 10.1.4.1
PS C:\Windows\system32> .\NETSTAT.EXE -an | .\findstr.exe "LISTENING"
TCP 0.0.0.0:135 0.0.0.0:0 LISTENING
TCP 0.0.0.0:445 0.0.0.0:0 LISTENING
TCP 0.0.0.0:5040 0.0.0.0:0 LISTENING
TCP 0.0.0.0:5357 0.0.0.0:0 LISTENING
TCP 0.0.0.0:7680 0.0.0.0:0 LISTENING
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING
TCP 0.0.0.0:49664 0.0.0.0:0 LISTENING
TCP 0.0.0.0:49665 0.0.0.0:0 LISTENING
TCP 0.0.0.0:49666 0.0.0.0:0 LISTENING
TCP 0.0.0.0:49667 0.0.0.0:0 LISTENING
TCP 0.0.0.0:49668 0.0.0.0:0 LISTENING
TCP 0.0.0.0:49670 0.0.0.0:0 LISTENING
TCP 0.0.0.0:49911 0.0.0.0:0 LISTENING
TCP 10.1.4.250:139 0.0.0.0:0 LISTENING
TCP [::]:135 [::]:0 LISTENING
TCP [::]:445 [::]:0 LISTENING
TCP [::]:5357 [::]:0 LISTENING
TCP [::]:7680 [::]:0 LISTENING
TCP [::]:8080 [::]:0 LISTENING
TCP [::]:49664 [::]:0 LISTENING
TCP [::]:49665 [::]:0 LISTENING
TCP [::]:49666 [::]:0 LISTENING
TCP [::]:49667 [::]:0 LISTENING
TCP [::]:49668 [::]:0 LISTENING
TCP [::]:49670 [::]:0 LISTENING
TCP [::]:49911 [::]:0 LISTENING
TCP [::1]:49669 [::]:0 LISTENING
PS C:\Windows\system32> .\NETSTAT.EXE -an | .\findstr.exe "8080"
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING
TCP [::]:8080 [::]:0 LISTENING
PS C:\Windows\system32> .\tasklist.exe .\find.exe vlc
Erreur : Argument ou option non valide - « .\find.exe ».
Entrez "TASKLIST /?" pour afficher la syntaxe.
PS C:\Windows\system32> .\tasklist.exe find vlc
Erreur : Argument ou option non valide - « find ».
Entrez "TASKLIST /?" pour afficher la syntaxe.
PS C:\Windows\system32> .\tasklist.exe | find vlc
FIND : format incorrect de paramètre
PS C:\Windows\system32> .\tasklist.exe | .\find.exe vlc
FIND : format incorrect de paramètre
PS C:\Windows\system32> .\tasklist.exe | .\find.exe "vlc"
FIND : format incorrect de paramètre
PS C:\Windows\system32> tasklist | .\findstr.exe "vlc"
vlc.exe 7112 Console 1 286?948 Ko
PS C:\Windows\system32>