惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Security Blog
Microsoft Security Blog
Apple Machine Learning Research
Apple Machine Learning Research
美团技术团队
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
The Cloudflare Blog
J
Java Code Geeks
Martin Fowler
Martin Fowler
M
MIT News - Artificial intelligence
IT之家
IT之家
博客园 - 三生石上(FineUI控件)
月光博客
月光博客
Google DeepMind News
Google DeepMind News
小众软件
小众软件
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
腾讯CDC
B
Blog

博客园 - 丁丁

Running Knoppix 6.7.1 in a Sandisk Ultra flash drive to do GAE programming via PyCharm Fast fill huge number of same value to below cells in Excel How to install Windows 7 on the 6 years IBM X60 notebook Python 2.5 SSL package version 1.15 for GAE A GAE based blog, Micolog 7.412 with Django 1.2 enable Price compare: Sina App Engine vs Google App Engine IE9 is a little faster than Firefox6 in Speed Reading performance test but so less SDLC (Systems Development Life Cycle) Brief Terminology & Workflow 成功凤凰刷机刷出诺基亚E5系统版本042.014纯净简体中文版 How to using Windows Live Writer on umbraco - 丁丁 Getting Help on WMI Methods - 丁丁 [PowerShell]One line to pack individual PDF file into their BaseName.RAR - 丁丁 My first time meet ORA-600 error, quite memorable moment. Camstar InSite 3 server transaction log file profiler, source code included Setting up the Matlab Database Toolbox to connecting to Oracle DB 在Ubuntu 8.04 x86_64上安装Oracle 10g XE和Oracle Application Express(apex) 3.1.1 合并不同WebService之间的相同对象类型 究竟何时买房才最合适?写于2008年3月 代码小片断,自动对文本分行的C#函数
用PowerShell强制添加IE本身无法添加的RSS Feeds
丁丁 · 2010-10-02 · via 博客园 - 丁丁

有时候明明一个页面上有RSS的订阅,但是IE 8就是感应不到,比如公司的google finance财经页面,IE就始终无法添加RSS的订阅,这点Firefox就好很多,至少你点击了Subscribe订阅的话,必然会跳出Live Bookmarks对话框,所以我一直用Firefox……

不过,如果你的目的为了在Windows 7的源标题小部件(Feeds Headline Gadgets)中能够显示订阅的新闻,就必须在IE中添加上该Feeds订阅了,但显然,如果你的笨IE就是不感知RSS订阅或者点了Subscribe订阅也没反应,显示给你一堆XML的话,从任何Windows 7的UI界面上你就都没办法解决这个问题了,因为人家对话框根本就是灰的……

这时候就需要PowerShell出手了,废话不多说,两行命令搞定:

$feedFolder=(New-Object -comObject Microsoft.FeedsManager).RootFolder

$feedFolder.CreateFeed("SNDK","http://www.google.com/finance/company_news?q=NASDAQ:SNDK&output=rss")

上面代码我参考了Microcode: Scripting RSS Feeds with PowerShell and Microsoft.FeedsManager,在此表示感谢。