Overblog Tous les blogs Top blogs Technologie & Science Tous les blogs Technologie & Science
Suivre ce blog Administration + Créer mon blog
MENU

[Bitlocker] Use PowerShell to get the recovery key

Publié le par damcuvelier

Get-BitLockerVolume | ForEach-Object { $MountPoint = $_.MountPoint $RecoveryKey = [string]($_.KeyProtector).RecoveryPassword if ($RecoveryKey.Length -gt 5) { Write-Output ("$MountPoint recovery key is $RecoveryKey.") } }

Lire la suite

[Bitlocker] save key

Publié le par damcuvelier

$ADBegup = Get-BitLockerVolume -MountPoint "C:" Backup-BitLockerKeyProtector -MountPoint "C:" -KeyProtectorId $ADBegup.KeyProtector[1].KeyProtectorId

Lire la suite

[Powershell] Désactiver le service de mises-à-jour (Windows Update)

Publié le par damcuvelier

# BDR $RegKey = 'HKLM:\SYSTEM\CurrentControlSet\Services\wuauserv' # Nom de la BDR $ServiceName = 'Windows Update' $DisplayName = (Get-Service | Where{ $_.DisplayName -eq $ServiceName }).DisplayName Stop-Service -Name wuauserv -Force Set-Itemproperty...

Lire la suite

2 SCCM Powershell Scripts

Publié le par damcuvelier

1. Getting a list of devices from a device collection using powershell: Get-CMDevice -CollectionName | Select Name 2. Connecting to SCCM Using PowerShell: Import-Module "C:\Program Files (x86)\Microsoft Configuration Manager\AdminConsole\bin\ConfigurationManager.psd1"...

Lire la suite

[Windows] [Cryptologie] Crypter vos dossiers et fichiers

Publié le par damcuvelier

Un outil très utile pour crypter vos dossiers et fichiers: AxCrypt Cet outil permet de crypter individuellement vos dossiers et fichiers. Sinon, pour vérouiller l'accès à un repertoire ou un fichier de sorte qu'il ne soit plus visible, il y a FolderLock....

Lire la suite

<< < 10 11 12 13 14 15 16 17 18 19 20 30 40 > >>