hey guys,
i want to implemente Bitlocker in our notebook OSD (windows 7).
My first try didn't work correct.
I have built three packages. They are executed sequentially.
What is my mistake?
You have any Ideas?
Thanks a lot
Niklas
1. bitlocker_tpm_enable
batch package
Sourcecode:
@echo off
manage-bde -tpm -t>>tpm_aktivieren_log.txt
exit /B 0
2. bitlocker_tpm_owner
Integrated Landesk executable:
http://%Coreserver%/landesk/files/LDSetTPM.exe
3. bitlocker_start
Batchfile who start the encryption and set the password:
Sourcecode:
@echo off
manage-bde -on c: -RecoveryPassword -TPMandPin %password% -SkipHardwareTest>>bitlocker-log.txt
exit /B 0