(imported topic written by jefister91)
When I first started using BigFix, I created an install of Office 2K3. Since it was so large (410MB) the distribution package would not complete when using the Software Distribution Wizard, so I had to use the sha1 and edit the Action with the follwoign script:
download http://HAZEBESENT:52311/Uploads/76149467ca65bdad58ba5445c987c97c60db2929/big1.tmp
continue if { (size of it = 410761012 and sha1 of it = “76149467ca65bdad58ba5445c987c97c60db2929”) of file “big1.tmp” of folder “__Download”}
extract big1.tmp
wait “{pathname of system folder & “\msiexec”}” /i “{(pathname of client folder of current site) & “__Download\pro11.msi”}” TRANSFORMS=dos_o2k3.mst /qn
This worked great, except all the files in the __Dowload folder were deleted, so there is no installation point when a repair or change is run on the local PC. Does anyone know a way I can edit this so the files will copy to another location and that location will be the new install point? I can add the copy line, I think, after the extract line
md “c:\O2K3 Files”
Copy “__Dowload*.*” “c:\O2K3 Files”
That will get the files local but will not change the installation point. Any help will be greatly appreciated. Thanks.