It's asking for a name of your volume; of my mounted volume - not something underneath. Basically it's asking for the name that is already created by VeraCrypt: They just need you to return it when they ask for it. case IOCTL_MOUNTDEV_QUERY_DEVICE_NAME: { PMOUNTDEV_NAME name; UNICODE_STRING ntDeviceName; //e.g. "\Device\VeraCryptVolumeQ" Status = WdfRequestRetrieveOutputBuffer(Request, OutputBufferLength, &name, NULL); if (NT_SUCCESS(Status)) { RtlZeroMemory(name, OutputBufferLength); name->NameLength...
It's asking for a name of your volume; of my mounted volume - not something underneath. Basically it's asking for the name that is already created by VeraCrypt: They just need you to return it when they ask for it. case IOCTL_MOUNTDEV_QUERY_DEVICE_NAME: { PMOUNTDEV_NAME name; UNICODE_STRING ntDeviceName; //e.g. "\Device\VeraCryptVolumeQ" Status = WdfRequestRetrieveOutputBuffer(Request, OutputBufferLength, &name, NULL); if (NT_SUCCESS(Status)) { RtlZeroMemory(name, OutputBufferLength); name->NameLength...
This is a longstanding known bug in VeraCrypt. GitHub: Cannot copy file encrypted with EFS #123 🕗 The driver is not written correctly; as it does not respond to the mandatory IOCTL_MOUNTDEV_QUERY_DEVICE_NAME IOCTL command.
This is a longstanding known bug in VeraCrypt. GitHub: Cannot copy file encrypted with EFS #123 🕗 The driver is not written correctly; as it does not respond to the mandatory IOCTL_MOUNTDEV_QUERY_DEVICE_NAME IOCTL command.
This is a longstanding known bug in VeraCrypt. GitHub: Cannot copy file encrypted with EFS #123 🕗
I guess i have to beat the devs over the head with steps to reproduce. Steps to reproduce Create a test file Create a file called HelloWorld.txt on an NTFS formatted volume Open the file in Notepad, and enter the contents "Hello, world!" Save the file, and close notepad Encrypt the file using NTFS encryption Right click the file HelloWorld.txt in Windows Explorer, and select Properties On the General tab, click the Advanced button Check the Encrypt contents to secure data checkbox Click OK to close...
I guess i have to beat the devs over the head with steps to reproduce. Steps to reproduce...
I guess i have to beat the devs over the head with steps to reproduce. Steps to reproduce...