Passaggio all'ora legale 29 marzo 2026 02:00 03:00 sposta avanti l'orologio di 1 ora (si dorme 1 ora in meno)
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:
PowerShell205 Script85
Potrebbe interessarti anche: