{"id":635,"date":"2019-10-15T11:28:45","date_gmt":"2019-10-15T16:28:45","guid":{"rendered":"https:\/\/marcblase.com\/blog\/?p=635"},"modified":"2019-10-15T11:28:45","modified_gmt":"2019-10-15T16:28:45","slug":"get-list-of-installed-programs-with-powershell-in-windows","status":"publish","type":"post","link":"https:\/\/ma.rcbla.se\/blog\/2019\/10\/get-list-of-installed-programs-with-powershell-in-windows\/","title":{"rendered":"Get list of installed programs with PowerShell in Windows"},"content":{"rendered":"<p>In PowerShell run:<\/p>\n<p>To get a list of installed programs:<\/p>\n<pre class=\"brush: plain; title: ; notranslate\" title=\"\">Get-ItemProperty HKLM:\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\*  | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table -AutoSize &gt; c:\\Users\\YOUR_USER\\Documents\\list-installed-programs.txt<\/pre>\n<p>To get a list of app store installed programs:<\/p>\n<pre class=\"brush: plain; title: ; notranslate\" title=\"\">Get-AppxPackage | Select Name, PackageFullName |Format-Table -AutoSize &gt; c:\\Users\\YOUR_USER\\Documents\\list-installed-programs.txt<\/pre>\n<p><small>NOTE: Yes, this is all over the internet, but I wanted it here so I could find it faster next time.<\/small><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In PowerShell run: To get a list of installed programs: Get-ItemProperty HKLM:\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table -AutoSize &gt; c:\\Users\\YOUR_USER\\Documents\\list-installed-programs.txt To get a list of app store installed programs: Get-AppxPackage | Select Name, PackageFullName |Format-Table -AutoSize &gt; c:\\Users\\YOUR_USER\\Documents\\list-installed-programs.txt NOTE: Yes, this is all over the internet, but I wanted it here so [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-635","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/ma.rcbla.se\/blog\/wp-json\/wp\/v2\/posts\/635","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ma.rcbla.se\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ma.rcbla.se\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ma.rcbla.se\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/ma.rcbla.se\/blog\/wp-json\/wp\/v2\/comments?post=635"}],"version-history":[{"count":1,"href":"https:\/\/ma.rcbla.se\/blog\/wp-json\/wp\/v2\/posts\/635\/revisions"}],"predecessor-version":[{"id":636,"href":"https:\/\/ma.rcbla.se\/blog\/wp-json\/wp\/v2\/posts\/635\/revisions\/636"}],"wp:attachment":[{"href":"https:\/\/ma.rcbla.se\/blog\/wp-json\/wp\/v2\/media?parent=635"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ma.rcbla.se\/blog\/wp-json\/wp\/v2\/categories?post=635"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ma.rcbla.se\/blog\/wp-json\/wp\/v2\/tags?post=635"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}