<?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; windows tutorial</title> <atom:link href="http://www.ghacks.net/tag/windows-tutorial/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 20:51:26 +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>How To Edit, Reset The Windows Hosts File</title><link>http://www.ghacks.net/2011/03/06/how-to-edit-reset-the-windows-hosts-file/</link> <comments>http://www.ghacks.net/2011/03/06/how-to-edit-reset-the-windows-hosts-file/#comments</comments> <pubDate>Sun, 06 Mar 2011 11:47:44 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Tutorials Basic]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[hosts file]]></category> <category><![CDATA[windows hosts file]]></category> <category><![CDATA[windows tutorial]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=42133</guid> <description><![CDATA[The question came just up again and I realized that I have never posted a tutorial about editing and reseting the Windows Hosts file. I&#8217;d like to take a look at the Host file&#8217;s functionality first. The Windows Hosts file can be used to block or redirect hostnames. A hostname is the core part of [...]]]></description> <content:encoded><![CDATA[<p>The question came just up again and I realized that I have never posted a tutorial about editing and reseting the Windows Hosts file. I&#8217;d like to take a look at the Host file&#8217;s functionality first.</p><p>The Windows Hosts file can be used to block or redirect hostnames. A hostname is the core part of a web address or local address, for instance ghacks.net or localhost. Each hosts file entry specifies an IP address and a hostname, which basically tells the system that the hostname should be resolved with that IP address.</p><p>The DNS server, that is usually queried, is bypassed for all entries in the Hosts file. Let me give you two examples where this may be beneficial. Users could block known advertising companies or spammers by redirecting requests to the local PC. This basically loads nothing when a website tries to load an advertisement, popup or other element.</p><p>Another example are web developers. Say you just moved your website to a new server and the IP changed in the process. DNS servers need up to 48 hours to propagate, which means that it is difficulty to test the website on the new server after the move if the DNS server is still redirecting the request to the old server. The web developer could assign the new IP address to the website to avoid the propagation issue. (Please see <a
href="http://www.ghacks.net/2009/11/28/work-on-websites-before-dns-propagation/">Work On Websites Before DNS Propagation</a> for a detailed guide on that subject)</p><p>It has to be noted that the Hosts file can also be exploited by malicious software, either by redirecting the user from legit sites to questionable ones, or by blocking access to security software that they might need to remove those programs again from the PC.</p><h3>The location of the Windows Hosts file</h3><p>The Windows Hosts file is located under the following path:</p><p><strong>%SystemRoot%\system32\drivers\etc\</strong></p><p>The %SystemRoot% in the beginning is a variable that is set to the Windows directory. Most Windows users have installed the operating system on c:\windows which would mean that the hosts file can be found under <strong>c:\windows\system32\drivers\etc\hosts</strong></p><p>It may be necessary to display hidden system folders if Windows Explorer is used to navigate to the folder. A click on Tools > Folder Options in Windows Explorer and a switch to the View tab opens a configuration menu where hidden folders can be set to be revealed. Locate &#8220;hide protected operating system files&#8221; and &#8220;hidden files and folders&#8221; and make sure that the former is unchecked, and that the latter is set to &#8220;Show hidden files, folders and drives&#8221;. The settings can be easily reversed this way when needed.</p><p><a
href="http://www.ghacks.net/wp-content/uploads/2011/03/hidden-folders.jpg"><img
src="http://www.ghacks.net/wp-content/uploads/2011/03/hidden-folders.jpg" alt="hidden folders" title="hidden folders" width="396" height="481" class="alignnone size-full wp-image-42136" /></a></p><p>The Hosts file itself can be edited with any plain text editor, Notepad for instance which ships with Windows. You should check first if the Hosts file is write protected. This is done by right-clicking the file and selecting properties from the opening context menu.</p><p>Look at the attributes section of the General tab. The file is write protected if read-only is checked. If it is, remove the entry. If you keep the read-only setting it is not possible to edit or reset the hosts file. Remember to set the read-only attribute again once you are finished to prevent third party editing of the hosts file.</p><p><a
href="http://www.ghacks.net/wp-content/uploads/2011/03/hosts-properties.jpg"><img
src="http://www.ghacks.net/wp-content/uploads/2011/03/hosts-properties.jpg" alt="hosts properties" title="hosts properties" width="377" height="355" class="alignnone size-full wp-image-42138" /></a></p><p>The default Windows Hosts file has no active entries. Please note that a line beginning with # is a comment line which will not be executed or processed.</p><p><a
href="http://www.ghacks.net/wp-content/uploads/2011/03/windows-hosts-file.jpg"><img
src="http://www.ghacks.net/wp-content/uploads/2011/03/windows-hosts-file-550x332.jpg" alt="windows hosts file" title="windows hosts file" width="550" height="332" class="alignnone size-medium wp-image-42137" /></a></p><h3>Editing the Windows Hosts file</h3><p>Take a look at the examples in the comments. The syntax is always the same, first the IP address that you want to redirect the hostname to, then the hostname separated by at least one space.</p><ul><li>To add entries to the hosts file you would enter the IP address first in the next blank line, followed by a space (or by pressing tab) and the hostname (which can be a domain name or localhost).</li><li>To delete Windows Hosts file entries select the whole line and press the delete button on the keyboard.</li><li>To edit individual entries click in the line of the mapping that you want to edit and make the changes.</li><li>To reset the hosts file simply remove all lines that are not comments. Microsoft has created a Fix-Ii solution to reset the hosts file which can be used instead. Users just have to execute the program once they have downloaded it to the local system. The main benefit is that they do not need to go through the manual process this way.</li></ul><p>Please note that you need to save the changes before they become available. In Notepad you would select File > Save from the menu to do that.</p><p>And that&#8217;s how your edit and reset the Windows Hosts file. Please leave any open questions or comments in the comment section below.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2011/03/06/how-to-edit-reset-the-windows-hosts-file/feed/</wfw:commentRss> <slash:comments>17</slash:comments> </item> <item><title>How To Improve Uninstall A Program In Windows</title><link>http://www.ghacks.net/2010/06/06/how-to-improve-uninstall-a-program-in-windows/</link> <comments>http://www.ghacks.net/2010/06/06/how-to-improve-uninstall-a-program-in-windows/#comments</comments> <pubDate>Sun, 06 Jun 2010 18:01:47 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Tutorials Basic]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[uninstall]]></category> <category><![CDATA[uninstall a program]]></category> <category><![CDATA[uninstall an update]]></category> <category><![CDATA[uninstallation]]></category> <category><![CDATA[windows tutorial]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=26250</guid> <description><![CDATA[Many experienced Windows users do not use the default Uninstall A Program control panel applet in Windows. Not so much because it is not comfortable to use but more because of it solely relying on the uninstall routine of the application itself. Data leftovers in the Registry and file system tend to clutter the system [...]]]></description> <content:encoded><![CDATA[<p>Many experienced Windows users do not use the default Uninstall A Program control panel applet in Windows. Not so much because it is not comfortable to use but more because of it solely relying on the uninstall routine of the application itself. Data leftovers in the Registry and file system tend to clutter the system and can influence a system&#8217;s stability in worst case.</p><p><span
id="more-26250"></span>Software uninstallers such as <a
href="http://www.ghacks.net/tag/revo-uninstaller/">Revo Uninstaller</a> or <a
href="http://www.ghacks.net/2010/05/26/uninstall-software-completely-with-iobit-uninstaller/">IOBit Uninstaller</a> perform a scan of the operating system after the uninstallation to catch those leftovers giving the user the choice to keep or delete them.</p><p>These uninstallers have another advantage over the standard Windows uninstallation Control Panel applet as they provide the user with additional information about the installed programs.</p><p>Uninstall A Program displays up to five information about each program: Name, Publisher, Installed On, Size and Version. It does not display information about the program path, date the program was last used on, installation source and multiple others that might be useful to the computer users.</p><div
id="attachment_26251" class="wp-caption alignnone" style="width: 509px"><img
src="http://www.ghacks.net/wp-content/uploads/2010/06/uninstall_a_program-499x332.png" alt="uninstall a program" title="uninstall a program" width="499" height="332" class="size-medium wp-image-26251" /><p
class="wp-caption-text">uninstall a program control panel</p></div><p>Revo Uninstaller, one of the most popular uninstallation programs, displays those additional information which adds to the usability of the application.</p><h3>Improving Uninstall A Program</h3><p>Users who are stuck with &#8211; or have to use &#8211; the Uninstall A Program applet can extend the information that are displayed in the table. A right-click on the header row in the window displays a context menu with a more link as the last entry.</p><div
id="attachment_26252" class="wp-caption alignnone" style="width: 510px"><img
src="http://www.ghacks.net/wp-content/uploads/2010/06/uninstall_program_options-500x330.png" alt="uninstall program options" title="uninstall program options" width="500" height="330" class="size-medium wp-image-26252" /><p
class="wp-caption-text">uninstall program options</p></div><p>The more link opens a new window in which the user can add or remove details from the program uninstallation window.</p><p>The details provided are extensive ranging from the program location on the local hard drive to contact information, installation source and readme or support information.</p><p>A click on a checkbox next to each detail will enable or disable the information in the software uninstallation window depending on its previous state.</p><div
id="attachment_26253" class="wp-caption alignnone" style="width: 368px"><img
src="http://www.ghacks.net/wp-content/uploads/2010/06/uninstall_program_details.png" alt="uninstall program details" title="uninstall program details" width="358" height="455" class="size-full wp-image-26253" /><p
class="wp-caption-text">uninstall program details</p></div><p>The same configuration window can be used to change the order of columns in Uninstall or change a program. The same effect is also available by dragging and dropping column headers directly in the main window.</p><p>Adding details to the software uninstallation control panel applet adds valuable information to that process. The installation location can for instance be important if multiple versions of the same program have been installed.</p><p>Not all details that are enabled provide information on every software entry on the other hand. Windows can retrieve some information like the last used date or installation location but developers are responsible for contact and support information for instance.</p><div
id="attachment_26254" class="wp-caption alignnone" style="width: 509px"><img
src="http://www.ghacks.net/wp-content/uploads/2010/06/uninstall_program-499x331.png" alt="uninstall program" title="uninstall program" width="499" height="331" class="size-medium wp-image-26254" /><p
class="wp-caption-text">uninstall program</p></div><p>The image above shows a modified uninstallation applet in Windows that is displaying the software name, publisher, size and installation location.</p><p>The same mechanism applies to uninstalling updates in Windows as well. It is possible to add and remove information from the window in the same way.</p><div
id="attachment_26255" class="wp-caption alignnone" style="width: 509px"><img
src="http://www.ghacks.net/wp-content/uploads/2010/06/uninstall_windows_update-499x331.png" alt="uninstall windows update" title="uninstall windows update" width="499" height="331" class="size-medium wp-image-26255" /><p
class="wp-caption-text">uninstall windows update</p></div><p>It can for instance be helpful to add the location of each installed Windows Update to the list so that identification and manual processing becomes easier.</p><p>Do you have additional tips about the standard Windows software and update uninstallation applet? Let us know in the comments.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/06/06/how-to-improve-uninstall-a-program-in-windows/feed/</wfw:commentRss> <slash:comments>30</slash:comments> </item> <item><title>How To Show Hidden Files In Windows 7</title><link>http://www.ghacks.net/2010/04/14/how-to-show-hidden-files-in-windows-7/</link> <comments>http://www.ghacks.net/2010/04/14/how-to-show-hidden-files-in-windows-7/#comments</comments> <pubDate>Wed, 14 Apr 2010 07:50:19 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Tutorials Basic]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[folder options]]></category> <category><![CDATA[hidden files]]></category> <category><![CDATA[hidden folders]]></category> <category><![CDATA[windows 7]]></category> <category><![CDATA[windows tutorial]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=24486</guid> <description><![CDATA[The Windows 7 operating system, like its predecessors Windows Vista and Windows XP, hides certain files by default. This is largely done to protect system and application files from users who may attempt to delete or modify them. There are four different hide options in Window 7: protected operating system files, files and folders with [...]]]></description> <content:encoded><![CDATA[<p>The Windows 7 operating system,  like its predecessors Windows Vista and Windows XP, hides certain files by default. This is largely done to protect system and application files from users who may attempt to delete or modify them. There are four different hide options in Window 7: protected operating system files, files and folders with the hidden flag, hidden drives and file extensions. The hidden file feature often confuses users looking for a specific file or folder, since so long as it is hidden the data cannot be accessed directly in Windows Explorer.</p><p><span
id="more-24486"></span><strong>How To Show Hidden Files In Windows 7</strong></p><p>All settings related to hidden files and folders are configurable in the Folder Option dialog. The easiest way to get there is to click on the Control Panel in the Start menu. A click on the Appearance and Personalization category will display a link to the Folder Options where the hidden file and folder settings can be configured. Another option is to open a Windows Explorer window, click the Organize link in the toolbar, and from there click on Folder and Search options. The Hidden files and folders options are to be found on the View tab under Advanced Settings.</p><p><img
class="alignnone size-full wp-image-24487" title="how to show hidden files in windows 7" src="http://www.ghacks.net/wp-content/uploads/2010/04/how_to_show_hidden_files_in_windows_7.jpg" alt="" width="393" height="478" /></p><p>The four entries of relevance in this menu are:</p><ul><li>Hidden files and folders</li><li>Hide empty drives in the Computer folder</li><li>Hide extensions for known file types</li><li>Hide protected operating system files (Recommended)</li></ul><p><strong>Hidden files and folders</strong></p><p>The NTFS file system used by Windows supports several attributes that can be assigned to files, such as Read Only, Encrypted, Compressed and Hidden. Hidden files and folders are simply normal files with the Hidden attribute. Windows Explorer will not display files with the Hidden attribute to the user if the Folder Options setting is configured as such, however the operating system and applications have normal access to such files. Changing the Windows Explorer setting to &#8220;Show hidden files, folders and drives&#8221; will enable the user to see all hidden files and folders, with the exception of protected operating system files.</p><p><strong>Hide protected operating system files</strong></p><p>Operating system files are files that get installed with Windows 7. These files are necessary for the operation of the system. Windows users come usually into contact with these files only when they follow a tweaking guide that asks them to manipulate such a file.</p><p>Removing the checkmark from the selection box displays all protected operating system files in Windows Explorer. This is not recommended as it increases the chance that these files may be edited or deleted accidentally by the user.</p><p><strong>Hide extensions for known file types</strong></p><p>Windows 7 hides the file extensions of known file types by default. This mean that file.txt will be displayed simply as &#8220;file&#8221;, and application.exe will be displayed simply as &#8220;application&#8221;. This setting is often problematic as it sometimes becomes difficulty to identify a file type by its icon  alone. It is generally recommended to display file extensions all the time to avoid this problems and make file identification easier.</p><p><strong>Hide empty drives in the computer folder</strong></p><p>Empty drives such as empty DVD drives are hidden by default in the Windows 7 operating system. This is an interesting feature that might cause some confusion, especially on new PCs. Users who do not see their DVD drive in My Computer might think that it is not properly installed. Users who wish to display all drives all the time can uncheck the associated option to hide empty drives.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/04/14/how-to-show-hidden-files-in-windows-7/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Analyzing Windows Shutdown Performance</title><link>http://www.ghacks.net/2009/01/21/analyzing-windows-shutdown-performance/</link> <comments>http://www.ghacks.net/2009/01/21/analyzing-windows-shutdown-performance/#comments</comments> <pubDate>Wed, 21 Jan 2009 19:33:22 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Tutorials Basic]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[diagnostics performance]]></category> <category><![CDATA[event viewer]]></category> <category><![CDATA[shutdown]]></category> <category><![CDATA[shutdown performance]]></category> <category><![CDATA[shutdown performance monitoring]]></category> <category><![CDATA[windows shutdown]]></category> <category><![CDATA[windows tips]]></category> <category><![CDATA[windows tutorial]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=10043</guid> <description><![CDATA[Windows Shutdown usually takes only a matter of seconds before the computer shuts down. It can take longer if commands or applications are executed at shutdown &#8211; like cleaning temporary files or the pagefile &#8211; or if a driver or program does not respond properly to the shutdown command. One of the better additions of [...]]]></description> <content:encoded><![CDATA[<p>Windows Shutdown usually takes only a matter of seconds before the computer shuts down. It can take longer if commands or applications are executed at shutdown &#8211; like cleaning temporary files or the pagefile &#8211; or if a driver or program does not respond properly to the shutdown command. One of the better additions of the Windows Vista operating system is the advanced Event Viewer that can be used to analyze Windows shutdown performance problems easily. The very same possibility will be included in Microsoft&#8217;s next operating system Windows 7.</p><p>You can start the Event Viewer in Windows using the keyboard shortcut [Windows R], typing [eventvwr.msc] and hitting [enter]. Navigate in the Event Manager using the menu on the left side using the following path: Applications and Services Logs => Microsoft => Windows => Diagnostics-Performance => Operational. This will lead directly to the location that contains performance diagnostics not only for the Windows shutdown but also for standby and boot performance issues.</p><p>A good way to start is to sort the columns by Task Category. Click on the Task Category title and look for Shutdown Performance Monitoring entries. Each entry will contain information about the application or process that was causing problems during shutdown including the time it took to shutdown that process. A process that takes very long to shutdown is usually the problem for the shutdown problems.</p><p><span
id="more-10043"></span><img
src="http://www.ghacks.net/wp-content/uploads/2009/01/windows_shutdown-500x312.jpg" alt="windows shutdown" title="windows shutdown" width="500" height="312" class="alignnone size-medium wp-image-10044" /></p><p>Once the process or application has been identified it is a matter of finding out why it is causing the delay. It could be outdated or incompatible with that version of Windows and to a lesser extent a faulty version or driver. A good way to start is to look for updates for that software and install those if they are available. It might be easier on the other hand to simply deactivate or uninstall the software if that is possible.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/01/21/analyzing-windows-shutdown-performance/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> </channel> </rss>
