Page 1 of 1

[solved] Two leftover files in TEMP dir (#271)

PostPosted: 06.07.2011, 09:17
by boco
After finishing a run with trunk #271, there are two leftover files in TEMP.

sigcheck-wddefs-x86-glb.txt

and

sigcheck-wddefs-x64-glb.txt


Contents are exactly the same:
Code: Select all
Path,Verified,Date,Publisher,Description,Product,Version,File version
No matching files were found.


It actually looks a littly fishy. Could it be the sigcheck on wddefs fails?

Re: Two leftover files in TEMP dir (#271)

PostPosted: 06.07.2011, 09:40
by harry
No, the mpas*.exe files are OK. The sigcheck*.txt files only list unsigned files (sigcheck -u ...).
There is an error in line 763 of ...\cmd\DownloadUpdates.cmd:
Code: Select all
  if exist "%TEMP%\sigcheck-wddefs.txt-%TARGET_ARCH%-glb" del "%TEMP%\sigcheck-wddefs-%TARGET_ARCH%-glb.txt"

should be:
Code: Select all
  if exist "%TEMP%\sigcheck-wddefs-%TARGET_ARCH%-glb.txt" del "%TEMP%\sigcheck-wddefs-%TARGET_ARCH%-glb.txt"

Re: Two leftover files in TEMP dir (#271)

PostPosted: 06.07.2011, 09:56
by WSUSUpdateAdmin
Oh, what a nice bug! 8-)
Fixed in http://trac.wsusoffline.net/browser/trunk (r272).

Thanks & regards
Torsten