sysadmin:abilitare_bitlooker
Differences
This shows you the differences between two versions of the page.
sysadmin:abilitare_bitlooker [11/06/2017 07:11] – external edit 127.0.0.1 | sysadmin:abilitare_bitlooker [20/12/2021 05:44] (current) – lrosa | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Abilitare BitLooker ====== | ||
+ | |||
+ | Per default BitLooker non viene abilitato sui job quando si aggiorna dalla 8 alla 9. | ||
+ | |||
+ | Questo script visualizza lo stato di BitLooker nei job; se viene tolto il commento abilita Bitlooker. | ||
+ | |||
+ | <code powershell> | ||
+ | asnp VeeamPSSNapin | ||
+ | foreach ($Job in Get-VBRJob | where {$_.JobType -eq " | ||
+ | $Options = $Job.GetOptions() | ||
+ | # | ||
+ | Write-Host $Job.Name " - " $Options.ViSourceOptions.DirtyBlocksNullingEnabled | ||
+ | $Job.SetOptions($Options) | ||
+ | } | ||
+ | </ | ||