I went to download a free media player of whom we won't mention (winamp) and received a message telling me that I either had a corrutped installer, or a problem with my hard drive. I had tried to down load to my C drive the first time, so I tried the download a second time trying to use the D drive, with the same results. The previous evening I downloaded a Microsoft product without any problems, any ideas what might be happening? dcc

Dani AI

Generated

For — a message claiming a “corrupted installer or hard‑drive problem” can come from three separate places: the downloaded file itself, something on the PC (antivirus/browser/OS), or the target drive. ’s point about source variability is useful, but if alternate mirrors don’t help these targeted checks will quickly isolate the root cause.

Quick isolation: save the download to a USB stick or another PC. If that copy works, the original machine or drive is suspect. If the same file is bad everywhere, the download stream or source is the issue.

Verify the file locally (use PowerShell to compute a hash and compare with the publisher’s checksum if available):

# from an elevated PowerShell in the download folder
Get-FileHash .\installer.exe -Algorithm SHA256

See Get-FileHash for details.

Check the disk and system: run chkdsk on the affected drive to find/repair file‑system errors and bad sectors (run as admin; may require a restart):

chkdsk D: /f /r

More: chkdsk documentation. Also run sfc /scannow and check Event Viewer (System log) for disk/controller errors:

sfc /scannow

See sfc documentation.

Other practical points: ensure adequate free space, clear the browser temp/cache, try a different browser or a simple download manager, and briefly disable antivirus only for a trusted test (re-enable immediately). If the file is consistently corrupted across different PCs/networks, the download source or a network/proxy is likely; if corruption only appears when writing to one drive, focus on disk/driver/SMART checks.

Recommended Answers

All 2 Replies

There are many places you can download WinAmp from. Use Google to search for

winamp download

and you'll find lots of them. Try another download location and you'll possibly get an uncorrupted download.

Moved to Windows Software section.

Thanks again Catweazle, good idea, I was using Google and I will try another location.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.