15 lines
263 B
PowerShell
15 lines
263 B
PowerShell
<#
|
|
Author: Gabe Kerntke
|
|
Date: 02-20-2025
|
|
|
|
.Synopsis
|
|
Script enables Bitlocker and then force restarts the computer
|
|
|
|
.Modified
|
|
2025-02-20 (GabeK) - Original script created
|
|
#>
|
|
|
|
# Start Script #
|
|
Manage-bde -Protectors -Enable C:
|
|
Restart-Computer -Force
|
|
# End Script # |