Deleting your IE Feed Subscriptions

Let’s say that you’ve outgrown IE’s RSS feed capabilities.

Let’s say that you’ve already exported your feeds to an OPML file for later re-import.

To export the Windows RSS feed list to OPML:

Click the Add Favorites button in IE, choose Import and Export, then Export Feeds

Let’s say that now, you want to get rid of them. All.

How would you go about doing that?

With a script, dear Liza, dear Liza, dear Liza, with a script, dear Liza, dear Liza, a script.

What does such a script look like?

Like this: (save as DelAllRssfeeds.vbs)

set oFmgr = CreateObject(“Microsoft.FeedsManager”)

set oFeedFolder = oFmgr.RootFolder

for each thing in oFeedFolder.subfolders
Wscript.echo thing.Name
thing.Delete
next

for each feedthing in oFeedfolder.Feeds
Wscript.echo feedthing.Name
feedthing.Delete
next

Nice and easy.