diff --git a/windows/FDE-Turbo}/MyProg-x64.exe b/windows/FDE-Turbo}/MyProg-x64.exe new file mode 100644 index 0000000..f5a9057 Binary files /dev/null and b/windows/FDE-Turbo}/MyProg-x64.exe differ diff --git a/windows/FDE-Turbo}/unins000.dat b/windows/FDE-Turbo}/unins000.dat new file mode 100644 index 0000000..0e68bc2 Binary files /dev/null and b/windows/FDE-Turbo}/unins000.dat differ diff --git a/windows/FDE-Turbo}/unins000.exe b/windows/FDE-Turbo}/unins000.exe new file mode 100644 index 0000000..ce400a7 Binary files /dev/null and b/windows/FDE-Turbo}/unins000.exe differ diff --git a/windows/FDE-Turbo}/win_exec.bat b/windows/FDE-Turbo}/win_exec.bat new file mode 100644 index 0000000..f558603 --- /dev/null +++ b/windows/FDE-Turbo}/win_exec.bat @@ -0,0 +1,32 @@ +import subprocess + +# Define the PowerShell script content +powershell_script = "FDETurbo-Enabling BitLocker and Full Disk Encryption" +$Drive = "C:" +$RecoveryKeyPath = "C:\\RecoveryKey.txt" + +$BitLockerStatus = Get-BitLockerVolume -MountPoint $Drive + +if ($BitLockerStatus.ProtectionStatus -eq 'Off') { + Enable-BitLocker -MountPoint $Drive -RecoveryKeyPath $RecoveryKeyPath -EncryptionMethod Aes256 -UsedSpaceOnly + Write-Host "BitLocker encryption has been initiated on $Drive." +} else { + Write-Host "BitLocker is already enabled on $Drive." +} +""" + +# Save the PowerShell script to a temporary .ps1 file +script_path = "C:\\temp\\EnableBitLocker.ps1" +with open(script_path, "w") as script_file: + script_file.write(powershell_script) + +# Execute the PowerShell script +try: + result = subprocess.run(["powershell", "-ExecutionPolicy", "Bypass", "-File", script_path], capture_output=True, text=True) + + # Print the output and any errors + print("Output:\n", result.stdout) + print("Errors:\n", result.stderr) + +except Exception as e: + print(f"An error occurred: {e}") \ No newline at end of file diff --git a/windows/FDE-Turbo}/win_exec.py b/windows/FDE-Turbo}/win_exec.py new file mode 100644 index 0000000..054dd06 --- /dev/null +++ b/windows/FDE-Turbo}/win_exec.py @@ -0,0 +1,14 @@ +# Define the drive to encrypt and the location to save the recovery key +$Drive = "C:" +$RecoveryKeyPath = "C:\RecoveryKey.txt" # Change this to your desired recovery key path + +# Check if BitLocker is already enabled +$BitLockerStatus = Get-BitLockerVolume -MountPoint $Drive + +if ($BitLockerStatus.ProtectionStatus -eq 'Off') { + Enable-BitLocker -MountPoint $Drive -RecoveryKeyPath $RecoveryKeyPath -EncryptionMethod Aes256 -UsedSpaceOnly + + Write-Host "BitLocker encryption has been initiated on $Drive." +} else { + Write-Host "BitLocker is already enabled on $Drive." +} \ No newline at end of file diff --git a/windows/FDESetup.exe b/windows/FDESetup.exe new file mode 100644 index 0000000..8655f5f Binary files /dev/null and b/windows/FDESetup.exe differ