URL shortCut on all users desktop

(imported topic written by emock91)

I need to drop a shortcut on desktops for all users … whats the best way to do this with Bigfix . Thanks

(imported comment written by SystemAdmin)

This is what we have done…

download http://XXXXXX:52311/Uploads/XXXXX/Panda.tmp

continue if {(size of it = XXXX AND sha1 of it = “XXXXXXXX”) of file “Panda.tmp” of folder “__Download”}

extract Panda.tmp

// wait __Download\setup.exe

copy __Download\Panda.ico “C:\WINDOWS\system32\Panda.ico”

copy __Download\Panda.txt “C:\Documents and Settings\All Users\Desktop\Panda.txt”

parameter “startTime”="{now}"

pause while { (now-time(parameter “startTime”) < 30*second) }

move “C:\Documents and Settings\All Users\Desktop\Panda.txt” “C:\Documents and Settings\All Users\Desktop\Panda.url”

(imported comment written by NoahSalzman)

Minor note:

prefetch

is preferable to use over

download

http://forum.bigfix.com/viewtopic.php?id=4973