<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
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/"
> <channel><title>Comments on: How To Generate A List Of Every Program Installed On Your PC</title> <atom:link href="http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/feed/" rel="self" type="application/rss+xml" /><link>http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/</link> <description>Helping Normal People Get Their Geek On</description> <lastBuildDate>Wed, 15 Feb 2012 17:13:00 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>By: China Electronics Wholesale</title><link>http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/comment-page-1/#comment-56714</link> <dc:creator>China Electronics Wholesale</dc:creator> <pubDate>Mon, 04 Oct 2010 09:26:00 +0000</pubDate> <guid
isPermaLink="false">http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/#comment-56714</guid> <description>it&#039;s obviously not who you wrote that article for if they think it&#039;s too much work. </description> <content:encoded><![CDATA[<p>it&#8217;s obviously not who you wrote that article for if they think it&#8217;s too much work.</p> ]]></content:encoded> </item> <item><title>By: China Electronics Wholesale</title><link>http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/comment-page-1/#comment-56715</link> <dc:creator>China Electronics Wholesale</dc:creator> <pubDate>Mon, 04 Oct 2010 09:26:00 +0000</pubDate> <guid
isPermaLink="false">http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/#comment-56715</guid> <description>it&#039;s obviously not who you wrote that article for if they think it&#039;s too much work. </description> <content:encoded><![CDATA[<p>it&#8217;s obviously not who you wrote that article for if they think it&#8217;s too much work.</p> ]]></content:encoded> </item> <item><title>By: Mithun John Jacob</title><link>http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/comment-page-1/#comment-34787</link> <dc:creator>Mithun John Jacob</dc:creator> <pubDate>Wed, 11 Nov 2009 15:49:12 +0000</pubDate> <guid
isPermaLink="false">http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/#comment-34787</guid> <description>See : http://support.microsoft.com/default.aspx?scid=kb;en-us;875605</description> <content:encoded><![CDATA[<p>See : <a
href="http://support.microsoft.com/default.aspx?scid=kb;en-us;875605" rel="nofollow">http://support.microsoft.com/default.aspx?scid=kb;en-us;875605</a></p> ]]></content:encoded> </item> <item><title>By: SAP</title><link>http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/comment-page-1/#comment-34775</link> <dc:creator>SAP</dc:creator> <pubDate>Wed, 11 Nov 2009 13:00:30 +0000</pubDate> <guid
isPermaLink="false">http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/#comment-34775</guid> <description>Thanks for the info - did not know about wmic.It&#039;s easy enough to create a script that automates the whole process, for example:== productlist.cmd ==
@echo off
rem Next command is only needed first time
if not exist C:\MyList mkdir C:\MyListwmic /output:C:\MyList\list.txt product get name,version
== cut here ==With a bit of work, the script can be enhanced to include a time-stamp in the file name, so one can keep track of changes:== productlist.cmd ==
@echo off
rem Next command is only needed first time
if not exist C:\MyList mkdir C:\MyListrem capture current time
set DAY=%DATE%
set NOW=%TIME%
rem replace leading space with 0
set NOW=%NOW: =0%rem extract date parts
set YYYY=%DAY:~-4%
set MM=%DAY:~3,2%
set DD=%DAY:~0,2%rem extract time parts
set HH=%NOW:~0,2%
set MM=%NOW:~3,2%
set SS=%NOW:~6,2%rem Combine parts to make timestamp:
set STAMP=%YYYY%%MM%%DD%-%HH%%MM%%SS%wmic /output:C:\MyList\list_%STAMP%.txt product get name,version
== cut here ==[This works on XP. I&#039;ve not tried it on Vista or Windows7.]In many cases, just the date will be enough, in which case just omit the setup and use of NOW, HH, MM and SS.</description> <content:encoded><![CDATA[<p>Thanks for the info &#8211; did not know about wmic.</p><p>It&#8217;s easy enough to create a script that automates the whole process, for example:</p><p>== productlist.cmd ==<br
/> @echo off<br
/> rem Next command is only needed first time<br
/> if not exist C:\MyList mkdir C:\MyList</p><p>wmic /output:C:\MyList\list.txt product get name,version<br
/> == cut here ==</p><p>With a bit of work, the script can be enhanced to include a time-stamp in the file name, so one can keep track of changes:</p><p>== productlist.cmd ==<br
/> @echo off<br
/> rem Next command is only needed first time<br
/> if not exist C:\MyList mkdir C:\MyList</p><p>rem capture current time<br
/> set DAY=%DATE%<br
/> set NOW=%TIME%<br
/> rem replace leading space with 0<br
/> set NOW=%NOW: =0%</p><p>rem extract date parts<br
/> set YYYY=%DAY:~-4%<br
/> set MM=%DAY:~3,2%<br
/> set DD=%DAY:~0,2%</p><p>rem extract time parts<br
/> set HH=%NOW:~0,2%<br
/> set MM=%NOW:~3,2%<br
/> set SS=%NOW:~6,2%</p><p>rem Combine parts to make timestamp:<br
/> set STAMP=%YYYY%%MM%%DD%-%HH%%MM%%SS%</p><p>wmic /output:C:\MyList\list_%STAMP%.txt product get name,version<br
/> == cut here ==</p><p>[This works on XP. I've not tried it on Vista or Windows7.]</p><p>In many cases, just the date will be enough, in which case just omit the setup and use of NOW, HH, MM and SS.</p> ]]></content:encoded> </item> <item><title>By: Nery</title><link>http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/comment-page-1/#comment-34721</link> <dc:creator>Nery</dc:creator> <pubDate>Mon, 09 Nov 2009 23:15:14 +0000</pubDate> <guid
isPermaLink="false">http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/#comment-34721</guid> <description>I&#039;m always down for some nice CLI tidbits I can use.  Thanks for the info.  Don&#039;t mind these people, it&#039;s obviously not who you wrote that article for if they think it&#039;s too much work.</description> <content:encoded><![CDATA[<p>I&#8217;m always down for some nice CLI tidbits I can use.  Thanks for the info.  Don&#8217;t mind these people, it&#8217;s obviously not who you wrote that article for if they think it&#8217;s too much work.</p> ]]></content:encoded> </item> <item><title>By: Douglas Bliss</title><link>http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/comment-page-1/#comment-34715</link> <dc:creator>Douglas Bliss</dc:creator> <pubDate>Mon, 09 Nov 2009 20:03:43 +0000</pubDate> <guid
isPermaLink="false">http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/#comment-34715</guid> <description>Can anyone tell me what this error is.
ERROR:
Code = 0x80041001
Description = Generic failure
Facility = WMII get it after I enter the line
/output:C:\MyList\list.txt product get name,versionDoug</description> <content:encoded><![CDATA[<p>Can anyone tell me what this error is.<br
/> ERROR:<br
/> Code = 0&#215;80041001<br
/> Description = Generic failure<br
/> Facility = WMI</p><p>I get it after I enter the line<br
/> /output:C:\MyList\list.txt product get name,version</p><p>Doug</p> ]]></content:encoded> </item> <item><title>By: Floyd</title><link>http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/comment-page-1/#comment-34712</link> <dc:creator>Floyd</dc:creator> <pubDate>Mon, 09 Nov 2009 19:21:26 +0000</pubDate> <guid
isPermaLink="false">http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/#comment-34712</guid> <description>Add/Remove Programs and Print Screen works for me.</description> <content:encoded><![CDATA[<p>Add/Remove Programs and Print Screen works for me.</p> ]]></content:encoded> </item> <item><title>By: Mary</title><link>http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/comment-page-1/#comment-34711</link> <dc:creator>Mary</dc:creator> <pubDate>Mon, 09 Nov 2009 19:17:33 +0000</pubDate> <guid
isPermaLink="false">http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/#comment-34711</guid> <description>Or, you could use this wonderful freebie...it does NOT iinstall...File List Maker 1.0
http://www.softpedia.com/get/System/File-Management/File-List-Maker.shtml</description> <content:encoded><![CDATA[<p>Or, you could use this wonderful freebie&#8230;it does NOT iinstall&#8230;</p><p>File List Maker 1.0<br
/> <a
href="http://www.softpedia.com/get/System/File-Management/File-List-Maker.shtml" rel="nofollow">http://www.softpedia.com/get/System/File-Management/File-List-Maker.shtml</a></p> ]]></content:encoded> </item> <item><title>By: David M</title><link>http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/comment-page-1/#comment-34708</link> <dc:creator>David M</dc:creator> <pubDate>Mon, 09 Nov 2009 17:29:40 +0000</pubDate> <guid
isPermaLink="false">http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/#comment-34708</guid> <description>I was just thinking the same thing as Steve.  Not only does Belarc generate a list of the software on your computer, I think its an easier list to obtain than going through the procedure that you just described.  Additionally, Belarc gives you some really nice details on your systems hardware as well. Its worth the download for all its other features as well.  Not meaning to be argumentative here Rich, that&#039;s just my opinion.</description> <content:encoded><![CDATA[<p>I was just thinking the same thing as Steve.  Not only does Belarc generate a list of the software on your computer, I think its an easier list to obtain than going through the procedure that you just described.  Additionally, Belarc gives you some really nice details on your systems hardware as well. Its worth the download for all its other features as well.  Not meaning to be argumentative here Rich, that&#8217;s just my opinion.</p> ]]></content:encoded> </item> <item><title>By: Rich Menga</title><link>http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/comment-page-1/#comment-34698</link> <dc:creator>Rich Menga</dc:creator> <pubDate>Mon, 09 Nov 2009 13:23:57 +0000</pubDate> <guid
isPermaLink="false">http://www.pcmech.com/article/how-to-generate-a-list-of-every-program-installed-on-your-pc/#comment-34698</guid> <description>Yes, but didn&#039;t want to download software just to generate a simple text list. It&#039;s the same as if I said &quot;download CCleaner to get a list of all your installed stuff&quot;, which you can do via Tools/Uninstall/Save to Text File. Using any software to generate a list like that is complete overkill.</description> <content:encoded><![CDATA[<p>Yes, but didn&#8217;t want to download software just to generate a simple text list. It&#8217;s the same as if I said &#8220;download CCleaner to get a list of all your installed stuff&#8221;, which you can do via Tools/Uninstall/Save to Text File. Using any software to generate a list like that is complete overkill.</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc
Database Caching 35/53 queries in 0.023 seconds using apc
Content Delivery Network via pcmech.pcmediainc.netdna-cdn.com

Served from: www.pcmech.com @ 2012-02-15 13:57:53 -->
