How to deploy Silverlight 5 with KACE
need the install command for silverlight 5
0 Comments
[ + ] Show comments
Answers (1)
Answer Summary:
Grab the offline installer from here: http://filehippo.com/download_silverlight/ install command is "/q"
Grab the offline installer from here: http://filehippo.com/download_silverlight/ install command is "/q"
Please log in to answer
Posted by:
dchristian
12 years ago
Grab the offline installer from here:
http://filehippo.com/download_silverlight/
install command is "/q"
http://filehippo.com/download_silverlight/
install command is "/q"
Comments:
-
My users are getting a question about "do you want to keep Silverlight updated".
Anyone know how to prevent this popup? Microsoft has a description of a registry key, but it does'ent seem to work:
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Silverlight" /V UpdateMode /t REG_DWORD /d 2
The question pops up anyway. Anybody know how to prevent the pop up? - Gandalf65 11 years ago-
try a .bat file with these:
------------------------------------------------------------------------------------------
regedit /s "%1\Software\silverlight\disableupdate.reg"
exit
------------------------------------------------------------------------------------------
and disablupdate.reg contains thins:
------------------------------------------------------------------------------------------
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Silverlight]
"UpdateConsentMode"=dword:00000000
------------------------------------------------------------------------------------------ - KetschupMajo 11 years ago -
or in the new Version:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Silverlight]
"UpdateMode"=dword:00000002
"Version"="5.1.20125.0" - KetschupMajo 11 years ago
-
It's an other way of doing the same, the "REG ADD..." and the "REGEDIT /S <file>.reg"
But I found the answer myself: It was a 64-bit Windows 7 and you have to write to "Wow6432Node" in registry in stead. eg:
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Silverlight" /V UpdateConsentMode /t REG_DWORD /d 0 /f
Now my users are not promptet for Silverlight update. - Gandalf65 11 years ago