Creating and Removing FeedStore Items from PowerShell
The latest stuff I've been playing with in my PowerShell FeedStoreProvider is the ability to create and delete items within the store.
So now you can do this:
# create a new folder called "Mad Props" new-item -name "Mad Props" -type folder # create a new feed withing that folder cd "Mad Props" new-item -name Mabsterama -type feed -value http://www.madprops.org/cs/blogs/mabster/rss.aspx
Similarly, "remove-item" works too. You can delete a feed or folder like this:
remove-item Mabsterama
Next thing I want to get working is support for the "-whatif" parameter. In PowerShell you can pass "-whatif" to any command that might do something dangerous (like remove-item) and it'll inform you of what it would have done without actually doing anything. Nice.