open file - scurity warning stops auto installation of softwares
How can i disable this Open file - Warning, I'm creating scripted install from K1000 using network share, exe files are executing fine , but when .msi files are installed its waiting for run button to be clicked, how this pop can be ignored so that all softwares are installed in a single click without manual intervention .
start /B /wait "" \\10.11.10.10\Dell_Kace_Agent\SoftwareInstall\anyconnect-win-3.1.05152-pre-deploy-k9.msi /qb /norestart
0 Comments
[ + ] Show comments
Answers (3)
Answer Summary:
Please log in to answer
Posted by:
anonymous_9363
7 years ago
Use the SysInternals 'Streams' tool to remove the ADS marker that tells the OS that the file originated externally to the computer:
streams -d [blah].msi
As ever, the SysInternals suite should be in every support person's arsenal of tools.
Comments:
-
thanks, but i have not used this before, can you share an example for this or any link how to perform this? - rahimpal 7 years ago
Posted by:
anonymous_9363
7 years ago
Are you seriously going to make me send you a LMGTFY link?
Comments:
-
:) ok let me google - rahimpal 7 years ago
Posted by:
rad33k
7 years ago
Top Answer
As I remember you can also set environment variable SEE_MASK_NOZONECHECKS=1 prior MSi execution in a BAT/VBS script, for example:
@echo off
set SEE_MASK_NOZONECHECKS=1
start /B /wait "" msiexec /i \\10.11.10.10\Dell_Kace_Agent\SoftwareInstall\anyconnect-win-3.1.05152-pre-deploy-k9.msi /qb /norestart
Comments:
-
thanks a lot, works great!!!! - rahimpal 7 years ago