{"id":20690961,"url":"https://github.com/bananaacid/veracrypt-cmd","last_synced_at":"2026-05-01T03:31:19.145Z","repository":{"id":99896567,"uuid":"130419182","full_name":"BananaAcid/VeraCrypt-Cmd","owner":"BananaAcid","description":"Find VeraCrypt mounts and drive letter.","archived":false,"fork":false,"pushed_at":"2019-04-19T22:12:40.000Z","size":35,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-14T07:47:20.696Z","etag":null,"topics":["bash","commandline","encryption","truecrypt","veracrypt"],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BananaAcid.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2018-04-20T22:26:11.000Z","updated_at":"2019-04-19T22:12:41.000Z","dependencies_parsed_at":"2023-05-16T17:00:43.660Z","dependency_job_id":null,"html_url":"https://github.com/BananaAcid/VeraCrypt-Cmd","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/BananaAcid/VeraCrypt-Cmd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BananaAcid%2FVeraCrypt-Cmd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BananaAcid%2FVeraCrypt-Cmd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BananaAcid%2FVeraCrypt-Cmd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BananaAcid%2FVeraCrypt-Cmd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BananaAcid","download_url":"https://codeload.github.com/BananaAcid/VeraCrypt-Cmd/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BananaAcid%2FVeraCrypt-Cmd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32484352,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bash","commandline","encryption","truecrypt","veracrypt"],"created_at":"2024-11-16T23:14:52.848Z","updated_at":"2026-05-01T03:31:19.140Z","avatar_url":"https://github.com/BananaAcid.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vera Crypt mount finder commandline tool\n\nDownload binary only: [bin/Release/VeraCrypt Cmd.exe](https://github.com/BananaAcid/VeraCrypt-Cmd/blob/master/bin/Release/VeraCrypt%20Cmd.exe?raw=true) \n\n__Source code and binary__\n\n    C:\\VeraCrypt Cmd\\bin\\Release\u003e VeraCrypt Cmd.exe\n    VeraCrypt Cmd v.1.1.0.0\n    Find VeraCrypt mounts and drive letters.\n    VeraCrypt must be installed. Use /x for extended info, /json for json output, /csv for comma seperated values\n     \n    letter  Mount source (volumeName)\n    K       \\??\\C:\\Users\\BananaAcid\\test.vc\n    M       \\??\\C:\\Users\\BananaAcid\\test 2.vc\n\n\n- `/x` get extended infos: letter, truecryptMode, diskLength, volumeLabel, volumeName\n- `/text` is the default, generate user readable output\n- `/json` sets the output to generate JSON, no info header\n- `/csv` sets the output to generate properly escaped CSV, no info header\n\n_truecryptMode_: if vera crypt loaded a TrueCrypt container in compatibility mode\n\n\nVersion 1.1.0.0 added the output modes (code got messier). For a simpler usecase, [select version 1.0.0.0](https://github.com/BananaAcid/VeraCrypt-Cmd/tree/v1.0.0.0).\n\n\n## Output for `/json /x`\n\n    C:\\VeraCrypt Cmd\\bin\\Release\\VeraCrypt Cmd.exe /json /x\n    {\n            \"version\": \"1.1.0.0\",\n            \"mounts\": [\n                     \n                    {\n                            \"letter\": \"K\",\n                            \"truecryptMode\": false,\n                            \"diskLength\": 4980736,\n                            \"volumeLabel\": \"\",\n                            \"volumeName\": \"\\\\??\\\\C:\\\\Users\\\\BananaAcid\\\\test.vc\"\n                    }\n                    ,\n                    {\n                            \"letter\": \"M\",\n                            \"truecryptMode\": false,\n                            \"diskLength\": 4980736,\n                            \"volumeLabel\": \"\",\n                            \"volumeName\": \"\\\\??\\\\C:\\\\Users\\\\BananaAcid\\\\test 2.vc\"\n                    }\n            ]\n    }\n    \nAll backslashes are properly escaped (`\\\\`). The prefix `\\??\\` is how windows allows super long paths.\n\n\nProject relates to https://github.com/BananaAcid/Selfcontained-C-Sharp-WPF-compatible-utility-classes\n\nMIT license used.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbananaacid%2Fveracrypt-cmd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbananaacid%2Fveracrypt-cmd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbananaacid%2Fveracrypt-cmd/lists"}