<?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>Otak Atik [dot] Com &#187; driver</title>
	<atom:link href="http://www.otakatik.com/tag/driver/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.otakatik.com</link>
	<description>Empowering Computer</description>
	<lastBuildDate>Wed, 25 Jan 2012 09:06:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Obtain Detail of Installed Drivers</title>
		<link>http://www.otakatik.com/obtain-detail-of-installed-drivers/</link>
		<comments>http://www.otakatik.com/obtain-detail-of-installed-drivers/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 02:19:03 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[MS-DOS]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[DOS Command]]></category>
		<category><![CDATA[driver]]></category>
		<category><![CDATA[driverquery]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/obtain-detail-of-installed-drivers/</guid>
		<description><![CDATA[To obtain of your all installed drivers on computer, you can browse them with Device Manager. You can find Device Manager in Control Panel –System, click Hardware tab, and then click Device Manager button. You can get your entire devices there including the troubled drivers. But the negative sides are you’re can’t get drivers information [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/logo.jpg" alt="Logo" title="Logo" align="left" />To obtain of your all installed drivers on computer, you can browse them with Device Manager. You can find Device Manager in <strong>Control Panel –System</strong>, click <strong>Hardware </strong>tab, and then click <strong>Device Manager</strong> button. You can get your entire devices there including the troubled drivers. But the negative sides are you’re can’t get drivers information enough with Device Manager. Thanks to Microsoft who has been provide a great tool to create detail information of entire device drivers.<span id="more-33"></span><br />
This tool calls <code>DriverQuery</code>, it is a command prompt tool. So, you need open your DOS console first before using it.<br />
Follow this tutorial:<br />
1. Click <strong>Start – Run</strong> menu (or press Windows + R keys), in Run textbox type <code>cmd</code>, and then click OK button or press Enter key.<br />
<img src="http://www.otakatik.com/wp-content/uploads/general/run-dialog-cmd.jpg" alt="Type cmd in textbox" title="Type cmd in textbox" /></p>
<p>2. Types at prompt <em>driverquery</em> then press Enter key to display entire your installed drivers.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/driver_1.jpg" alt="Driverquery" title="Driverquery command" /></p>
<p>3. And the power of <code>driverquery</code> is not only display result like that. You can use the parameter to optimize it. And this is driverquery parameters list:</p>
<pre name="code" class="html">
- /s Computer [Specifies the name or IP address of the computer.]- /u Domain\User [Specifies the domain and user account name to be used to run the command.]
- /p Password [Specifies the password for the user specified with the /s Computer parameter.]
- /fo {Table | List | CSV} [Used to specify the format of the output. You can choose to display the output in Table, List, or CSV format.]
- /nh [Used to suppress the display of column headers in the output.]
- /v [Used to obtain detailed information about all device drivers installed on the specified computer].
- /si [Used to obtain information about signed and unsigned device drivers.]</pre>
<p>4. For examples; type <code>driverquery /nh</code> to get result without columns header; type <code>driverquery /v</code> to get detail drivers information; <code>type driveryquery /si</code> to display the status of drivers are signed or unsigned; type <code>driverquery \\server_mysql /u office_1\farrel /p **** /fo List</code> to get drivers information from remote computer server_mysql where located in <strong>office_1</strong> domain and using <strong>farrel </strong>account and my password.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/driver_2.jpg" alt="Driverquery" title="Driverquery command" /></p>
<p>5. Then, I focus on <code>/v</code> and <code>/fo</code> parameters to help us exporting the result to spreadsheet application so that you can read it easily. OK, first step is export the drivers list and its information to a csv file by type <code>driverquery /v /fo csv &gt; your_own_file_result.csv</code> then Enter. Change your_own_file_result.csv name with yours. For example; if you want save the csv file into C:\Data folder and give it name: my_drivers.csv, type <code>driverquery /v /fo csv &gt; c:\data\my_drivers.csv</code> then press Enter.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/export_command_3.jpg" alt="Export command" title="Export command" /></p>
<p>6. Now, you’ve had my_drivers.csv file which contains information of entire drivers in C:\Data folder.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/my_driver_4.jpg" alt="The csv file" title="The csv file" /></p>
<p>7. Then I want to export it to Microsoft Excel. Open Microsoft Excel, click <strong>Data – Import External Data – Import Data</strong> menu,<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/import_data_menu_5.jpg" alt="Import csv file" title="Import csv file" /></p>
<p>in <strong>Select Data Source</strong> dialog pointing to your csv file, change <strong>Files of type</strong> to <strong>Text file</strong> to display your csv files (in my case I was pointing it to C:\Data folder and choose my_drivers.csv file), and click <strong>Open </strong>button.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/select_source_6.jpg" alt="Select source" title="Select source" /></p>
<p>8. In <strong>Text Import Wizard – Step 1 of 3</strong> dialog, leave <strong>Delimited </strong>is chosen, click <strong>Next </strong>button,<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/tiw_7.jpg" alt="Select delimited" title="Select delimited" /></p>
<p>click <strong>Comma</strong> check box as Delimiters,<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/tiw_8.jpg" alt="Select delimited" title="Select delimited" /></p>
<p>click <strong>Next</strong> button You can set columns type data in third step but I leave it as their default type, and then click <strong>Finish</strong> button.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/tiw_9.jpg" alt="Select delimited" title="Select delimited" /></p>
<p>9. If you ask the location to put the data, locate it where you want (I suggest to put it to <strong>New Worksheet</strong>), and then click <strong>OK</strong> button.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/import_data_10.jpg" alt="Select result location" title="Select result location" /></p>
<p>10. Now you can read them one by one easily. And the most important is you can analyze them, which are drivers have big size and use your resource by significance. If you&#8217;re already know, you can take the next action to optimize your computer.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/result_11.jpg" alt="Result" title="Result" /><br />
<em>(article no:0121)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/obtain-detail-of-installed-drivers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

