Lupik2, ценник в том, что eset рабочий вариант стало слишком трудно находить. Поэтому нехорошо светить. Ander_73, вполне согласен, может лучше удалить посты. Я не могу этого сделать.
_________________ Signed off for violation of forum rules
В связи с автокриптирование битлокером сделал для себя мелкую утилитку для отключения битлокера на всех устройств с последующим запретом автокриптирования. PreventBitlocker.exe Added later21 minute 30 seconds: Пользует PS скрипт:
скрипт
# Decrypting all disks $bitlockerVolumes = Get-BitLockerVolume foreach ($volume in $bitlockerVolumes) { # Turn Off BitLocker for devices Disable-BitLocker -MountPoint $volume.MountPoint # Waiting for decryption to complete. Write-Output "Decrypting volume $($volume.MountPoint). Please wait..." while ((Get-BitLockerVolume -MountPoint $volume.MountPoint).VolumeStatus -ne 'FullyDecrypted') { Start-Sleep -Seconds 10 } Write-Output "Volume $($volume.MountPoint) has been fully decrypted." } Write-Output "All volumes have been decrypted." $registryPath = "HKLM:\SOFTWARE\Policies\Microsoft\FVE" $regProperty = "FDVDenyWriteAccess" if (-not (Test-Path $registryPath)) { New-Item -Path $registryPath -Force | Out-Null } Set-ItemProperty -Path $registryPath -Name $regProperty -Value 1 Write-Output "BitLocker encryption has been disabled and re-encryption has been prohibited."
_________________ Signed off for violation of forum rules
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum