Richard's profileRichard Siddaway's BlogPhotosBlogLists Tools Help

Blog


    November 30

    Open a CSV

    PowerShell has great functionality for working with csv files.  They make an excellent way of saving information generated by PowerShell - for instance

    Get-Process | Export-Csv data.csv -NoTypeInformation

    Having created a csv file how can we read it?  It is possible to use Notepad but then the columns are not padded to the same width so the data can appear jumbled.  Ideally we would want to use an application that generated a grid view - like excel.

    Excel is very easy to use for this

    $xl = New-Object -comobject "excel.application"
    $xl.WorkBooks.Open("C:\Scripts\Office\data.csv")
    $xl.visible = $true

    Create an object for the Excel application.  Open the csv file in a workbook and make it visible.

     

    Share this post :

     

    Technorati Tags: ,,

    Comments

    Please wait...
    Sorry, the comment you entered is too long. Please shorten it.
    You didn't enter anything. Please try again.
    Sorry, we can't add your comment right now. Please try again later.
    To add a comment, you need permission from your parent. Ask for permission
    Your parent has turned off comments.
    Sorry, we can't delete your comment right now. Please try again later.
    You've exceeded the maximum number of comments that can be left in one day. Please try again in 24 hours.
    Your account has had the ability to leave comments disabled because our systems indicate that you may be spamming other users. If you believe that your account has been disabled in error please contact Windows Live support.
    Complete the security check below to finish leaving your comment.
    The characters you type in the security check must match the characters in the picture or audio.

    To add a comment, sign in with your Windows Live ID (if you use Hotmail, Messenger, or Xbox LIVE, you have a Windows Live ID). Sign in


    Don't have a Windows Live ID? Sign up

    Trackbacks

    The trackback URL for this entry is:
    http://richardsiddaway.spaces.live.com/blog/cns!43CFA46A74CF3E96!1899.trak
    Weblogs that reference this entry
    • None