Creating Fixlet with Top and Subfolders

(imported topic written by SystemAdmin)

I’ve created a Fixlet with the application two layers into a directory. For example, I created a top folder named “Install and Config” with a subfolder named “accu”. The accu folder has my setup.exe file. So it kind of looks like this:

Install and Config\accu\setup.exe

Also, in the top folder I also have a couple configuration files named configa.cfg and configb.cfg that I need to copy to a specific directory and another subfolder I need to copy to the desktop of all users.

Below is my action script but it hangs at pending download. Can anyone help?

download http://bigfix.server.net:52311/Uploads/f3c38baf5ce38013aa6af70453df6c7157f22d92/InstallandConfig.tmp

continue if {(size of it = 7526274 AND sha1 of it = “f3c38baf5ce38013aa6af70453df6c7157f22d92”) of file “InstallandConfig.tmp” of folder “__Download”}

extract InstallandConfig.tmp

wait __Download\ACCU\setup.exe /QB

copy “__Download\Install and Config\configa.cfg” “{name of drive of windows folder}\Program Files\Application\configa.cfg”

copy “__Download\Install and Config\configb.cfg” “{name of drive of windows folder}\Program Files\Application\configb.cfg”

runhidden cmd.exe /C “XCOPY C:\Program Files\BigFix Enterprise\BES Client__BESData__Global__Download\Applications Folder C:\Documents and Settings\All Users\Desktop\ Applications Folder /i” /EnableWDPAndReboot

(imported comment written by BenKus)

Do the size and sha1 match for that file (did you change anything manually)? You can check with the sha1 tool at: http://support.bigfix.com/fixlet/

Ben