Rimvydas Posted September 22, 2009 Posted September 22, 2009 Hi, Here goes my problem. I'm trying to deploy vbs script which calls autoit compiled script through the sccm 2007. And the problem is that when this vbs runs and calls autoit script XP asks me if I want to open program from unknown publisher and so on... Is there any way to change such a behavior and avoid this warning? If I run this compiled script directly it doesn't provide such warnings:/ Thanks.
Bert Posted September 22, 2009 Posted September 22, 2009 You need a software certificate. Google it. The Vollatran project My blog: http://www.vollysinterestingshit.com/
Rimvydas Posted September 23, 2009 Author Posted September 23, 2009 You need a software certificate. Google it.Are you saying the even for simple script I need software certificate to be able to avoid such messages? And must I pay for such certificats? If yes it is not an opption at all.I made additional findings. If compiled script is started via WshShell.Exec there are no warnings at all. But if I'm trying to start this script via WshShell.Run error pops up immediately:(
jvanegmond Posted September 23, 2009 Posted September 23, 2009 No, you can get free software certificates easily. github.com/jvanegmond
Rishav Posted September 23, 2009 Posted September 23, 2009 And people ask me why i love shell execution.
Rimvydas Posted September 24, 2009 Author Posted September 24, 2009 I've found a solution - twi nice lines: Set oEnv = WshShell.Environment("PROCESS") oEnv("SEE_MASK_NOZONECHECKS") = 1 There are no nasty warings anymore:)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now