Powershell: differenze tra le versioni
Jump to navigation
Jump to search
Nessun oggetto della modifica |
Nessun oggetto della modifica |
||
| Riga 9: | Riga 9: | ||
=sort= |
=sort= |
||
Sort-Object |
Sort-Object |
||
=nmap= |
|||
Test-NetConnection -ComputerName <indirizzo_ip_o_hostname> -Port <numero_porta> |
|||
tnc 192.168.1.1 -p 80 |
|||
[[Categoria:Windows]] |
[[Categoria:Windows]] |
||
Versione delle 10:33, 28 lug 2026
tail
Get-Content alert_orcl.log -Tail 200
grep
Select-String -Path "*.sql" -Pattern "xxx"
uniq
Select-Object -Unique -ExpandProperty Line
sort
Sort-Object
nmap
Test-NetConnection -ComputerName <indirizzo_ip_o_hostname> -Port <numero_porta>
tnc 192.168.1.1 -p 80