PowerGadgets: Professional IT monitoring for under $100.

PowerGadgets: Professional IT monitoring for under $100.PowerGadgets Forums

PowerGadgets Community Center

The PowerGadgets Community Center showcases our active participation and real-world product benefit to IT professionals within the thriving PowerShell community.

PowerGadgets News & Reviews RSS Icon

  • Monitoring With PowerGadgets

    "While I wouldn't go so far as to say that PowerGadgets is the greatest thing in the history of history, it is easily my favorite tool for Windows PowerShell..." - Carter Shanklin, VMware Product Manager

  • PowerGadgets Featured in Wrox Press' Latest Book

    Wrox Press Book

    PowerGadgets is featured in Wrox Press' latest PowerShell book, 'Professional Windows PowerShell for Exchange Server 2007'. Author Joezer Cookey-Gam uses PowerGadgets to visually monitor Microsoft Exchange Server 2007 data.

  • Creating a Management Dashboard with PowerGadgets and PowerShell

    "I urge you, if you haven't checked it out already, to give PowerGadgets a try. You just might make your job of monitoring servers and applications much easier." - Joe Brinkman, Microsoft MVP

  • PowerShell Data Crunching and Visual Transformation

    "This is one power pack that belongs to every PowerShell user's toolbox." - Lee Desmond, Microsoft Certified Trainer

  • Windows PowerShell Virtual User Group Meeting

    "I am proud to announce a new PowerShell user group. This user group will have its meetings done via Live Meeting with the help of Microsoft. The intent for the first few meetings is to invite international 'PowerShell superstars' to give some brief talks on what they are doing with PowerShell." - Marco Shaw, PowerGadgets MVP

  • Microsoft Learning Series - Introducing Windows Server® 2008

    "Combined with a visualization toolkit such as PowerGadgets... PowerShell can be a real boon to administrators of application server farms." - Dino Chiesa, Microsoft Director of Application Platform Marketing

  • More Power for PowerShell

    "The licensing costs for Power Gadgets are very reasonable. Even a small business should be able to justify the cost, given the value. There's no need to spend a ton of money on a high-end solution." - Jeffery Hicks

  • Create Data-Driven Gadgets

    "So what could you really use these tools for? Hundreds of options come to mind. Since the tools can query Web services, you could monitor your HR department's data, getting automatic notification on your desktop when a new employee is hired." - Greg Steen

  • PowerGadgets plays nice with Quest's PowerGUI

    "I still feel like what I saw was a kind of magic. I just installed two products from different teams and they simply worked with one another providing great UI experience on top of PowerShell." - Dimitry Sotnikov, Quest Software

  • PowerGadgets Creator is Wicked Cool

    "This tool for creating real-time charts, gauges, and graphs for Windows Vista and XP is nothing short of amazing. You can choose any kind of data you like, and a wizard walks you through every step of the way. Using some simple tricks, you can also incorporate these dashboard components into Web pages and other applications." - Sean McCown

  • More

Cool PowerShell Scripts

Reading a Remote CSV

Posted by ivang

Create a script called ImportCsvWeb.ps1 with the following:

$url = $args[0]
$tempFile = [System.IO.Path]::GetTempFileName()
$webClient = new-object System.Net.WebClient
$webClient.DownloadFile($url,$tempFile)
$data = import-csv $tempFile
[System.IO.File]::Delete($tempFile)
$data

Invoke it in a powershell session (or script) as follows:

.\importcsvweb.ps1 "http://<your csv file URL>" | out-chart -values <ValueColumns> -label <LabelColumn>

Note that in this case we let importcsvweb return the data without any "casting" to allow reuse of this script with multiple CSV files. You tell the out-chart cmdlet which fields should be plotted through the -values parameter (which must contain only numbers).

More

Case Studies

Blogosphere

Team Blog

More

User Discussion

More
Software FX Logos

Çѱ¹¼ÒÇÁÆ®¿þ¾î¿¡ÇÁ¿¢½º(´ëÇ¥:À̰æÈ¯), »ç¾÷ÀÚµî·Ï¹øÈ£: 220-01-66622, Åë½ÅÆÇ¸Å¾÷½Å°í: °­³²-8298È£

¼­¿ïƯº°½Ã °­³²±¸ ¿ª»ïµ¿ 837-7 ÇýÁÖºôµù 6Ãþ 603È£ Tel:02)538-3070, Fax:02)538-6078

 

© 2009 Software FX, Inc. All Rights Reserved.

Chart FX, Grid FX and PowerGadgets are registered trademarks of Software FX, Inc.
DataParts is a trademark of Software FX, Inc. All other names are trademarks or registered trademarks of their respective owners.

Java and all Java-based marks are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries.