Download Zune for Windows to browse music, movies, videos, and podcasts in an entertainment superstore. Zune has had 0 updates within the past 6 months. DOWNLOAD LINK-TO DOWNLOAD ANY GAME/SOFWARE SEND ME -http://goo.gl/k02xzD.

Sponsored By

As I said on social media today, it's 2019 and I'm updating the Firmware on a Zune, fight me. ;) There's even an article on Vice about the Zune diehards. The Zune is a deeply under-respected piece of history and its UI marked the start of Microsoft's fluent design.

Seriously, though, I got this Zune and it's going to be used by my 11 year old because I don't want him to have a phone yet. He's got a little cheap no-name brand MP3 player and he's filled it up and basically outgrown it. I could get him an iPod Touch or something but he digs retro things (GBC, GBA, etc) so my buddy gave me a Zune in the box. Hasn't been touched...but it has a super old non-metro UI firmware.

Can a Zune be updated in 2019? Surely it can. Isn't Zune dead? I hooked up a 3D0 to my 4k flatscreen last week, so it's dead when I say it's dead.

IMPORTANT UPDATE: After I spent time doing this out I found out on Twitter that there's a small but active Zune community on Reddit! Props for them to doing this in several ways as well. The simplest way to update today is to point resources.zune.net to zuneupdate.com's IP address in your hosts file. The way I did it does use the files directly from Microsoft and gives you full control, but it's overly complex for regular folks for as long as the zuneupdate.com server exists as a mirror. Use the method that works easier for you and that you trust and understand!

  • First, GET ZUNE: the Zune Software version 4.8 is up at the Microsoft Download Center and it installs just fun on Windows 10. I've also made a copy in my Dropbox if this ever disappears. You should too!
  • Second, GET FIRMWARE: the Zune Firmware is still on the Microsoft sites as well. This is an x86 MSI so don't bother trying to install it, we're going to open it up like an archive instead. Save this file forever.
    • There's a half dozen ways to crack open an MSI. Since not everyone who will read this blog is a programmer, the easiest ways is
    • Download lessmsi and use it to to the open and extract the firmware MSI. It's just an MSI specific extractor but it's nicer than 7zip because it extracts the files with the correct names. If you use Chocolatey, it's just 'choco install lessmsi' then run 'lessmsi-gui.' LessMSI will put the files in a deep folder structure. You'll want to move them and have all your files right at the top of c:usersYOURNAMEdownloadszunestuff. We will make some other small changes a little later on here.
    • If you really want to, you could install 7zip and extract the contents of the Zune Firmware MSI into a new folder but I don't recommend it as you'll need to rename the files and give them the correct extensions.
    • NERDS: you can also use msiexec from the command line, but I'm trying to keep this super simple.
  • Third, FAKE THE ZUNE UPDATE SERVER: Since the Zune servers are gone, you need to pretend to be the old Zune Server. The Zune Software will 'phone home' to Microsoft at resources.zune.net (which is gone) to look for firmware. Since the Zune software was made in a simpler time (a decade ago) it doesn't use SSL or do any checking for the cert to confirm the identity of the Zune server. This would be sad in 2019, but it's super useful to us when bringing this old hardware back to life. Again, there's as half dozen ways to do this. Feel feel to do whatever makes you happy as an HTTP GET is an HTTP GET, isn't it?
    • NERDS: If you use Fiddler or any HTTP sniffer you can launch the Zune software and see it phone home for resources.zune.net/firmware/v4_5/zuneprod.xml and get a 404. It if had found this, it'd look at your Zune model and then figure out which cab (cabinet) archive to get the firmware from. We can easily spoof this HTTP GET.
    • NERDS^2: Why didn't I use the Fiddler Autoresponder to record and replay the HTTP GETS? I tried. However, there's a number of different files that the Zune software could request and I only have the one Zune and I couldn't figure out how to model it in Fiddler. If I could do this, we could just install Fidder and avoid editing the hosts file AND using a tiny web server.
    • From an admin command prompt, run notepad windowssystem32driversetchosts and add this line:
      127.0.0.1 resources.zune.net
    • This says 'if you ever want stuff from resources.zune.net, I'll handle it myself.' Who is 'myself?' It's our computer! It'll be a little web server you (or I) will run on our own, on localhost AKA 127.0.0.1.
    • Now download dot.net core, it's small and fast to install programming environment. Don't worry, we aren't coding, we are just using the tools it includes. It won't mess up your machine or install anything at startup.
    • Grab any 2.x .NET SDK from https://dot.net and install it from an MSI. Then go to a command prompt and run these commands. first we'll run dotnet once to warm it up, then get the server and run it from our zunestuff folder. We'll install a tiny static webserver called dotnet serve. See below:
      dotnet
      dotnet tool install --global dotnet-serve
      cd c:usersYOURNAMEdownloadszunestuff
      dotnet serve -p 80
  • If you get any errors that dotnet serve can't be found, just close the command prompt and open it again to update your PATH. If you get errors that port 80 is open, be sure to stop IIS or Skype Desktop or anything that might be listening on port 80.
  • Now, remember where I said you'd extract all those cabs and files out of the Firmware MSI? BUT when we load the Zune software and watch network traffic, we see it's asking for resources.zune.net/firmware/v4_5/zuneprod.xml. We need to answer (since Zune is gone, it's on us now)
  • You'll want to make folders like this: C:usersYOURNAMEdownloadszunestufffirmwarev4_5 copy/rename copy FirmwareUpdate.xml to zuneprod.xml and have it live in that directory. It'll look like this:
  • The zuneprod.xml file has relative URls inside like this, one for each model of the Zune that maps from USB hardware id to cab file. Open zuneprod.xml in a text editor and add http://resources.zune.net/ before each of the firmware file cabinets. For example if you're using notepad, your find and replace will look like this.
  • <FirmwareUpdate DeviceClass='1'
    FamilyID='3'
    HardwareID='USBVid_045e&amp;Pid_0710&amp;Rev_0300'
    Manufacturer='Microsoft'
    Name='Zune'
    Version='03.30.00039.00-01620'
    URL='DracoBaseline.cab'>

  • UPDATE: As mentioned above, I did all this work (about an hour of traffic sniffing) and spoofed the server locally then found out that someone made http://zuneupdate.com as an online static spoof! It also doesn't use HTTPS, and if you'd like, you can skip the local spoof and point your your windowssystem32driversetchosts with an entry pointing resources.zune.net to its IP address - which at the time of this writing was 66.115.133.19. Your hosts file would look like this, in that case. If this useful resource ever goes away, use the localhost hack above.
    66.115.133.19 resources.zune.net
  • Now run the Zune software, connect your Zune. Notice here that I know it's working because I launch the Zune app and go to Settings | Device then Update and I can see dotnet serve in my other window serving the zuneprod.xml in response.

It's worth pointing out that the original Zune server was somewhat smart and would only return firmware if we NEEDED a firmware update. Since we are faking it, we always return the same response. You may be prompted to install new firmware if you manually ask for an update. But you only need to get on the latest (3.30 for my brown Zune 30) and then you're good...forever.

Enjoy!

Sponsor: Preview the latest JetBrains Rider with its Assembly Explorer, Git Submodules, SQL language injections, integrated performance profiler and more advanced Unity support.

About Scott

Scott Hanselman is a former professor, former Chief Architect in finance, now speaker, consultant, father, diabetic, and Microsoft employee. He is a failed stand-up comic, a cornrower, and a book author.


AboutNewsletter


Where Can I Download Mac Os X

Apple OS X El Capitan beta was first released to developers in July 2015 and was released to the millions of Apple consumers worldwide September of 2015, following several beta releases. This version of the Apple Mac OS X marks a significant milestone in Apple Mac OS history for many reasons. It was the 12th major release of the Mac OS X line, since the introduction of the new brand in 2002 by Apple from its previous product line of Mac OS.

  1. Aiseesoft Dvd to Zune Converter for Mac, the best Mac Dvd to Zune video Converter, is a handy Mac utility to convert Dvd to Zune and play Dvd on Zune on Mac. It involves the ability to convert Dvd to MPEG-4, H.264/MPEG-4 AVC, WMV video or extract Dvd to AAC, MP3, WMA, M4A audio on.
  2. Mac OS X El Capitan 10.11.1 DMG Mac. Mac OS El Capitan was released to manufacturing on 20th September 2015, almost three and a half years ago. Its latest version 10.11.6 (15G22010) was released on 9th July 2018, almost 7 months ago.
  3. As an operating system, Mac OS has always tried to make things sleek and minimalist on your desktop. However, in the older versions, the sync between Mac and iPhone led to a lot of clutter. To counter that, Apple added Desktop Stacks to make your desktop organized according to the criteria you desire.
  4. Zune on 32-bit and 64-bit PCs. This download is licensed as freeware for the Windows (32-bit and 64-bit) operating system on a laptop or desktop PC from mp3 player software without restrictions. Zune 4.8.2345 is available to all software users as a free download for Windows 10 PCs but also without a hitch on Windows 7 and Windows 8.

Download El Capitan OS X is also significant since it’s the last version of Apple Mac OS X releases as its successor Sierra was released in the year 2016 under the brand macOS. El Capitan is a rock formation found in Yosemite National Park, which gives out the meaning that the new release is a solid version of its predecessor, Yosemite. The naming convention to use important landmarks of Northern California started with the Apple release of Mavericks.

At the time of release, El Capitan was promoted as a significant release by Apple similar to how they promoted Mavericks and Yosemite upgrades which were the predecessors of El Capitan.

Brief Guide For Download El Capitan

In this article, we’ll also discuss few things that you should do before you upgrade your OS to the new Download El Capitan version in order to make sure your computer is all ready for the new upgrade including whether your Mac is compatible both in terms of hardware and software. There we will discuss the minimum system requirements and supported Mac devices released in the past.

If you own a Zune, it is worth you install Zune Software and power up our tiny but powerful device. Zune is the portable multimedia player designed by Microsoft and that is thought to fight versus the iPod. And if when using an iPod we find iTunes, when using a Zune, Zune Player is the recommended program to manage your music.


Installation Methods For Download El Capitan

1. Download El Capitan Mac OS X from scratch while upgrading the current Mac OS version

Zune Download For Mac

Can You Download Zune Software On A Mac

The new Apple El Capitan supports two installations methods. As in the case of many other operating system installations, Apple El Capitan also provides an option to upgrade from your current OS version or the option to install the new download El Capitan Mac OS X from scratch. The default method which is the upgrade installation option will try to install OS X El Capitan to your Mac device while protecting your user data and app data. This is currently the most frequently used method of upgrading to the new version of Mac OS X and also the easiest too. If your Mac computer is in very good shape and running smoothly, it is recommended to install using this method.

2. Download El Capitan and install fresh the Mac OS without upgrading current Mac OS version

The second method of installations is the clean install method. It basically erases the entire content of your chosen drive and installs a fresh, smooth version of the new operating system which is download El Capitan Mac OS X in this case. This would mean no older versions of the Mac OS X, system applications and user data all will be wiped out with a clean install. This is an excellent choice to test an operating system on a separate disk drive or a partition in cases where you have had prevailing software issues on your computer which you have been unable to fix. Therefore when these issues become a major headache for you, your best option is to perform a clean install of the OS X – El Capitan. Although you may have to let go of your apps and their data, it becomes a smaller price to pay for when compared to running the system in its current state with a truckload of software issues.

Download Zune Software For Pc

Microsoft Zune Software Download

The upgrade install option is pretty straightforward. Therefore in this article, we will only discuss the download El Capitan and clean installation of El Capitan Mac OS X.


Download Free Mac Os X

Pro

Zune Software For Windows 8

Download El Capitan iso and dmg installer

Zune For Windows 7