Install
openclaw skills install truecrypt-cliUse installed TrueCrypt on Windows to mount, dismount, inspect, and automate legacy TrueCrypt containers or encrypted partitions from the command line. Trigger when a user specifically wants TrueCrypt rather than VeraCrypt, asks for TrueCrypt CLI syntax, wants a batch/PowerShell command for mounting or dismounting, needs to check whether TrueCrypt is installed, or wants help scripting safe non-destructive TrueCrypt operations.
openclaw skills install truecrypt-cliUse this skill when the user explicitly wants to work with installed TrueCrypt on Windows, especially version 7.1a, instead of being redirected to VeraCrypt.
TrueCrypt.exe exists before giving machine-specific commands./p because command-line passwords may be exposed to process listings, logs, or shell history.First, locate the binary. Common paths:
C:\Program Files\TrueCrypt\TrueCrypt.exe
C:\Program Files (x86)\TrueCrypt\TrueCrypt.exe
PowerShell check:
$tc = @(
'C:\Program Files\TrueCrypt\TrueCrypt.exe',
'C:\Program Files (x86)\TrueCrypt\TrueCrypt.exe'
) | Where-Object { Test-Path $_ } | Select-Object -First 1
If nothing is found there, fall back to Get-Command TrueCrypt.exe.
Use the cookbook in references/commands.md for exact examples.
High-confidence operations:
/v and /l/d X/d/q for quiet mode/k for keyfiles when needed/m for mount options when explicitly requiredPrefer examples like:
"C:\Program Files\TrueCrypt\TrueCrypt.exe" /v "C:\path\container.tc" /l X /q
"C:\Program Files\TrueCrypt\TrueCrypt.exe" /d X /q
"C:\Program Files\TrueCrypt\TrueCrypt.exe" /d /q
Depending on the request, provide one of these: