- Code: Select all
- wget -nv -N --timeout=120 http://mse.dlservice.microsoft.com/download/0/2/C/02C8AB73-0774-4975-826F-9E8A0FD7F65D/dede/x86/mseinstall.exe -O ../client/msse/x86-glb/mseinstall-x86-deu.exe
 WARNING: timestamping does nothing in combination with -O. See the manual
When -O is used, wget ignores -N (timestamping). This causes some files (vcredist*, mseinstall*, possibly others) to be downloaded several times, each time wsusoffline is run.
Might I suggest something like:
- Code: Select all
- mkdir -p ../cache/mseinstall-x68-deu.exe \
 && wget -nv -N --timeout=120 http://mse.dlservice.microsoft.com/download/0/2/C/02C8AB73-0774-4975-826F-9E8A0FD7F65D/dede/x86/mseinstall.exe -P ../cache/mseinstall-x86-deu.exe/ \
 && cp -a ../cache/mseinstall-x86-deu.exe/mseinstall.exe ../client/msse/x86-glb/mseinstall-x86-deu.exe


 
 