+1 on deploying with GPO, no need to mess around with copying files.

And if you don't want to bother with Orca and a transform, then a user login 
script (must run in user context b/c value is set in HKCU) for quietly killing 
the auto-update pop-up is this (wrappage):

on error resume next
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.RegDelete 
"HKCU\Software\Microsoft\Windows\CurrentVersion\RunOnce\FlashPlayerUpdate"

Carl

-----Original Message-----
From: Joseph L. Casale [mailto:[email protected]] 
Sent: Monday, April 25, 2011 5:00 PM
To: NT System Admin Issues
Subject: RE: Help with script or alternative to suppress flash update notices

Deploy the flash msi with GPO's and use orca to make a transform that toggles 
the update property.

-----Original Message-----
From: Shaun N Owens [mailto:[email protected]] 
Sent: Monday, April 25, 2011 2:22 PM
To: NT System Admin Issues
Subject: Help with script or alternative to suppress flash update notices

Hello,
I was looking for a way to supress the Adobe Flash update pop ups, Accoring to 
the Adobe site you create a mms.cfg file and copy the file to 
c:\windows\syswow64 for Windows 7 machines.  I wrote a VB scripts but I get an 
access is denied error, does anybody have any code to get around the UAC or 
another way of suppressing the update notifications that users get.  I want to 
push this out via a GPO somehow....

set objFso=createObject("scripting.fileSystemObject" )
strFileToCopy="\\ou.MVF.edu\or\GP Software\Flash\mms.cfg"
strFolder="C:\Windows\SysWOW64"
if objFso.folderExists(strFolder) then
objFso.copyFile strFileToCopy,strFolder&"\",true
end if

Best,
Shaun
~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ <http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/>  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to [email protected]
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ <http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/>  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to [email protected]
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ <http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/>  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to [email protected]
with the body: unsubscribe ntsysadmin

Reply via email to