"Extract all...". "request password on some files inside the zip, but no password was used to create the zip file

I created a zip of a directory tree file using "send to...". "'Compressed (zipped) folder '. When I try to "extract all...". ", he asks me a password for some (not all) of the files in the zip file. I does not have a password for the zip file. I didn't even know it was possible to have a password on a specific file in a zip! Needless to say, I can not give the password because I don't know what it is.

I tried the following:

(1) created with "send to...". "Excerpt from" compressed (zipped) folder ', with 'extract all... '. ». Result: request password.
(2) created with "send to...". "" Compressed (zipped) folder ", extract with 7 - zip. Result: No password query. All the files extracted intact.
(3) created with 7 - zip, extract with "extract all...". ». Result: request password.
(4) created with 7-zip, extract with 7 - zip. Result: No password query. All the files extracted intact.

What I find most interesting is (3).

Does anyone have an idea of what's going on? Is there some kind of security on the files meta-data that could / should cause this behavior?

System information:

XP Pro 2002 SP3 on MS network (I have no idea what server, etc..)

Hi ruborg,

Your Windows XP question is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the IT Pro TechNet public. Please post your question in the forum TechNet for assistance:

http://social.technet.Microsoft.com/forums/en/itproxpsp/threads

Hope the helps of information.

Tags: Windows

Similar Questions

  • Icons and links do not work, they all say .encre and get an error "to open this file, windows needs to know which file was used to create".

    I uninstalled a program a few days ago and I think that it uninstalled the things I needed. All my icons tell .lnk and a message appears that says "to open this file, windows needs to know which file was used to create it.  I can't access my add or remove program file.

    I can't delete email, a lot about different programs does not work when I click on them with my mouse.  I have windows 2005.  My PC is in good condition with a lot of memory left and I have antivirus protection.  Help?

    Hello

    I suggest following the link below and follow the steps:

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_xp-system/Windows-file-associationunable-to-load-eg-vlcink/d14b86ae-b02f-40fd-bf3f-5bf7922f5542

    I hope that the above information is useful!

  • Try to install 6 LR and configure request password.  Used my adobe password, but it won't take it.  Failed to install.

    Try to install 6 LR and configure request password.  Used my adobe password, but it won't take it.  Cannot install

    Use your administrator password, because this message is probably your computer asks you to verify that you are authorized to install

  • 8610 all-in-one: 8610 Paper Jam inside the MACHINE cannot reach the paper from both ends

    Hello

    The paper stuck deep inside the machine, it is not reachable or back since before
    This is the view from the back with the print box deleted double-sided

    I can't catch, the room is too small and keeps tearing.
    Another is it break open or completely disassemble, I have no idea how to solve this
    Tried a few times, tired

    Hi @smokey99,

    I can imagine your frustration and would be happy to help you!  I suggest to leave the printer, unplug the power cable and move the carriage of hand printing. Of course, it would be on the front of the printer, I have the feeling that you will get a better grip on the paper in this way.

    You may need to remove the print head to allow more light and space to move around.

    1. Lift the locking on the transport handle
  • Extract all nodes and filter them based on the WHERE clause

    <?xml version="1.0" encoding="UTF-8"?>
    <report_repository_summary>
       <sql sql_id="gyn915ynqjspa" sql_exec_start="08/19/2015 22:23:02" sql_exec_id="16777217">
          <status>DONE</status>
          <sql_text>BEGIN DBMS_STATS.GATHER_FIXED_OBJECTS_STATS; END;</sql_text>
          <first_refresh_time>08/19/2015 22:23:10</first_refresh_time>
          <last_refresh_time>08/19/2015 22:24:52</last_refresh_time>
          <refresh_count>54</refresh_count>
          <inst_id>1</inst_id>
          <session_id>26</session_id>
          <session_serial>20363</session_serial>
          <user_id>0</user_id>
          <user>SYS</user>
          <con_id>3</con_id>
          <con_name>PDB01_1</con_name>
          <module>sqlplus@lab (TNS V1-V3)</module>
          <service>1_1.up.com</service>
          <program>sqlplus@lab (TNS V1-V3)</program>
          <plan_hash>0</plan_hash>
          <is_cross_instance>N</is_cross_instance>
          <stats type="monitor">
             <stat name="duration">110</stat>
             <stat name="elapsed_time">109822091</stat>
             <stat name="cpu_time">78295097</stat>
             <stat name="user_io_wait_time">1388002</stat>
             <stat name="application_wait_time">1228</stat>
             <stat name="concurrency_wait_time">9175702</stat>
             <stat name="cluster_wait_time">41691</stat>
             <stat name="plsql_exec_time">39369731</stat>
             <stat name="other_wait_time">20920371</stat>
             <stat name="buffer_gets">616087</stat>
             <stat name="read_reqs">837</stat>
             <stat name="read_bytes">22998016</stat>
          </stats>
       </sql>
    </report_repository_summary>
    
    
    

    With above document XML stored as varchar2 (4000) in 12.1.0.2.0, how can I retrieve and display the relevant information(sql_id,session_id,plan_hash,duration,read_bytes) based on the place where condition to filter on any node. For example.

    select * from (
    SELECT EXTRACT (xmltype.createxml (a.report_summary), '//stats/stat[2]/text()').getstringval () AS elap_time from dba_hist_reports a WHERE component_name = 'sqlmonitor'
    )
    where elap_time > 100000000
    /
    
    
    

    Here, I try to get sql_id, sql_exec_id, duration and other information stored in the xml document by applying the where on elapsed_time condition. But to do this, I must write the part EXTRACT for all nodes in the inline view which seems like very bad way of writing of XML query. Is there an easy way to get all the information of nodes so that I can freely apply node whatever, I want in the WHERE condition to filter the records? No better way to write the code then the code below?

    select     REPORT_ID,
               EXTRACT (xmltype(a.report_summary), '//sql/@sql_id')                                    "sql_id",
               EXTRACT (xmltype(a.report_summary), '//sql/@sql_exec_id')                               "sql_exec_id",
               EXTRACT (xmltype(a.report_summary), '//sql/@sql_id')                                    "sql_exec_start",
               EXTRACT (xmltype(a.report_summary), '//status/text()')                                  "status",
               EXTRACT (xmltype(a.report_summary), '//sql_text/text()')                                "sql_text",
               EXTRACT (xmltype(a.report_summary), '//first_refresh_time/text()')              "first_refresh_time",
               EXTRACT (xmltype(a.report_summary), '//last_refresh_time/text()')               "last_refresh_time",
               EXTRACT (xmltype(a.report_summary), '//refresh_count/text()')                   "refresh_count",
               EXTRACT (xmltype(a.report_summary), '//inst_id/text()')                                         "inst_id",
               EXTRACT (xmltype(a.report_summary), '//session_id/text()')                              "session_id",
               EXTRACT (xmltype(a.report_summary), '//session_serial/text()')                  "session_serial",
               EXTRACT (xmltype(a.report_summary), '//user_id/text()')                                         "user_id",
               EXTRACT (xmltype(a.report_summary), '//user/text()')                                    "user",
               EXTRACT (xmltype(a.report_summary), '//con_id/text()')                                  "con_id",
               EXTRACT (xmltype(a.report_summary), '//con_name/text()')                                "con_name",
               EXTRACT (xmltype(a.report_summary), '//module/text()')                                  "module",
               EXTRACT (xmltype(a.report_summary), '//service/text()')                                         "service",
               EXTRACT (xmltype(a.report_summary), '//program/text()')                                         "program",
               EXTRACT (xmltype(a.report_summary), '//plan_hash/text()')                               "plan_hash",
               EXTRACT (xmltype(a.report_summary), '//is_cross_instance/text()')               "is_cross_instance",
               EXTRACT (xmltype(a.report_summary), '//stat[1]/text()')                                 "duration",
               EXTRACT (xmltype(a.report_summary), '//stat[2]/text()')                                 "elapsed_time",
               EXTRACT (xmltype(a.report_summary), '//stat[3]/text()')                                 "cpu_time",
               EXTRACT (xmltype(a.report_summary), '//stat[4]/text()')                                 "user_io_wait_time",
               EXTRACT (xmltype(a.report_summary), '//stat[5]/text()')                                 "application_wait_time",
               EXTRACT (xmltype(a.report_summary), '//stat[6]/text()')                                 "concurrency_wait_time",
               EXTRACT (xmltype(a.report_summary), '//stat[7]/text()')                                 "cluster_wait_time",
               EXTRACT (xmltype(a.report_summary), '//stat[8]/text()')                                 "plsql_exec_time",
               EXTRACT (xmltype(a.report_summary), '//stat[9]/text()')                                 "other_wait_time",
               EXTRACT (xmltype(a.report_summary), '//stat[10]/text()')                                        "buffer_gets",
               EXTRACT (xmltype(a.report_summary), '//stat[11]/text()')                                        "read_reqs",
               EXTRACT (xmltype(a.report_summary), '//stat[12]/text()')                                        "read_bytes"
    from       DBA_HIST_REPORTS a
    

    Don't know why, but it pays just 1 or 0. Even in your case his statement just 0 or 1 for all X 2 columns table.

    I guess I do something wrong in declaring XPATH for X 2 table but not able to find what it is.

    It makes account 0 or 1 because path expressions are bad.

    "For example: ' @name ="duration"

    This is a Boolean expression, not a step of XPath and so gets evaluated as such, which gives 0/1 for false/true values.

    What you need, it is something like this:

    SELECT x1.*
    FROM dba_hist_reports t
       , xmltable('/report_repository_summary/sql'
           PASSING xmlparse(document t.report_summary)
           COLUMNS
             sql_id              varchar2(15) path '@sql_id'
           , sql_exec_start      varchar2(30) path '@sql_exec_start'
           , sql_exec_id         number       path '@sql_exec_id'
           , status              varchar2(10) path 'status'
           , stats_duration      number       path 'stats/stat[@name="duration"]'
           , stats_elapsed_time  number       path 'stats/stat[@name="elapsed_time"]'
           , stats_cpu_time      number       path 'stats/stat[@name="cpu_time"]'
         ) x1
    where sql_id = 'c1tb2666n5rfx'
    and sql_exec_id = 16777668
    
  • I don't have some options inside the group discussions on iMessage.

    So, here's my problem: when I go to iMessages, click on a newsgroup, and then click on details, it won't give me the opportunity to leave the conversation or add a contact. And when I scroll to the top, in detail, it does not give me the option of changing the name of this cat. Like, the buttons are not still here! Can someone tell me please how to fix this, so I can let a group chat, add a contact to the said discussion group, or rename it. Thanks to the one who can tell me how to solve this problem.

    The option is present only if

    1. There are more than three people on the conversation

    2. everybody uses iMessage

    Other than that - you can use not to disturb the bottom of the details page to avoid being disturbed with each message

  • 'Extract all' missing

    I downloaded a zipped file today and went out and 'extract all' does not appear in my toolbar.  He asks me what program I want to open now.  I tried to tell her acrobat from adobe because it was a pdf file and now all my unzipped files have zipper in front of them they have the icon of adobe.  I don't think I really noticed, as a first step, that my 'extract all' had disappeared.  Then I tried the word, and now all my unzipped files have a Word icon in front of them.  How can I get my 'extract all' back in my toolbar to extract these files?  Where at - it go?

    Thank you

    Katie in Ann Arbor
    Vista user

    Hi Katie,

    It seems that the .zip file type association is broken and somehow associated with Adobe Acrobat Reader. Use of the association of file .zip difficulty from this link:

    For Windows Vista file association problems

    (Download zipfix_vista.reg and save it on the desktop. Double-click the file to run it.)
    Ramesh Srinivasan, Microsoft MVP

  • During extraction of zip in XP files, some files display in a format not recognized?

    Hello, I downloaded a few files mp3 audio from a Web site, and they were in zip format. Most of the albums was fine when I used extract all option that would create new folders with the audio files in mp3 format. However, it retrieves all the option used on some of the albums would produce files with the files in a format not recognized. It's strange because the files in the zip folder are the custom mp3 file but those extracted from this same exact issue was not mp3 but not counted. If the original is fine but the extract is not made me think of the windows zip extraction utility could not open some types of zip even if others on the same site have successfully. Have you any suggestions on any program I can use to solve this problem I already paid for them and can't re-download the original download was "successful." The support team of the company I bought thiese maybe not very tech savvy.

    Thank you
    Mulenga

    Hello Mulenga,

    Try to unzip using windows 7

    http://Windows.Microsoft.com/en-us/Windows7/compress-and-uncompress-files-ZIP-files

    See you soon!

  • All IT gurus out there who know Firefox... have lost the passwords saved when FF created a new profile and delete old files key3.dbf and logins.json profile.

    All IT gurus out there who know Firefox... have lost the passwords saved when FF created a new profile and delete old files key3.dbf and logins.json profile. Any ideas, anyone?

    So it's not a logins.json file?

    I see a signons3.txt file and a file signons.sqlite older, if you can try to see if you can import passwords stored in this file.

    You can force Firefox to re-import the passwords in the file signons.sqlite and regenerate the file logins.json with the following steps:

    • reset the signon.importedFromSqlite pref on the topic: config page by default via the context menu
    • Delete the logins.json file in the closed Firefox with Firefox profile folder

    When you restart Firefox, then you should have the pref signon.importedFromSqlite with the value set to true.
    You have passwords that are imported in the password manager, unless there were errors or signons.sqlite signons3.txt.

    You can open the topic: config page via the address bar.
    You can accept the warning and click on "I'll be careful" to continue.

    You can use this button to go to the current Firefox profile folder:

  • All my messages saved in my personal files have disappeared (some back to the year 2000). Obviously, very devastating to lose 10 years of memories - some ' one can help me to recover?

    Support - all my messages saved in my personal files have disappeared (some back to the year 2000). Obviously, very devastating to lose 10 years of memories - some ' one can help me to recover?

    I wouldn't have the slightest idea of Hotmail. I'm sorry. Ask the experts from Hotmail here.
     
    Windows Live Solution Center Hotmail Forum
    http://windowslivehelp.com/forums.aspx?ProductID=1
  • I would like to be able to use my CD rw as big floopys IE selectively erase some files rather than all the files.

    Original title: DLA is compatible with Internet Explorer 8 on xp home?

    I would like to be able to use my CD rw as big floopys IE selectively erase some files rather than all the files. I understand this formatting the disc for DLA (not sure if DLA means the implementation of formatting for software-3 rd party packet writing?) requires 3rd party software because ms windows xp with ie8 does not an own ms-ready download solution?

    If someone can answer to the following:

    1 is it possible with xp family? IE 8, 32 bits?

    2. Please direct me to an audit of Microsoft which is coherent and farily luck here requirements.

    3. If you know a 3rd party (prefer the download from microsoft) which provides a 100% free download and can be checked for virus using mse for selective file errasing?

    I don't expect any outcome of this post because I have nerver (2 positions) has received a response from writen except a few ms technology that pointed me a well known ms response that I had already read and what he recvd. take a vote.

    YOU

    Bob

    Hello

    Microsoft doesn't recommend or suggest any third-party software. Please use your favorite search engine to look for third-party software selectively erase some files.

    THIRD WARNING:
    Using third-party software, including hardware drivers can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the use of third-party software can be solved. Software using third party is at your own risk.

  • Can't unzip the files using the Windows Vista option extract all

    I tried to unzip the files, I have downloaded from the Web site by using the context menu "extract all... "on the file.  I have a Board error saying that the compressed (zipped) folder is empty.  If I try a double click on the file, I get the message that the zip file is not valid.  This has happened to every zip file I tried to unpack so far.  The only files I can unpack so far are those I zipped myself using the context menu "send to folder of Compssed of-->" of Windows Vista.  Any suggestions?

    Hi Eddie Hersh,.

    Thanks for choosing the Windows Vista Forum.

    1 how long have you had this problem?

    2. If it works well before?

    Make sure that the download of the file is not corrupted.

    You can perform the steps in the link below and check if it works.

    Restore and return the file Association in Windows Vista if Original

    1. click on start, and then type regedit in start search and press ENTER.

    2. navigate to the following registry branch:

    NtVersion ntVersion\Explorer\FileExts\ [ext]

    Replace the [exe] with the real extension of the file you want to restore the file type association to return to the default Windows Vista original. If you unsure, simply browse through all the Sub-touche under FileExts.

    3. delete the subkey named UserChoice.

    4. exit the registry editor.

    WARNING:

    Change the settings of the REGISTRY can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the REGISTRY settings configuration can be solved. Changes to these settings are at your own risk...

    Compress and uncompress files (zip files) - http://windowshelp.microsoft.com/Windows/en-US/Help/7050d809-c761-43d4-aae7-587550cd341a1033.mspx

    Kind regards

    Marnie.

  • The Associations of all feature works not just for some file types

    I'm having some problems with the functionality of all Associations, located in the section default programs in Control Panel.  There are a number of types/protocols files that are set up to be opened with the wrong default programs.  When I go to change the program, the browse option doesn't let me choose the program I want.  One of the files I'm having this problem with is the .docx file.  I want to put in place to make the default Microsoft Word program, but he keeps recommending Microsoft Word Viewer and will not let me choose Microsoft Word on my computer.  I know this isn't a major problem and that the files can be opened by Word by using other methods.  It's just annoying, and it bothers me when something does not work on my computer.  A lot of files/protocols are also unknown application listed under the column of default program.  I know that is not normal.  Any of you know what is the cause?

    RE docx default program

    You have MS Office Word. How to uninstall Word Viewer?
    Then, check the Aoosociate file type or Protocol of a program. See if MS Office Word is now the default program to open docx.

    If necessary, use the option open with to set MS Office Word as the default program to open docx.

    1. how to install open with from the context menu
    http://www.SevenForums.com/tutorials/52833-open-context-menu-item-Add-Remove.html

    It applies to both Vista and Win 7.

    2. how to use open with...

    Right-click to .docx... click Open with... click on choose default program... click MS Office Word... down, check the box in front of "always use the selected program to open this type of file"... OK when finished.

  • media player does not open. Itried the benchmark tool, it did not help. I tried the scanning from the prompt, it says that some files were corrupted and could not repair them. There is no error message at all

    Itried the benchmark tool, it did not help. I tried the scanning from the prompt, it says that some files were corrupted and could not repair them. There is no error message at all

    Maybe the info will offer something that you haven't tried:

    First, launch... Task Manager...

    How to launch the Task Manager instantly in Windows XP or Vista?
    http://www.XP-Vista.com/tipstricks/how-to-launch-the-Task-Manager-instantly-in-Windows-XP-or-Vista

    The Task Manager / processes tab select (highlight) any which instance of:
    "wmplayer.exe" and left click on the button "complete the process".

    If you see a dialog box 'Warning'... left click Yes.

    Close the Task Manager.

    Try Windows Media Player again.

    And... the following links may be worth a visit:

    (925704) when I try to use Windows Media Player 11, the program
    does not start, or some user interface elements are empty
    http://support.Microsoft.com/kb/925704

    Please see the following article for info on opening a high command
    Prompt in Vista

    Windows Vista - command prompt: frequently asked questions
    http://Windows.Microsoft.com/en-us/Windows-Vista/command-prompt-frequently-asked-questions
    (scroll down to: how to run a command with elevated privileges?)

    Good luck...

  • How to 'Extract all' you should see when I right click on a zip file?

    When I right click a compressed file (zip), the command "extract all" does not appear. What I get is a message to Adobe Reader that says:

    "Adobe Reader could not open the attachment because it is not a type of file supported or because the file has been damaged." For all attachments in zip file, I get the same message. Why is this and what can I do about it?

    Oil dipstick

    It could be the problem with the associated application of type of .zip file. Check if .zip is associated with Adobe?

    In Windows 7 and Windows Vista you can check the file type as this.

