can't install my package

hi, i try on install my pacakge and i got this error

At 14:04:27 +0200 - actionsite (http://redacted:52311/cgi-bin/bfgather.exe/actionsite)
Command succeeded (Prefetch download manager collected file) prefetch b17733be49b17199f1c5193cba12bba866e0ee43 sha1:b17733be49b17199f1c5193cba12bba866e0ee43 size:64656985 http://redacted:52311/Uploads/b17733be49b17199f1c5193cba12bba866e0ee43/MYADA.tmp sha256:31869e705d9fe264fef5854bd99455c8507b1a6bffacbd028b14ba2f82ad2306 (action:23662)
At 14:04:29 +0200 - actionsite (http://redacted:52311/cgi-bin/bfgather.exe/actionsite)
Command succeeded extract b17733be49b17199f1c5193cba12bba866e0ee43 (action:23662)
Command started - wait __Download\setup.exe (action:23662)
Command failed (Thread execution failed (2)) wait __Download\setup.exe (action:23662)

this is my package code:

prefetch b17733be49b17199f1c5193cba12bba866e0ee43 sha1:b17733be49b17199f1c5193cba12bba866e0ee43 size:64656985 http://redacted:52311/Uploads/b17733be49b17199f1c5193cba12bba866e0ee43/MYADA.tmp sha256:31869e705d9fe264fef5854bd99455c8507b1a6bffacbd028b14ba2f82ad2306
extract b17733be49b17199f1c5193cba12bba866e0ee43

wait __Download\setup.exe

It appears your extracted package did not contain setup.exe

how can be sure?, how do i get there?

The easiest way is probably to add a pause in the actionscript, and go look for it.

First create a file on the computer “C:\pause.txt”

Then have the ActionScript pause while the file exists. That will give you a chance to look under the __BESData folders while the action is paused.

prefetch b17733be49b17199f1c5193cba12bba866e0ee43 sha1:b17733be49b17199f1c5193cba12bba866e0ee43 size:64656985 http://redacted:52311/Uploads/b17733be49b17199f1c5193cba12bba866e0ee43/MYADA.tmp sha256:31869e705d9fe264fef5854bd99455c8507b1a6bffacbd028b14ba2f82ad2306

extract b17733be49b17199f1c5193cba12bba866e0ee43
pause while {exists files "C:\pause.txt"}

wait __Download\setup.exe

While the action is paused, look under "C:\Program Files (x86)\BigFix Enterprise\BES Client\__BESData\<sitename>\__Download" to see what files were extracted.

When you’re ready to un-pause the action and let it continue, delete the C:\pause.txt file.

3 Likes

If you have the standalone FixletDebugger you could also run the prefectch and extract portion of the action script then check your local machine. The Downloaded file along with its extracted contents would be in the __BESData\__FixletDebugger\__Download off your BES Client folder, so assuming its a default install, C:\Program Files (x86)\BigFix Enterprise\BES Client\__BESData\__FixletDebugger\__Download

2 Likes