1

I have many P7M files and I need to extract them to unsigned original file, I found some free tools but with these I have to extract each one and I want something to do a massive extraction or a command line to use in a batch command. Can I find something for this?

Tobia
  • 2,203
  • 13
  • 41
  • 64

1 Answers1

2

I got the answer using openssl:

openssl.exe smime -verify -in file.P7M -noverify -inform DEM -out test.txt
Tobia
  • 2,203
  • 13
  • 41
  • 64