diff --git a/Utility Scripts/Re-enable Bitlocker Pin & Reboot.ps1 b/Utility Scripts/Re-enable Bitlocker Pin & Reboot.ps1 new file mode 100644 index 0000000..03fbf84 --- /dev/null +++ b/Utility Scripts/Re-enable Bitlocker Pin & Reboot.ps1 @@ -0,0 +1,15 @@ +<# +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 # \ No newline at end of file