<?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>gHacks Technology News &#124; Latest Tech News, Software And Tutorials &#187; script</title> <atom:link href="http://www.ghacks.net/tag/script/feed/" rel="self" type="application/rss+xml" /><link>http://www.ghacks.net</link> <description>A technology news blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description> <lastBuildDate>Fri, 10 Feb 2012 16:53:42 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/> <item><title>Turn Off Computer Hardware With A Single Click</title><link>http://www.ghacks.net/2009/05/30/turn-off-computer-hardware-with-a-single-click/</link> <comments>http://www.ghacks.net/2009/05/30/turn-off-computer-hardware-with-a-single-click/#comments</comments> <pubDate>Sat, 30 May 2009 14:26:03 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[computer hardware]]></category> <category><![CDATA[devcon]]></category> <category><![CDATA[device-manager]]></category> <category><![CDATA[laptop]]></category> <category><![CDATA[netbook]]></category> <category><![CDATA[script]]></category> <category><![CDATA[turn off computer hardware]]></category> <category><![CDATA[windows software]]></category> <category><![CDATA[windows tips]]></category> <guid
isPermaLink="false">http://www.ghacks.net/2009/05/30/turn-off-computer-hardware-with-a-single-click/</guid> <description><![CDATA[Rarst inspired me to take a closer look at the command line utility devcon which has been created by Microsoft. Devcon is basically a command line version of the Windows Device Manager. We recently published an energy saving article that contained a tip to disable computer hardware to save power which is especially useful for [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://www.rarst.net/script/devcon/">Rarst</a> inspired me to take a closer look at the command line utility devcon which has been created by Microsoft. Devcon is basically a command line version of the Windows Device Manager. We recently published an energy saving article that contained a tip to disable computer hardware to save power which is especially useful for mobile computer systems like laptops or netbooks.</p><p>It is possible to write a simple batch script that can turn computer hardware off. Might be a handy for users who connect their mobile computer to a power source and use it on the road as well. They would simply turn off the unnecessary computer hardware on the road and turn it on again once it is connected to a power source again.</p><p><span
id="more-13179"></span>The creation does not require programming skills but you need to know a bit about the computer hardware installed on your system. Not all hardware should be disabled, possibilities include</p><ul><li>Audio Devices</li><li>Network Adapters</li><li>Wireless Networking Adapters</li><li>CD, DVD and Blu-Ray drives</li><li>Floppy drives</li><li>webcams, card readers and other peripherals</li></ul><p>You need three commands to work with devcon.</p><ul><li>devcon find</li><li>devcon disable</li><li>devcon enable</li></ul><p>Start by downloading <a
href="http://support.microsoft.com/kb/311272">devcon</a> from the official Microsoft website. Unpack it to a directory of your choice. It might be a good idea to put it into a directory that is listed in the system path of the operating system, e.g. /system32.</p><p>Open the Windows command line with [Windows R], [cmd], [enter].</p><p>Enter <strong>devcon find *</strong> to get a listing of all hardware devices. This can be a long list, you can use the following command to find a specific device (the command is case sensitive):</p><p><code>devcon find * | find "computer hardware identifier"</code></p><p>To find all Creative devices one could enter</p><p><code>devcon find * | find "Creative"</code></p><p><img
src="http://www.ghacks.net/wp-content/uploads/2009/05/computer_hardware-500x251.jpg" alt="computer hardware" title="computer hardware" width="500" height="251" class="alignnone size-medium wp-image-13178" /></p><p>The device in the screenshot above would be the Creative Soundblaster X-FI sound card. To disable that sound card one would use the following command</p><p><code>devcon disable PCI\VEN_1102</code></p><p>It is enough to add the unique identifier for the hardware device. Here are some tips to make the most out of the find command:</p><p><strong>Find all PCI devices</strong></p><p><code>devcon find * | find "PCI"</code></p><p><strong>Find all USB devices</strong></p><p><code>devcon find * | find "USB"</code></p><p>All that needs to be done now is to collect the unique identifiers for all computer hardware devices that should be turned off at times.</p><p>Create a new text document on the computer, name it disable.bat. Right-click it, select edit and add as many devcon disable lines to it as you want.</p><p><code>devcon disable PCI\VEN_1102<br
/> devcon disable PCI\VEN_1317<br
/> devcon disable USB\VID_1532</code></p><p>Now create a second batch file, name it enable.bat and use the following code (you basically exchange disable with enable)</p><p><code>devcon enable PCI\VEN_1102<br
/> devcon enable PCI\VEN_1317<br
/> devcon enable USB\VID_1532</code></p><p>That&#8217;s a basic script. You could add echo commands to it, combine the two scripts into one and beatify it further. The basic script on the other hand does what it is supposed to do.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/05/30/turn-off-computer-hardware-with-a-single-click/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Document Presentation For Websites</title><link>http://www.ghacks.net/2009/03/18/document-presentation-for-websites/</link> <comments>http://www.ghacks.net/2009/03/18/document-presentation-for-websites/#comments</comments> <pubDate>Wed, 18 Mar 2009 10:18:39 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Online Services]]></category> <category><![CDATA[The Web]]></category> <category><![CDATA[document]]></category> <category><![CDATA[document presentation]]></category> <category><![CDATA[documents]]></category> <category><![CDATA[javascript]]></category> <category><![CDATA[script]]></category> <category><![CDATA[view documents]]></category> <category><![CDATA[webmasters]]></category> <category><![CDATA[websites]]></category> <guid
isPermaLink="false">http://www.ghacks.net/2009/03/18/document-presentation-for-websites/</guid> <description><![CDATA[There is not really a standard out there for document presentation on websites. Many webmasters rely on widgets and scripts to display documents on their websites making it sometimes confusing for their visitors who have to deal with documents that they can only download and various interfaces for document presentations on the website itself. Doc [...]]]></description> <content:encoded><![CDATA[<p>There is not really a standard out there for document presentation on websites. Many webmasters rely on widgets and scripts to display documents on their websites making it sometimes confusing for their visitors who have to deal with documents that they can only download and various interfaces for document presentations on the website itself.</p><p>Doc Shots tries to bring in more control to the webmaster by allowing them to present documents on their websites easily. The visitor is able to view a selected document right on the website in an overlay with basic controls, such as downloading, printing, searching and zooming. It feels like a document viewer on the web and resembles desktop document viewers enough to make it easy for visitors to use it.</p><p>Webmasters have to be registered users of the service before they can configure Doc Shots for their website. Registration is free on the other hand and not problematic or time consuming at all. The configuration of the document presentation script can be customized by setting the width and height of the overlay window. Other options include the display of related items and document storing policies.</p><p><span
id="more-11317"></span><img
src="http://www.ghacks.net/wp-content/uploads/2009/03/document_presentation-500x354.jpg" alt="document presentation" title="document presentation" width="500" height="354" class="alignnone size-medium wp-image-11316" /></p><p>Webmasters receive a JavaScript code in the end that they have to embed in the source code of their website to make use of the document presentation engine. The script will automatically recognize popular document formats such as .doc, .pdf, .ppt, .xls. Hoovering over document links or clicking on the documents will open the document presentation overlay on the same website.</p><p>The first viewer will experience a small delay while opening the document as the conversion is initiated at that time. It is therefor a good idea to be the first viewer so that regular visitors do not experience the delay. Visitors can still right-click the document and save it to their computer system directly.</p><p>Update: The service does not seem to be available any longer.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/03/18/document-presentation-for-websites/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>Create Web based Powerpoint Presentations</title><link>http://www.ghacks.net/2007/12/15/create-web-based-powerpoint-presentations/</link> <comments>http://www.ghacks.net/2007/12/15/create-web-based-powerpoint-presentations/#comments</comments> <pubDate>Sat, 15 Dec 2007 11:20:47 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[The Web]]></category> <category><![CDATA[powerpoint]]></category> <category><![CDATA[script]]></category> <category><![CDATA[slideshows]]></category> <guid
isPermaLink="false">http://www.ghacks.net/2007/12/15/create-web-based-powerpoint-presentations/</guid> <description><![CDATA[Microsoft Powerpoint has one huge disadvantage. It only supports local presentations and offers no way to show a presentation to users of a conference that take part from different offices. Most companies send the presentation by email to those users but this is not the best solution in my opinion. ]]></description> <content:encoded><![CDATA[<p>Microsoft PowerPoint has one huge disadvantage. It only supports local presentations and offers no way to show a presentation to users of a conference that take part from different offices. Most companies send the presentation by email to those users but this is not the best solution in my opinion.</p><p><a
href="http://sourceforge.net/projects/slides/files/">Slide Presenter</a> offers a better one. It is a php based script that can run on any server that supports PHP. The administrator can create new presentations by adding images of the slides to it. Users can then connect to the website to see the current slide. The administrator manages the progression and decides which slide is currently seen on the website, much like a local presentation but with the major advantage that people from all over the world can connect and view the PowerPoint presentation online.</p><p>The presentation that has been created in Microsoft PowerPoint has to be saved as image slides which can be done directly in Powerpoint using the File > Save As menu. Just select a different format, jpg for instance, before saving the presentation. PowerPoint will then ask if you want to save the current slide or all slides. Select all slides which has the result that all slides of the presentation are saved as images.</p><p><span
id="more-2541"></span><img
src='http://www.ghacks.net/wp-content/uploads/2007/12/slide-presenter-admin.jpg' alt='slide presenter' /></p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2007/12/15/create-web-based-powerpoint-presentations/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>WordPress 2.31 is available</title><link>http://www.ghacks.net/2007/10/27/wordpress-231-is-available/</link> <comments>http://www.ghacks.net/2007/10/27/wordpress-231-is-available/#comments</comments> <pubDate>Sat, 27 Oct 2007 07:33:09 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[The Web]]></category> <category><![CDATA[Tools]]></category> <category><![CDATA[blog]]></category> <category><![CDATA[script]]></category> <category><![CDATA[windows live writer]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress update]]></category> <guid
isPermaLink="false">http://www.ghacks.net/2007/10/27/wordpress-231-is-available/</guid> <description><![CDATA[A new version of the blogging plattform Wordpress has been released today. It is an advised update for every webmaster especially for those with register_globals enabled. A security vulnerability was found that can be exploited if that setting is enabled. ]]></description> <content:encoded><![CDATA[<p>A new version of the blogging plattform WordPress has been released today. It is an advised update for every webmaster especially for those with register_globals enabled. A security vulnerability was found that can be exploited if that setting is enabled.</p><p>The new version fixes more than 20 bugs and security vulnerabilities. Some of the most important fixes include tagging support for Windows Live Writer, a login fix for blogs that have different WordPress and Blog addresses, faster taxonomy database queries, that emailed posts can now be assigned to the author if the email uses a hyphen and link importer fixes.</p><p>I had no troubles overwriting the files of my WordPress installation to speed up the process. A suggestion would be to backup your blog before you start the process.</p><p><span
id="more-2179"></span><strong>Read More:</strong></p><p><a
href="http://wordpress.org/download/">WordPress 2.31</a><br
/> <a
href="http://core.trac.wordpress.org/query?status=closed&amp;milestone=2.3.1&amp;resolution=fixed&amp;order=priority">WordPress Release Notes</a></p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2007/10/27/wordpress-231-is-available/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Free Online Conversions</title><link>http://www.ghacks.net/2006/12/09/free-online-conversions/</link> <comments>http://www.ghacks.net/2006/12/09/free-online-conversions/#comments</comments> <pubDate>Sat, 09 Dec 2006 14:14:58 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[The Web]]></category> <category><![CDATA[conversion]]></category> <category><![CDATA[convert]]></category> <category><![CDATA[documents]]></category> <category><![CDATA[file]]></category> <category><![CDATA[filetypes]]></category> <category><![CDATA[freeware]]></category> <category><![CDATA[image]]></category> <category><![CDATA[movie]]></category> <category><![CDATA[music]]></category> <category><![CDATA[script]]></category> <guid
isPermaLink="false">http://www.ghacks.net/2006/12/09/free-online-conversions/</guid> <description><![CDATA[Sometimes you download filetypes that your computer can't read because of a missing viewer or that you would like to transport to a portable device that only reads certain filetypes. Instead of download several programs that are able to convert the files you have into the filetypes that you need you could use the online file conversion website Zamzar to do the same.]]></description> <content:encoded><![CDATA[<p>Sometimes you download filetypes that your computer can&#8217;t read because of a missing viewer or that you would like to transport to a portable device that only reads certain filetypes. Instead of download several programs that are able to convert the files you have into the filetypes that you need you could use the online file conversion website <a
title="zamzar" href="http://www.zamzar.com/" target="_blank">Zamzar</a> to do the same.</p><p><a
title="zamzar convert filetypes" href="http://www.zamzar.com/conversionTypes.php" target="_blank">Zamzar</a> offers four different format categories which are: document, image, movie and music. Each category has a large list of formats that can be converted into each other. The following can be converted on the website:</p><p><span
id="more-992"></span></p><ul><li>text formats: csv, doc, odp, ods, odt, pdf, ppt and xls.</li><li>image formats: bmp, gif, jpg, tiff, ps</li><li>music fomats: ac3, au, flac, m4a, mp3, wav, wma</li><li>movie formats: avi, flv, gvi, mov, mp4, mpg</li></ul><p>As you can see there are plenty of possiblities to convert formats into each other. The maximum file limit is 100 megabytes which should be sufficient for most purposes.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2006/12/09/free-online-conversions/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
