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
Remove-ADGroupMember -Identity "DocumentReaders" -Member "WilsonPais","administrator"
w32tm /config /manualpeerlist:pool.ntp.org /syncfromflags:MANUAL2. Para forzar la sincronización ejecute el siguiente comando de PowerShell:
Stop-Service w32time
Start-Service w32time
w32tm /resync3. Verifique que estatus de la sincronización con el siguiente comando:
w32tm /query /status