Passaggio all'ora solare 26 ottobre 2025 03:00 02:00 sposta indietro l'orologio di 1 ora (si dorme 1 ora in più)
Un esempio PowerShell di come elencare solo i file presenti in una cartella

PowerShell

Get-ChildItem C:\ | Where-Object {-not ($_.mode -match "d")}
oppure solo le directory (tolto keyword -not)

PowerShell

Get-ChildItem C:\ | Where-Object {$_.mode -match "d"}
Tags:
PowerShell204 Script85
Potrebbe interessarti anche: