Cannot open/unblock msi & exe files in .zip file

Trying to open .zip file but get security warning. Have tried to set unblock file but still issue still exists and the files cannot be opened. Is there a way to override this restriction?

I had the same problem in build 9926 (seems to be solved for me in 10041). Clicking "Unblock" or running the Powershell command "unblock-file" had no effect whatsoever.
A workaround is to add a Policy that prevents Windows from blocking the file in the first place, when it's downloaded. This requires you to redownload the files though, as it does not fix already blocked files.
Solution 1:
Add the following to the registry or save it as a reg-file to import:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments]
"SaveZoneInformation"=dword:00000001
Where 1 is "do not block downloaded files" and 2 would be "block downloaded files"
Solution 2:
Open gpedit.msc and browse to User Configuration > Administrative Templates > Windows Components > Attachment Manager. Enable "Do not preserve zone information in file attachments".
Seems no reboot is required.
More info here https://support.microsoft.com/kb/883260

Similar Messages

  • For the first time, I'm trying to use adobe premiere elements10 that came with my pc Windows 8. I created a single project, saved it but cannot open it. My pc shows the file I created but I get an error message that says this type file is not supported or

    For the first time, I'm trying to use adobe premiere elements 10 that came with my pc Windows 8. I created a single project, saved it but cannot open it. My pc shows the file I created but I get an error message that says this type file is not supported or the codex is not installed. As a test, I created another very small project and get the same error message, when I try to open it. Pls give me a simple answer, a refund or a phone

    mike frischenmeyer
    What computer operating system is your Premiere Elements 10 running on? And, what video card/graphics card does that computer use?
    Is this the first time you are using Premiere Elements 10 or have you worked with it before successfully? There is no easy solution until we
    know the details and troubleshoot to determined what caused the problem.
    1. Can you open a new project?
    2. After you saved/closed the problem project, did you move, delete, or rename any of the files/folder that were related to the source media
    for that project?
    3. Please review the Adobe document on troubleshooting damaged projects.
    Troubleshoot damaged projects | Adobe Premiere Elements
    4. What are the steps that you are using to reopen this saved closed project.
    a. File Menu/Open Project/Name of Project
    b. Other
    Please review and consider and then we can decide what next based on your further details and results..
    Thank you.
    ATR

  • How come when i open my itunes it says "itunes cannot open because some of it's required files are missing. Please reinstall itunes." What do i do?

    last night i wanted to update my ipad to 4.3 and when i tried to; it told me i had to download the new itunes too. so i tried downloading the new updated version on itunes, and this morning when i tried to open my itunes it said "itumes cannot open because some of it's required files are missing. Please reinstall itunes." what do i do?

    With that one, I think we should try getting the malware possibilities off the table first.
    Try downloading and installing the free version of Malwarebytes AntiMalware. Update your MBAM definitions and then run a full scan of the PC. (Takes about 2 hour on my Lenovo.)
    http://www.malwarebytes.org/mbam.php
    Does the scan find any infections? If so, please paste the contents of the log file for the scan in a reply here so we can have a look.

  • Cannot open the Microsoft Jet engine workgroup information file

    Hi,
    I have 4 linked servers in a SQL Server database.  One of them is another sql server database.  This one works fine.  I have 3 that are Access databases.  Last week I could run a query against these linked servers, but now when I open SQL Server Management Studio I get something like the following:
    OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "HRDB" returned message "Cannot open the Microsoft Jet engine workgroup information file.".
    Msg 7303, Level 16, State 1, Line 1
    Cannot initialize the data source object of OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "HRDB".
    What does this error mean?  I've looked at several posts, but none apply to my problem.  I've looked to make sure there wasn't a .ldb open.  Anything else I've missed?
    Many thanks,
    Mark

    The key error is "Cannot open the Microsoft Jet engine workgroup information file".  Here is a suggestion from a AccessMVP.
    Are you using ULS (User Level Security) in Access, with a custom workgroup
    information file (*.mdw)? If so, you may need to replace this file using a
    copy that you should have backed up.
    If you have not specifically implemented ULS, then you're still using it,
    but you are joined to the file named System.mdw, with username Admin and a
    blank password. In this case, which is more likely than the above case I
    guessing, your copy of System.mdw may have somehow gotten corrupted. Try
    searching your hard drive for this file. For example, my copy is in this
    folder:
    C:\Documents and Settings\Administrator\Application Data\Microsoft\Access
    (Yes, I log on as Administrator on my PC routinely. Bad Tom).
    Rename your copy of System.mdw to something else. Then try restarting
    Access. Access 2003 will automatically create this file, if you are
    permanently joined to System.mdw, and it does not find it during startup.
    That should get you a fresh copy.
    Good Luck,
    Tom Wickerath
    Microsoft Access MVP

  • Adobe Reader cannot open URLLink.acsm because not a supported file type or is damaged

    tried to download ebook, kept getting message Adobe Reader cannot open URLLink.acsm because not a supported file type or is damaged.  Have downloaded Adobe Digital Editions, have an Adobe ID.  What is the problem?

    1. I assume you have some PDF documents you have been keeping a long time. Look at their modification date. Is it what you'd expect (years ago) or is it all the same, recent?
    2. Has a TXT file appeared in the same folder as the PDFs?

  • Converting html file into zip file and send email attaching zip file

    Hi Experts,
    I am trying to send email with attachment(html). Which contains more than 7MB. So, It is throwing an error like Size exceeded.
    So, Now i need to compress the data for less than 7MB.
    I decided to convert HTML File into ZIP File.
    Kindly suggest me to convert the HTML file into ZIP file and sending email with attached ZIP file.
    Correct answer rewarded,
    Thanks & Regards,
    N. HARISH KUMAR

    Hi Experts,
    *// HTML_TAB converting into ZIP File
       DATA  : zip_tool TYPE REF TO cl_abap_zip,
               filename TYPE string ,
               filename_zip TYPE string .
       DATA  : t_data_tab TYPE TABLE OF x255,
               bin_size TYPE i,
               buffer_x TYPE xstring,
               buffer_zip TYPE xstring.
    filename = text-007.                                                                          "'HTML_TAB
    *describe the attachment
       DESCRIBE TABLE html_tab LINES tab_lines.
       bin_size = tab_lines * 255.
       CALL FUNCTION 'SCMS_BINARY_TO_XSTRING'
         EXPORTING
           input_length = bin_size
         IMPORTING
           buffer       = buffer_x
         TABLES
           binary_tab   = html_tab.
       IF sy-subrc <> 0.
    *     message id sy-msgid type sy-msgty number sy-msgno
    *     with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
       ENDIF.
    *create zip tool
       CREATE OBJECT zip_tool.
    *add binary file
       CALL METHOD zip_tool->add
         EXPORTING
           name    = 'FSSAI_MAIL.HTML'
           content = buffer_x.
    *get binary ZIP file
       CALL METHOD zip_tool->save
         RECEIVING
           zip = buffer_zip.
       CLEAR: t_data_tab[],bin_size.
       CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
         EXPORTING
           buffer        = buffer_zip
         IMPORTING
           output_length = bin_size
         TABLES
           binary_tab    = html_tab.
    Thanks & Regards,
    N. HARISH KUMAR

  • I have a 2007 iMac with version 10.6.8.  When downloading "some" files to my computer, these files become "zip files."  When I open the zip file, it produces a document in some coding language. How can I open the file to produce a legible document?

    I have a 2007 iMac with version 10.6.8 and 4GB of expanded memory.  When downloading "some" emailed documents, the downloaded file becomes a "zip file," which when opened looks like a coded message.  How can I open the "zip file" so that it produces a legible document?  Please, help!!  thank you!!!

    A "zip file" is a compressed file. "Zipping" in principle does not and cannot change the contents. So that if the contents before zipping are garbage, or unreadable on a Mac, when you expand the file you will get garbage or an unreadable file.
    The first thing to verify therefore is whether the file, before it was zipped, was in a "Mac friendly" format. Can you do that?
    You do not need an App to zip or unzip. These functions are built in on our Macs.
    And yes, zipping and unzipping using the built in functionality, work fine in OS 10.6.8. And 10.7 and 10.8 and 10.9.

  • Cannot open Adobe Reader XI or any PDF file

    When I try to open Adobe Reader XI or any PDF file, it says that it "cannot open in Protected Mode due to an incompatibility with your system configuration. Would you like to open Adobe Reader with Protected Mode disabled?"  When I choose open with Protected Mode disabled, it then displays "Acrobat failed to load its Core DLL.” Please help. Thank you. All PDF’s and adobe reader use to work on my computer. Thank you.  When I try troubleshooting the problem, “incompatible application” is listed under the troubleshooting report.

    Hi
    Please follow this KB doc: http://helpx.adobe.com/acrobat/kb/reader-core-dll-error.html
    Thanks

  • I have pages on my MAC, friends cannot open.  How do I save a file so a Microsoft Word user can open it?

    I have Pages on my MacBook Air, friends cannot open when I send as an attachment to an e-mail. How do I save a file so a Microsoft Word pc can open.

    Welcome to the Apple Support Communities
    Pages documents can only be read on another iPhone, iPod touch, iPad or Mac with Pages installed. To make a document compatible with Microsoft Word, you just have to export the document.
    To do that, just open the document with Pages, and then, go to File menu > Export > Word, and after exporting that document to Word format, just send it

  • TS1506 Recipient of scan JPEG file cannot open it. Any alternative for submitting  file ?

    Recipient of JPEG attachment cannot open the file. Is there an alternative format to send ?

    Every camera model has its own raw format, and Adobe can't update the camera raw plug-in until it gets the information from the manufacturer, and the process takes a while. You shouldn't have to wait more than a couple of months for this. In the meantime you can use the manufacturer's software, or try downloading the latest DNG converter to see if it can make DNG files from your camera that will work in ACR.
    Incidentally, you're not talking to adobe here, just to other users like yourself.
    The standlalone DNG converter download is here:
    http://www.adobe.com/downloads/updates/
    Just pick the DNG Converter  for your platform from the pulldown menu.

  • Name zip file and zipped file in File Receiver

    Dear experts,
    I have a "RFC to File"-scenario. So I have a File Receiver and the received XML needs to be zipped. I have a XSLT mapping that hands over a dynamic file name to the File Receiver. Now when I use the PayloadZipBean my resulting ZIP-file gets the dynamic name. But the zipped XML gets the name "untitled.xml". But I also want the zipped file to get the dynamic name!
    I had a look at Stefan Grube's blog /people/stefan.grube/blog/2007/02/20/working-with-the-payloadzipbean-module-of-the-xi-adapter-framework
    and also at the WIKI http://wiki.sdn.sap.com/wiki/display/XI/Adapter%20Module%20PI%207.0%20Set%20Attachment%20Name?bc=true
    Do you know if there is any way I can avoid writing my own adapter module? I would like to stay with SAP standard modules!
    If not, will the module described in that WIKI also work with a File Receiver instead of a Mail Receiver? (I think it should)
    Thank you for any ideas and best regards,
    Peter

    Hello Amit, Hello Abhishek Salvi,
    Thank you again for your advice and the links to the NWDS. I downloaded it and everything went well until the deployment.
    I followed How-to-Guide: http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0b39e65-981e-2b10-1c9c-fc3f8e6747fa?quicklink=index&overridelayout=true
    Then I got the error: The DOCTYPE declaration in the ejb-jar.xml deployment descriptor is missing.
    I looked at thread: The DOCTYPE declaration in the ejb-jar.xml deployment descriptor is missing
    I am using PI 7.0, JDK version 1.4.12.
    My local JDK Version 1.5.0_22, NWDS 7.1.
    Could the JDK version on the server be a problem? Or NWDS 7.1 and PI 7.0?
    I used all the libraries mentioned on this page under PI 7.0:
    http://wiki.sdn.sap.com/wiki/display/XI/Where%20to%20get%20the%20libraries%20for%20XI%20development
    When I create the Enterprise Bean I have to specify "Component and Local Interfaces", e.g. "com.sap.aii.af.lib.mp....."
    But in my PI system I cannot find JAR files with the name "aii.af.lib.mp..."
    Could that be the problem?
    Do I have to specify different "Component and Local Interfaces" when creating the Enterprise Bean?
    Thank you again for any help!
    Best regards,
    Peter
    Edited by: Peter Wallner on Apr 21, 2011 10:13 AM

  • How can I stop Microsoft IE renaming .jar files to .zip files?

    I realise this question has been asked before on this forum, but as far as I can tell no answer has yet been posted.
    If I put a .jar file on my webserver for people to download, later versions of Internet Explorer will rename the file from xxx.jar to xxx.zip on the client's machine. Is there any way of stopping this from happening?
    It looks like the problem is caused by IE examining the contents of the file and realising it uses ZIP compression. As a result, any file that I create (not just jars) that uses Java to zip the contents, when placed on a web server, gets interpreted as a .zip file by IE regardless of its extension.
    I realise there are some workarounds such as zipping the .jar file, creating a .exe file from the .jar, telling everyone to use Firefox etc., but none of these are really acceptable or particularly efficient. I am really hoping there is something I can do to the .jar file or the compression process that will tell IE to leave the file alone.
    Thanks,
    Jo.

    You can save any kind of document on iCloud Drive, as long as the file size is smaller than 15GB.
    See:   iCloud Drive FAQ
    Create a new folder for your Office documents on iCloud Drive and drag your documents there, or select iCloud Drive in the File Chooser panel, when you save a document.

  • Java.util.zip.ZipFile.entries() shows only 99 files but zip file is fine.

    Hi,
    I have a wierd issue with java.util.zip.ZipFile
    Code as simple as
    ZipFile file = new ZipFile("my.zip") ;
    System.out.println(file.size());
    For this particular zip file, it says 99 files found but the zip contains more than 60,000 files. I tried the zip with unzip and zip utilities and the zip file checks out fine. I even tried to unzip the contents, and zip 'em up all over again, just to eliminate the chances of corruption while the zip was being transferred over the network.
    The same program works fine with another zip containing more or less the same number of files and prints 63730.
    Any idea? This can not possibly be related to the type of files the zips contain? right? In any case, the contents of both zips are text/xml files.
    Any help would be greatly appreciated.
    Regards,
    ZiroFrequency

    I know its a problem with this particular zip. But whats interesting is that "unzip" can easily open / verify the zip and claims that it is a valid zip.
    As I wrote earlier, I unzipped the file and zipped up the contents again in a new zip but java can't still count the contents correctly.
    So I am thinking there is something to do with the "contents" of the xmls inside the zip? (characterset issues?)
    There are no exceptions thrown and no error anywhere :(
    I basically need to pinpoint the issue so that I can have it corrected upstream as this zip file processing is an ongoing process and I need to resolve it not just once but for the periodic executions.
    Hope this helps explain the issue.

  • IOS sends files as Zipped files

    When I email a numbers document from my ios device it shows up in my email as a zipped file.  Then if I check the email from an Ios device I can not open it, because it is zipped, and if I check my email from my mac, I need to unzip and then open.  So Frusterating!!  This did not happen prior to Numbers 3.0.  I have a construction company and I have several guys reporting their daily logs to me this way.  THey all have a form in Numbers on their Ipad that they fill out and then they email it to me the end of every day.  They send it to me as a numbers file, but when I get it, it is always zipped.  Is this a default that can be changed or something??

    No. What you are talking about is an attached audio file, not voice mail, and is not associated with the phone function. If you need privacy, use the earbuds.

  • Process txt files in zip file

    Hello everybody,
    I have a scenario where PI needs to obtain a zip file via FTP using the File adapter, this zip file contains a number of txt files that I need to process, and the content of one of them send it to an ECC, now I'm using the PayloadZipBean Module in the Sender FIle Adapter, and I have two things if I use the Message Protocol as File, I get a Payload for each txt file in the zip file, but this payload has no structure, and if I use the File Content Conversion I get an XML strcuture with only one field and a strange string in it, and somewhere in this string the names of the files I assume all the content of the zip file, can anyone help on how could I achieve what I need that is to pull the zip file via SAP PI, then unzip it, and with the content of one of the txt files send it to an ECC via ABAP Proxy, thanks in advance for your answers.
    Regards,
    Julio Cesar

    Hi,
    you can do it in futher way ...
    pickup zip file and simply extract and dump it in another temp folder (can use scripts on OS level).
    @ then Use another sender communication channel to pickup all these text file .
    for further clarification you can use these links also. -
    Re: PI needs to obtain a zip file via FTP using the File adapter
    Accessing File using FTP from Java Mapping
    File Sender Adapter with FTP protocol
    BR
    Raj

Maybe you are looking for

  • ABAP Query Selection Screen Comment

    Hi,   I want to display some text (just text) on Selection Screen of an abap query. If this was a regular abap program I could have simply used "SELECTION-SCREEN COMMENT... " and that would have been enough. But since I dont seem to have access to In

  • BAPI/FM ( tran MI09) to enter count without ref. to inventory doc

    hi, I wanted a function module/BAPI that can be used to enter count for physical inventory WITHOUT reference to inventory document(transaction MI09) I found a BAPI to enter count for physical inventory with reference to inventory document(transaction

  • How to create 2 checkboxs in 2 different JTable cells within 1 buttonGroup?

    Hi, I have a JTable with dynamic number of rows and 5 columns. What I mean by dynamic is that new rows can be added and existing rows can be deleted so the number of rows may change. As I said before there are 5 columns. The first 3 columns will alwa

  • Photoshop CS lighting effects rendering malfunction

    You know I am really angry with Adobe regarding this issue. I have spent hours on the phone with them and they have no clue what they are doing it would seem. I have lost a client job because of this. If you have this issue please let me know: Try to

  • WCS license AP count

    Hi guys, I have one question regarding licensing on WCS. We have a license for 100 AP-s, and our WCS in on 99% of capacity. What would happened if we add 1 more AP to WCS (101 total) ? Will the WCS generate an error, will it delete old added AP-s to