Skip to content

Konstantinos Tsoukalas

Konstantinos is the founder and administrator of Wintips.org. Since 1995 he works and provides IT support as a computer and network expert to individuals and large companies. He is specialized in solving problems related to Windows or other Microsoft products (Windows Server, Office, Microsoft 365, etc.).

7 Comments

  1. Messy
    January 23, 2023 @ 9:00 am

    You can print the output to a file on the computer like:
    Get-AppxPackage -AllUsers | Select Name, PackageFullName | Export-Csv -Path C:\Path\To\Directory\FileName.csv

    Output to a txt file in both PS and CMD by using the following;
    command >> C:\Path\To\Directory\FileName.txt

    a single > will write it to the file and overwrite any pre-existing data in that file.
    a double >> will write new data to the end of the data in the current file name.

    Reply

  2. Adam Pressman
    February 12, 2019 @ 6:26 pm

    "This didn't work for me. I have apps from Adobe and Autodesk that didn't appear in this list. I found that this approach worked:
    1 – Press the Windows+R key combination to open a “Run” box.

    2 – Type cmd into the Run box, then press the Enter key.

    3 – Type wmic and press the Enter key.

    4 – Type product get name,version and press the Enter key. Windows will now generate a list of all the programs that are currently installed on your PC.

    You can now print your list of installed programs if you wish. Here’s how:

    1 – Right click anywhere in the window and click Select all.

    2 – Press the Ctrl+C key combination to copy the contents of the window to the clipboard.

    3 – Open Notepad and paste the data that you copied to the clipboard in the previous step into a new document (press the Ctrl+V key combination).

    Reply

    • lakonst
      February 14, 2019 @ 12:36 pm

      @Adam Pressman: Thanks for the info: The article is updated.

      Reply

  3. Arris
    September 6, 2018 @ 1:16 pm

    elect-Object : A parameter cannot be found that matches parameter name 'AllUsers'.
    i copy the exact line, what is going wrong?

    Reply

    • lakonst
      September 7, 2018 @ 9:05 am

      @Arris: The command is correct. Make sure that you open PowerShell as Administrator.

      Reply

  4. Rahil
    June 1, 2017 @ 7:07 pm

    I had deleted my app package.How do i get it back.Pls Help.

    Reply

Leave a Reply

Your email address will not be published. Required fields are marked *