Using Policies to Allow Animations in Web Pages

Permabanned
Joined
19 Apr 2006
Posts
2,333
Location
West Yorkshire
Anyone know how to use an active directory policies to set the setting in Internet Explorer that allows animations in web pages?

To do this in IE it is Tools > internet options > advanced > "play animations in web pages".

In all our browsers it is off by default, but I need enabling and dont fancy doing it one by one.
 
HKCU\Software \Microsoft\Internet Explorer\Main \Play_Animations

Although this key doesn't exist out the box- it has to be created as a REG_SZ value and set to "no" or "yes"
 
Excellent, works like a charm buddy thanks!!!

FYI:

Code:
REM =====================Enable Animations in Web Pages=============

IF EXIST "\\serverfile\profiles\%username%\enableanim.txt" GOTO ENDANIM ELSE
NET USE z: \\lch-ad\netlogon
REGEDIT /s z:\regfiles\enableanim.reg
COPY z:\enableanim.txt "\\serverfile\profiles\%username%\"
NET USE z: /delete
 
Back
Top Bottom