“WEI Share” 分享Windows 7 Experience Index

來源:互聯網
上載者:User

     眾所周知在Windows 7 中我們可以通過右鍵“我的電腦”->“屬性”查看系統效能綜合得分。這個分數包含了Processor、Memory、Graphics、Gaming Graphics、Hard drive 五方面效能測評分數。CodePlex 中有一個叫做“WEI Share” 的項目,涉及WPF、WCF、Silverlight、Azure 多種.NET 技術。通過該軟體不但可以獲得電腦效能分數,還能夠將本機資料分享到社區。例如,WEI Share 雲端伺服器、Facebook。

軟體使用

     應用程式既可以到WEI Share 網站直接下載使用,也可以下載原始碼編譯產生,大多數Dev可能都喜歡後者。運行程式後因個人機器不同可能會提示需要重新測評電腦效能。

測評過程軟體會調用C:\Windows\System32\WinSAT.ext 對系統各項效能指標進行測試。

 

     漫長的等待後,最終通過GetLatestWinSATFileInfo 方法得到C:\Windows\Performance\WinSAT\DataStore 目錄中剛剛完成的最新測評資料。

public static System.IO.FileInfo GetLatestWinSATFileInfo(){    // Check if the computer has a \WinSAT dir.    if (System.IO.Directory.Exists(Helpers.Globals.WinSatDataStoreFolderPath))    {        // Because the program makes a new XML file on every update of the score,        // we need to calculate the most recent, just incase the owner has upgraded.        System.IO.DirectoryInfo xmlFolder = new System.IO.DirectoryInfo(Helpers.Globals.WinSatDataStoreFolderPath);        DateTime lastAccessTime = DateTime.MinValue;        return xmlFolder.GetFiles("*.WinSAT.xml").ToList().OrderByDescending(i => i.Name).FirstOrDefault();    }    return null;}

分享WEI 資料

     在分數列表右側有兩個按鍵“add to WEI Share”和“post to facebook”,提供了將測評資料分享到“WEI Share” 或“Facebook”的功能。程式通過WCF 將資料上傳到由Silverlight 開發的WEI Share 雲端伺服器(感興趣的朋友可以下載源碼自行研究)。在該網站我們可以參考其他分值測評資料的配置資訊。

也可以將資料發送到個人Facebook 分享給好友參考。

 

相關參考

WEI Share

http://weishare.cloudapp.net/

http://weishare.codeplex.com/

Channel9 Video

http://channel9.msdn.com/posts/LarryLarsen/WEI-Share-Share-you-Windows-7-Experience-Index/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.