< Back

Resume-BitLocker

Tue Jan 29, 2019 10:13 pm

NAME Resume-BitLocker



SYNOPSIS

Restores Bitlocker encryption for the specified volume.





SYNTAX

Resume-BitLocker [-MountPoint] <String[]> [-Confirm] [-WhatIf] [<CommonParameters>]





DESCRIPTION

The Resume-BitLocker cmdlet restores encryption on a volume that uses BitLocker Drive Encryption. You can use the Suspend-BitLocker cmdlet to

allow users to access encrypted data temporarily. Data written to the volume continues to be encrypted, but the key to unlock the operating system

volume is in the open.



You can specify a volume by drive letter, or you can specify a BitLocker volume object. If you specify a BitLocker volume that is not suspended,

this cmdlet has no effect on that volume.



For an overview of BitLocker, see BitLocker Drive Encryption Overview (http://technet.microsoft.com/en-us/libr ... 32774.aspx) on TechNet.





PARAMETERS

-MountPoint <String[]>

Specifies an array of drive letters or BitLocker volume objects. This cmdlet resumes protection for the volumes specified. To obtain a

BitLocker volume object, use theGet-BitLockerVolume cmdlet.



Required? true

Position? 1

Default value

Accept pipeline input? True (ByValue, ByPropertyName)

Accept wildcard characters? false



-Confirm [<SwitchParameter>]

Prompts you for confirmation before running the cmdlet.



Required? false

Position? named

Default value false

Accept pipeline input? false

Accept wildcard characters? false



-WhatIf [<SwitchParameter>]

Shows what would happen if the cmdlet runs. The cmdlet is not run.



Required? false

Position? named

Default value false

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

BitLockerVolume[], String[]







OUTPUTS

BitLockerVolume[]







Example 1: Resume protection for a volume



PS C:\\> Resume-BitLocker -MountPoint "C:"



This command resumes BitLocker protection for the C: drive.

Example 2: Resume protection for all volumes on a computer



PS C:\\>Get-BitLockerVolume | Resume-BitLocker



This command gets all the BitLocker volumes for the current computer by using the Get-BitLockerVolume cmdlet and passes them to Resume-BitLocker

by using the pipe operator. The command restores protection for all BitLocker volumes.



RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?linkid=287657

Disable-BitLocker

Enable-BitLocker

Lock-BitLocker

Suspend-BitLocker

Unlock-BitLocker

Get-BitLockerVolume