Results 1 to 4 of 4

Thread: List installed apps on a local computer with PowerShell

Registry Booster

  1. #1
    estra is offline Windows Enthusiast
    Join Date
    Jul 2009
    Posts
    143

    Default List installed apps on a local computer with PowerShell

    Source - Windows PowerShell Blog

    The following is the PowerShell (version 2.0+) command to list software that is installed on a local computer:

    Code:
    gp HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* |Select DisplayName, DisplayVersion, Publisher, InstallDate, HelpLink, UninstallString |ogv
    There is also a variation on that, and also a different command for x64 systems that you can find at the source under the comments.

  2. #2
    riteshtechie's Avatar
    riteshtechie is offline Software Developer
    Join Date
    Mar 2009
    Posts
    884

    Default

    nice share estra.......i am looking for such scripts which can help me learn powershell

    I learn from examples

  3. #3
    leofelix is offline Member
    Join Date
    Oct 2008
    Location
    Italy
    Posts
    1,675

    Default

    Really good, I agree with riteshtechie

    Thank you

  4. #4
    tweakwindows's Avatar
    tweakwindows is offline Microsoft MVP
    Join Date
    Jul 2008
    Location
    intowindows.com
    Posts
    1,288

    Default

    That's a handy tip. I dindn't know it. Thanks estra.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •