Reports came flooding in stating that the 30GB Microsoft Zunes are killing themselves. This is not happening to just a few here and there either, it’s widespread. From what we gather there is some sort of weird bug that is somehow simultaneously killing all of the music players starting at 12AM.
Many are speculating that the timing is just right for an issue like this to happen because it is New Year’s Eve and we all remember the Y2K conspiracy that was blowing around. One of the funniest explanations comes from NYC Bureau Chief John C Abel who prefers the answer, “Brilliant Microsoft DRM Technology.”
All of the reported issues are simply a freezing of the device with no response of any kind. A user over at Zune.net forums by the name of Grunfloz said:
From what I can tell it looks like every Zune 30 on the planet has suddenly crashed. Is this a virus? A glitch? A time bomb? A disgruntled Microsoft employee? Planned obsolescence to make us buy a new one? Or just a terrorist plot to drive the free world crazy?
We’re digging into this, but it’s likely we’ll have to wait for an official response from Microsoft. At least it’s not the iPod. If it was, we’d likely wait a couple months before Apple got around to fixing it.







5 Responses to “Microsoft Zunes reportedly committing mass suicide”
Aug December 31, 2008
That picture is an second gen Zune. The problem is with the first gen Zunes.
NeutralAndy S. December 31, 2008
If this was occurring on the iPod, you’d be in Bizarro World, because Apple wouldn’t let a completely crippling defect of this magnitude out the door.
But you’re right, it’s a good thing it’s not the iPod, because then you’d have millions of pissed-off users. As it is, Microsoft will probably just put all of the 30GB Zune owners in a bus (don’t worry, they’ll all fit) and drive them to Redmond to offer an apology and a new Zune.
NeutralWayne December 31, 2008
“somehow simultaneously killing all of the music players one after another” – it’s either ’simultaneous’ or ‘one after another’ – cannot be both.
NeutralBlackstar December 31, 2008
It’s a feature.
Neutraldonotknowme January 4, 2009
Microsoft’s new year gift…. This is the driver code responsible for millions of crashed ZUNEs.
We are not the only one screwing up code!! J
#define ORIGINYEAR 1980
BOOL ConvertDays(UINT32 days, SYSTEMTIME* lpTime)
{
int dayofweek, month, year;
UINT8 *month_tab;
//Calculate current day of the week
dayofweek = GetDayOfWeek(days);
year = ORIGINYEAR;
while (days > 365)
Neutral{
if (IsLeapYear(year))
{
if (days > 366)
{
days -= 366;
year += 1;
}
}
else
{
days -= 365;
year += 1;
}
}