Link to home
Start Free TrialLog in
Avatar of MCP200
MCP200

asked on

How To depoly BGINFO across the Domain

Hi There,

I would like to deploy bginfo across the domain and i would like some assistance please.
All my scripting is done through scriptlogic desktop authority.

Much appreciated if someone could give me the steps to roll out bginfo


Thanks


Avatar of Joseph Daly
Joseph Daly
Flag of United States of America image

I dont know much (anything) about scriptlogic desktop authority but I have deployed bginfo using a group policy startup script. This was very easy and basically consisted of a 3 line batch file and a small VB script.

Batch script
IF EXIST C:\bginfo.exe GOTO END1
copy \\server\share\bginfo.exe c:\

:END1
IF EXIST C:\template.bgi GOTO END2
copy \\server\share\template.bgi c:\

:END2
IF EXIST "C:\Documents and Settings\All Users\Start Menu\Programs\Startup\start.vbs" GOTO END3
copy \\server\share\start.vbs "C:\Documents and Settings\All Users\Start Menu\Programs\Startup"

:END3
exit

Open in new window

Start.vbs script
wscript.sleep(15000)

Set objApp = CreateObject("WScript.Shell") 
objApp.Run "C:\bginfo.exe c:\template.bgi /taskbar /nolicprompt /silent"

Open in new window

Avatar of MCP200
MCP200

ASKER

Hi Guru,

Thanks for that,

Do i have to join the two scripts together ?

Regards,

No you dont. Basically you put both scripts in a location that users can access on a network share. You set the bat file as the startup script in your group policy.

Depending on how you want bginfo deployed you may not even need the second part of the script.

The reason I had to use the vbs script was because I wanted to run it on the taskbar and it needed to wait until windows was running before I could do that. The second script basically just waits 15 seconds and launches the bginfo.
Avatar of MCP200

ASKER

xxdcmast,

Thanks for the reply.

What if the users change the wallpaper while the are logged in ?does this mean the bg info config won't be applied right?

Do  i have to prevent users from changing there wall papers ?

Is there  bginfo MSI version on the web ?


Many Thanks


ASKER CERTIFIED SOLUTION
Avatar of Joseph Daly
Joseph Daly
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial