<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>list Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/list/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Wed, 07 Apr 2021 00:18:33 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How to list installed programs in Windows 10</title>
		<link>https://www.osradar.com/how-to-list-installed-programs-in-windows-10/</link>
					<comments>https://www.osradar.com/how-to-list-installed-programs-in-windows-10/#respond</comments>
		
		<dc:creator><![CDATA[roger]]></dc:creator>
		<pubDate>Sat, 10 Apr 2021 21:16:00 +0000</pubDate>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[programs]]></category>
		<category><![CDATA[windows programs]]></category>
		<category><![CDATA[wmic]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=29428</guid>

					<description><![CDATA[<p>Hello! Today we will learn how to list the programs installed in Windows 10. Accordingly, we will use Windows Management Instrumentation or WMIC. This tool is available since Windows 2000. Additionally, it provides very complete information about the programs. It allows you to view the version and path of the programs on the PC. However, [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-list-installed-programs-in-windows-10/">How to list installed programs in Windows 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hello! Today we will learn how to list the programs installed in<a href="https://www.osradar.com/category/windows/" target="_blank" rel="noreferrer noopener"> Windows 10.</a> Accordingly, we will use Windows Management Instrumentation or WMIC. This tool is available since Windows 2000. Additionally, it provides very complete information about the programs. It allows you to view the version and path of the programs on the PC. However, we can also save and export all this information. So read on to learn how to use this powerful tool.</p>



<h2>How to list the programs installed on the system.</h2>



<p>WMIC is included in Windows 10. However, this tool is managed from the command prompt. Consequently, it is necessary to invoke it. With this in mind, press the Win+R combination to launch the run box. Once there, type CMD.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="399" height="206" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2021/04/wm.png" alt="" class="wp-image-29429" srcset="https://www.osradar.com/wp-content/uploads/2021/04/wm.png 399w, https://www.osradar.com/wp-content/uploads/2021/04/wm-300x155.png 300w" sizes="(max-width: 399px) 100vw, 399px" /></figure>



<p>Then run the following command.</p>



<pre class="wp-block-preformatted"><code>wmic product get name</code></pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="951" height="554" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2021/04/wm2.png" alt="List of programs installed in Windows 10" class="wp-image-29430" srcset="https://www.osradar.com/wp-content/uploads/2021/04/wm2.png 951w, https://www.osradar.com/wp-content/uploads/2021/04/wm2-300x175.png 300w, https://www.osradar.com/wp-content/uploads/2021/04/wm2-768x447.png 768w, https://www.osradar.com/wp-content/uploads/2021/04/wm2-696x405.png 696w" sizes="(max-width: 951px) 100vw, 951px" /><figcaption>List of programs installed in Windows 10</figcaption></figure>



<p>It is also possible to obtain more complete information about the program. For example, the name, version, and installation path. Everything is done using a single command:</p>



<pre class="wp-block-preformatted"><code>wmic product get name, version, installlocation</code></pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1007" height="564" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2021/04/wm3.png" alt="Name, version and path of the software installed on Windows 10" class="wp-image-29431" srcset="https://www.osradar.com/wp-content/uploads/2021/04/wm3.png 1007w, https://www.osradar.com/wp-content/uploads/2021/04/wm3-300x168.png 300w, https://www.osradar.com/wp-content/uploads/2021/04/wm3-768x430.png 768w, https://www.osradar.com/wp-content/uploads/2021/04/wm3-696x390.png 696w" sizes="(max-width: 1007px) 100vw, 1007px" /><figcaption>Name, version and path of the software installed on Windows 10</figcaption></figure>



<h2>How to save and export the program list.</h2>



<p>At the beginning of the post, we told you that it was possible to save and export this list. Let&#8217;s see how to do it. First we will save this information in a text file. With this intention, please use the following syntax:</p>



<pre class="wp-block-preformatted"><code>wmic /output: path product get name, version</code> </pre>



<p>Check the following example:</p>



<pre class="wp-block-preformatted">wmic /output:E:\osradar.txt product get name, version</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="702" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2021/04/wm4-1024x702.png" alt="List of programs exported to a text file." class="wp-image-29432" srcset="https://www.osradar.com/wp-content/uploads/2021/04/wm4-1024x702.png 1024w, https://www.osradar.com/wp-content/uploads/2021/04/wm4-300x206.png 300w, https://www.osradar.com/wp-content/uploads/2021/04/wm4-768x527.png 768w, https://www.osradar.com/wp-content/uploads/2021/04/wm4-218x150.png 218w, https://www.osradar.com/wp-content/uploads/2021/04/wm4-696x477.png 696w, https://www.osradar.com/wp-content/uploads/2021/04/wm4-1068x733.png 1068w, https://www.osradar.com/wp-content/uploads/2021/04/wm4.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>List of programs exported to a text file.</figcaption></figure>



<p>It is even possible to save this information in an HTML file. Please use the following syntax.</p>



<pre class="wp-block-preformatted"><code>wmic /output:nameofarchive.htm product get Name, Version /format:htable</code></pre>



<p>For example:</p>



<pre class="wp-block-preformatted"><code>wmic /output:osradar.htm product get Name, Version /format:htable</code></pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="819" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2021/04/wm5-1024x819.png" alt="" class="wp-image-29433" srcset="https://www.osradar.com/wp-content/uploads/2021/04/wm5-1024x819.png 1024w, https://www.osradar.com/wp-content/uploads/2021/04/wm5-300x240.png 300w, https://www.osradar.com/wp-content/uploads/2021/04/wm5-768x614.png 768w, https://www.osradar.com/wp-content/uploads/2021/04/wm5-696x557.png 696w, https://www.osradar.com/wp-content/uploads/2021/04/wm5-1068x854.png 1068w, https://www.osradar.com/wp-content/uploads/2021/04/wm5.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>It is also possible to list the programs of a specific vendor. This time we will use <a href="https://www.microsoft.com/en-us" target="_blank" rel="noreferrer noopener">Microsoft. </a>However, you can choose any other:</p>



<pre class="wp-block-preformatted"><code>wmic product where "Vendor like '%Microsoft%'" get Name, Version</code></pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="979" height="512" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2021/04/wmic6.png" alt="Filter installed programs by particular vendor" class="wp-image-29434" srcset="https://www.osradar.com/wp-content/uploads/2021/04/wmic6.png 979w, https://www.osradar.com/wp-content/uploads/2021/04/wmic6-300x157.png 300w, https://www.osradar.com/wp-content/uploads/2021/04/wmic6-768x402.png 768w, https://www.osradar.com/wp-content/uploads/2021/04/wmic6-696x364.png 696w" sizes="(max-width: 979px) 100vw, 979px" /><figcaption>Filter installed programs by particular vendor</figcaption></figure>



<p>Very good! In the last instance, we have seen how to list the installed programs in Windows 10. Despite using the CMD, it is a very user-friendly and easy-to-use tool. Bye!</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-list-installed-programs-in-windows-10/">How to list installed programs in Windows 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-list-installed-programs-in-windows-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
