22

Whenever I try to run executable files (.exe. .com, .bat, ...) on a mapped network drive I get this annoying popup dialog asking me if I'm sure. How to stop this and just run the files unimpeded?

"the publisher cannot be verified" dialog
(not my screenhot, just an image I grabbed at random online)

Unlike the related Get rid of "The Publisher could not be verified. Are you sure you want to run this software"? I don't want to disable this safety feature completely (as in "don't ever warn me about any executable"), just turn it off for known good locations.

matt wilkie
  • 5,324

5 Answers5

23

You may have to remove a stream attribute/file that is attached to your program you downloaded from the Internet. Microsoft adds that for your own protection.

  1. Check for alternate data streams on the file by running dir /r:

    C:\Program Files\eclipse>dir /r eclipse.exe
     Directory of C:\Program Files\eclipse
    18/11/2013  09:45 PM           319,488 eclipse.exe
                                        26 eclipse.exe:Zone.Identifier:$DATA
        ︙        ︙                  ︙       ︙
    

    If you see that Zone.Indentifier stream file attached to your downloaded file, you'll have to remove it.

  2. Download streams.exe from Microsoft.

  3. Run it on your program (e.g., eclipse.exe) as follows:

    C:\Program Files\eclipse>streams.exe -d *.exe
    
    Streams v1.56 - Enumerate alternate NTFS data streams
    Copyright (C) 1999-2007 Mark Russinovich
    Sysinternals - www.sysinternals.com
    
    C:\Program Files\eclipse\eclipse.exe:
    Deleted :Zone.Identifier:$DATA
    C:\Program Files\eclipse\eclipsec.exe:
    Deleted :Zone.Identifier:$DATA
    
    C:\Program Files\eclipse>
    
  4. Message gone.

Martlark
  • 353
19

An easier and safer option (suggested by matt wilkie in the comments) (Source)

This is the result of Microsoft trying to protect users from malicious programs. The message will appear for any shortcut or executable that is hosted on a network share.

To resolve the issue, follow the below steps:

  1. First, determine what server the shortcut is hosted on.

  2. Open Internet Explorer.

  3. Click Tools, then Internet Options.

  4. Click the ‘security’ tab. Once you are on this tab. Make sure you first click "Local Intranet", and then the "Sites" button. Click it.

  5. On the form that is displayed, click ‘Advanced’.

You will be shown a list of sites that are in the "Local Intranet"

  1. To add your server to the list. Type file://server where 'server' is the name of your server, Click ‘Add’.

  2. Click OK, on the rest of the dialogs to get out of the settings for Internet Explorer.

Clay Nichols
  • 5,448
6

Go to Internet Options > Security Tab > Local Intranet zone > Custom Level button

Scroll down to "Launching applications and unsafe files"

set it to enabled, hit OK.

You may have to do this for the Internet zone also.

.

enter image description here

Moab
  • 58,769
3
type old.exe >new.exe

this worked for me

1

Worked for me ... Move the exe file to a non-ntfs volume (e.g. a USB flash drive (FAT)), then move it back again.

IT seems to be something to do with an NTFS property in the .exe file, which FAT does not have. So moving to a FAT drive removes it, and when moved back the propoerty is gone!.

See https://social.msdn.microsoft.com/Forums/vstudio/en-US/fc98080e-db2a-463f-a3a0-372acb3b6eab/disable-the-publisher-could-not-be-verified-for-a-certain-application?forum=windowssecurity

JohnK
  • 113