En este link podrán encontrar una lista detallada de los eventos de auditoría que se incluyen en Windows Server 2016 y Windows 10.
Windows 10 and Windows Server 2016 security auditing and monitoring reference
Cloud and Datacenter Management

netsh wlan show profileEste comando nos mostrará el profile de las redes a las que nos hemos conectado.
netsh wlan show profile WiFi-name key=clearEn la opción Key Content de Security Settings podemos ver la contraseña.
(netsh wlan show profiles) | Select-String "\:(.+)$" | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | %{(netsh wlan show profile name="$name" key=clear)} | Select-String "Key Content\W+\:(.+)$" | %{$pass=$_.Matches.Groups[1].Value.Trim(); $_} | %{[PSCustomObject]@{ PROFILE_NAME=$name;PASSWORD=$pass }} | Format-Table -AutoSize

$snapshot = Checkpoint-VM -Name W12R2DC -SnapshotName DC-18082017 -Passthru
$export = Export-VMSnapshot -VMSnapshot $snapshot -Path G:\Export –Passthru
