joefitzgerald / packer-windows

Windows Packer Templates
MIT License
1.63k stars 1.12k forks source link

Avoid using SourceForge tools to prevent potentially unwanted programms from being installed #274

Open dragetd opened 5 years ago

dragetd commented 5 years ago

This is just one of the spots I just found, there might be more across the repository:

https://github.com/joefitzgerald/packer-windows/blob/c4a111f4f95d311f37ec0f2ae545ffa5407597cb/scripts/compact.bat#L7

I want to open for discussion to avoid using tools directly downloaded from sourceforge. SourceForge has a history of bundling software packages of unknowing authors with adware. The project was called Devshare and once SourceForge was aquired by Bizx, they said they stop this programm after massive backlash. But the site is stll full of adds and has lost almost all of its reputation.

The mentioned snipped is for defragging the disk. A task that can be easily handled with native windows tools (see for example https://github.com/jacqinthebox/packer-templates/blob/master/scripts/windows-compress.ps1 )

It would be nice if we could find such external tools and reduce their usage where possible, avoid them where native alternatives exist and avoid them if they come from sourceforge.

Any opinions?