How to encrypt txt files with AES256 via Windows 7z command line?











up vote
1
down vote

favorite












I have 7z on windows , and I want to encrypt 1 txt file with AES256 via 7z command line.



How can I do it please?










share|improve this question




























    up vote
    1
    down vote

    favorite












    I have 7z on windows , and I want to encrypt 1 txt file with AES256 via 7z command line.



    How can I do it please?










    share|improve this question


























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      I have 7z on windows , and I want to encrypt 1 txt file with AES256 via 7z command line.



      How can I do it please?










      share|improve this question















      I have 7z on windows , and I want to encrypt 1 txt file with AES256 via 7z command line.



      How can I do it please?







      windows command-line encryption 7-zip aes






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 21 at 21:44

























      asked Nov 21 at 21:32









      g319909.nwytg.coM

      63




      63






















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          0
          down vote













          7za u -mx -mhe -pPASSWORD ARCHIVE-FILE-NAME.7Z SOURCE-FILE-SPEC


          Any time you use the .7z format, the file is AES-256 encrypted.






          share|improve this answer























          • Can you please explain me what is the arguments u and mx and mhe ? Thank you
            – g319909.nwytg.coM
            Nov 22 at 4:14










          • One issue per question, please, as per house rules. dotnetperls.com/7-zip-examples offers details.
            – K7AAY
            Nov 22 at 23:28


















          up vote
          0
          down vote













          To make the answer simple just use the switch
          ( -p ) which means Set Password with the default encryption which is AES



          example:  7z a -p Zip_File_Name File_2_zip.txt


          7zip will encrypt the file or folder and prompt for a password.



          or use



          example 7z a -pPassword Zip_File_Name.7z File_2_Zip.txt


          This example will auto add the password to the file for you.



          The other switches used above are



          7z a -p -mhe=on Zip_File_Name.7z File_2_Zip.txt

          -pPassword == Auto add password without being prompted
          -mhe=on == Means to encrypt the file names in archive too.





          share|improve this answer





















            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "3"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1377414%2fhow-to-encrypt-txt-files-with-aes256-via-windows-7z-command-line%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            0
            down vote













            7za u -mx -mhe -pPASSWORD ARCHIVE-FILE-NAME.7Z SOURCE-FILE-SPEC


            Any time you use the .7z format, the file is AES-256 encrypted.






            share|improve this answer























            • Can you please explain me what is the arguments u and mx and mhe ? Thank you
              – g319909.nwytg.coM
              Nov 22 at 4:14










            • One issue per question, please, as per house rules. dotnetperls.com/7-zip-examples offers details.
              – K7AAY
              Nov 22 at 23:28















            up vote
            0
            down vote













            7za u -mx -mhe -pPASSWORD ARCHIVE-FILE-NAME.7Z SOURCE-FILE-SPEC


            Any time you use the .7z format, the file is AES-256 encrypted.






            share|improve this answer























            • Can you please explain me what is the arguments u and mx and mhe ? Thank you
              – g319909.nwytg.coM
              Nov 22 at 4:14










            • One issue per question, please, as per house rules. dotnetperls.com/7-zip-examples offers details.
              – K7AAY
              Nov 22 at 23:28













            up vote
            0
            down vote










            up vote
            0
            down vote









            7za u -mx -mhe -pPASSWORD ARCHIVE-FILE-NAME.7Z SOURCE-FILE-SPEC


            Any time you use the .7z format, the file is AES-256 encrypted.






            share|improve this answer














            7za u -mx -mhe -pPASSWORD ARCHIVE-FILE-NAME.7Z SOURCE-FILE-SPEC


            Any time you use the .7z format, the file is AES-256 encrypted.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Nov 21 at 22:03

























            answered Nov 21 at 21:53









            K7AAY

            3,22221437




            3,22221437












            • Can you please explain me what is the arguments u and mx and mhe ? Thank you
              – g319909.nwytg.coM
              Nov 22 at 4:14










            • One issue per question, please, as per house rules. dotnetperls.com/7-zip-examples offers details.
              – K7AAY
              Nov 22 at 23:28


















            • Can you please explain me what is the arguments u and mx and mhe ? Thank you
              – g319909.nwytg.coM
              Nov 22 at 4:14










            • One issue per question, please, as per house rules. dotnetperls.com/7-zip-examples offers details.
              – K7AAY
              Nov 22 at 23:28
















            Can you please explain me what is the arguments u and mx and mhe ? Thank you
            – g319909.nwytg.coM
            Nov 22 at 4:14




            Can you please explain me what is the arguments u and mx and mhe ? Thank you
            – g319909.nwytg.coM
            Nov 22 at 4:14












            One issue per question, please, as per house rules. dotnetperls.com/7-zip-examples offers details.
            – K7AAY
            Nov 22 at 23:28




            One issue per question, please, as per house rules. dotnetperls.com/7-zip-examples offers details.
            – K7AAY
            Nov 22 at 23:28












            up vote
            0
            down vote













            To make the answer simple just use the switch
            ( -p ) which means Set Password with the default encryption which is AES



            example:  7z a -p Zip_File_Name File_2_zip.txt


            7zip will encrypt the file or folder and prompt for a password.



            or use



            example 7z a -pPassword Zip_File_Name.7z File_2_Zip.txt


            This example will auto add the password to the file for you.



            The other switches used above are



            7z a -p -mhe=on Zip_File_Name.7z File_2_Zip.txt

            -pPassword == Auto add password without being prompted
            -mhe=on == Means to encrypt the file names in archive too.





            share|improve this answer

























              up vote
              0
              down vote













              To make the answer simple just use the switch
              ( -p ) which means Set Password with the default encryption which is AES



              example:  7z a -p Zip_File_Name File_2_zip.txt


              7zip will encrypt the file or folder and prompt for a password.



              or use



              example 7z a -pPassword Zip_File_Name.7z File_2_Zip.txt


              This example will auto add the password to the file for you.



              The other switches used above are



              7z a -p -mhe=on Zip_File_Name.7z File_2_Zip.txt

              -pPassword == Auto add password without being prompted
              -mhe=on == Means to encrypt the file names in archive too.





              share|improve this answer























                up vote
                0
                down vote










                up vote
                0
                down vote









                To make the answer simple just use the switch
                ( -p ) which means Set Password with the default encryption which is AES



                example:  7z a -p Zip_File_Name File_2_zip.txt


                7zip will encrypt the file or folder and prompt for a password.



                or use



                example 7z a -pPassword Zip_File_Name.7z File_2_Zip.txt


                This example will auto add the password to the file for you.



                The other switches used above are



                7z a -p -mhe=on Zip_File_Name.7z File_2_Zip.txt

                -pPassword == Auto add password without being prompted
                -mhe=on == Means to encrypt the file names in archive too.





                share|improve this answer












                To make the answer simple just use the switch
                ( -p ) which means Set Password with the default encryption which is AES



                example:  7z a -p Zip_File_Name File_2_zip.txt


                7zip will encrypt the file or folder and prompt for a password.



                or use



                example 7z a -pPassword Zip_File_Name.7z File_2_Zip.txt


                This example will auto add the password to the file for you.



                The other switches used above are



                7z a -p -mhe=on Zip_File_Name.7z File_2_Zip.txt

                -pPassword == Auto add password without being prompted
                -mhe=on == Means to encrypt the file names in archive too.






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 26 at 16:49









                Jason Swartz

                1




                1






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Super User!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1377414%2fhow-to-encrypt-txt-files-with-aes256-via-windows-7z-command-line%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    QoS: MAC-Priority for clients behind a repeater

                    Ивакино (Тотемский район)

                    Can't locate Autom4te/ChannelDefs.pm in @INC (when it definitely is there)