>Important: Please do not run TrueCrypt 4.2a and earlier versions under Windows Vista > (those versions were not designed to run on Windows Vista). >A version for Windows Vista will be released shortly.
encaseとdrivecryptでググるといくつかヒットするね。DriveCriptて > No, what it means is that Encase can get the data from an encrypted hard > disk IF AND ONLY IF it is already up and running with the password having > been entered.
↓SecurStarのサイトから引用 1. Strong Cryptography 1344 Bit Military Strength disk encryption using the best and most proven cryptographic algorithms such as AES, Blowfish, Tea 16, Tea 32, Des, Triple Des, Misty 1 and Square.
Please assign a drive letter to the partition/device before proceeding ('Control Panel' > 'System and Maintenance' > 'Administrative Tools' - 'Create and format hard disk partitions').
1344 Bit Military Strength disk encryption using the best and most proven cryptographic algorithms such as AES, Blowfish, Tea 16, Tea 32, Des, Triple Des, Misty 1 and Square.
【CryptDriveMount.vbs】(もちろん名前はテキトーでOK) Const KeyFilePath = "KeyData\TrueCrypt.key" Set Fs = WScript.CreateObject("Scripting.FileSystemObject") Set drvs=Fs.Drives For Each DriveInfo In drvs l=DriveInfo.DriveLetter fullPath = l & ":\" & KeyFilePath If Fs.FileExists(fullPath) Then MsgBox "キーファイル「" & fullPath & "」を使用して、" & chr(13) & "ドライブ「TrueCrypt」をマウントします", vbOKOnly, "TrueCryptマウント" Set WSHShell = WScript.CreateObject("WScript.Shell") WSHShell.Run """C:\Program Files\TrueCrypt\TrueCrypt.exe"" /v ""ボリュームファイルへのフルパス"" /l R /a /q /k " & fullPath WScript.Quit End If Next MsgBox "「TrueCrypt」マウント用キーファイルが見つかりません", vbOKOnly, "TrueCryptマウント失敗"