Maybe you are looking for

  • Portege R830 - error 3.9 update BIOS

    Hi all Portege R830 - 138 current BIOS 3.7 I can't update the BIOS to 3.8 or the latest version of 3.9. Error: This computer is not supported. VAP is installed and modules work. A previous post on the forum suggested that it could be linked to the In

  • Satellite P100-106: cooling fan issue

    Hello I recently bought this laptop great, but I have a question about the fans that was so annoying. This laptop have 2 fan vents (one on the left side of the laptop and the other at the back), this wind is all the time and the left starts to turn o

  • Video editing

    I have 3 short videos, one minute each, which I would like to merge.  Then I need to cut the background conversation (put on mute). iMac OS X Version 10.10.5, Yosemite

  • Qosmio G30: How can I install only of the recovery image Ulead Dvd Movie factory

    Hello world I have question about Ulead dvd movie factory.First of all, I bought my G30 with XP when it was time to offer "vista for a few euros. So, I installed Vista with the official CD of Toshiba. But he was more Ulead Dvd movie Factory. The XP i

  • What version of NOR-DMM is later?

    It shows on the search page for the NOR-DMM driver, NI - DMM 15.0 was released in August 2015.  15.1 received July 2015.  See the problem?  15.1 was apparently released prior to 15.0. Which is the most recent?