<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>4sysops &#187; troubleshooting</title>
	<atom:link href="http://4sysops.com/archives/tag/troubleshooting/feed/" rel="self" type="application/rss+xml" />
	<link>http://4sysops.com</link>
	<description>For Windows Administrators</description>
	<lastBuildDate>Wed, 08 Feb 2012 20:25:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<image>
    <title>4sysops</title>
    <url>http://4sysops.com/4sysops-rss.png</url>
    <link>http://4sysops.com</link>
    <width>143</width>
    <height>49</height>
    <description>4sysops.com</description>
    </image>		<item>
		<title>Dedicated Administrator Connection (DAC) in SQL Server 2008 R2</title>
		<link>http://4sysops.com/archives/dedicated-administrator-connection-dac-in-sql-server-2008-r2/</link>
		<comments>http://4sysops.com/archives/dedicated-administrator-connection-dac-in-sql-server-2008-r2/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 20:05:23 +0000</pubDate>
		<dc:creator>Timothy Warner</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[sql server]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=7413</guid>
		<description><![CDATA[In this article you will learn how to obtain emergency access to a SQL Server 2008 R2 database instance by using the built-in Dedicated Administrator Connection (DAC) functionality.]]></description>
			<content:encoded><![CDATA[<p><strong><i>In this article you will learn how to obtain emergency access to a SQL Server 2008 R2 database instance by using the built-in Dedicated Administrator Connection (DAC) functionality.</i></strong></p>
<p>In Microsoft Windows, we have Safe Mode. In SQL Server 2008, we have the <a href="http://msdn.microsoft.com/en-us/library/ms189595.aspx">Dedicated Administrator Connection</a>, or DAC. We can use DAC to obtain emergency access to a SQL Server 2008 database instance in cases where the instance is blocked up, locked up, or just plain hosed.</p>
<p>SQL Server 2008 keeps a <a href="http://msdn.microsoft.com/en-us/library/ms177526.aspx">dedicated scheduler</a> available at all times for the DAC. Therefore, you should (almost) always be able to connect to SQL Server by using the DAC.</p>
<p>You can log into the SQL Server instance with a DAC while other users are logged in at the same time. However, only one DAC session is allowed at any one time.</p>
<h2>Enabling Dedicated Administrator Connection</h2>
<p>By default, local connections to a DAC are enabled in SQL Server 2008 R2. Therefore, you can use the DAC during an interactive logon or a quasi-local logon through <a href="http://en.wikipedia.org/wiki/Virtual_Network_Computing">VNC</a>, Remote Desktop Services, or the like.</p>
<p>To enable remote access to DAC, open an elevated command prompt on the SQL Server, start <strong><a href="http://msdn.microsoft.com/en-us/library/ms170207.aspx">sqlcmd</a></strong>, and issue the following instance configuration commands:</p>
<p><code>sp_configure 'remote admin connections', 1;<br />
GO<br />
RECONFIGURE;<br />
GO</code></p>
<p>In order to use the DAC, your domain or SQL Server user account must be a member of the <strong><a href="http://blog.sqlauthority.com/2008/12/27/sql-server-add-any-user-to-sysadmin-role-add-users-to-system-roles/">sysadmin</a></strong> server role.</p>
<h2>Accessing DAC from SSMS</h2>
<p>A common mistake that some DBAs use in trying to use DAC with SQL Server Management Studio (SSMS) is to attempt DAC access to Object Explorer instead of the Database Engine Query window.</p>
<p>That is, SQL Server 2008 will throw an error if you attempt to use DAC with a standard SSMS login.</p>
<p>Instead, fire up SSMS, cancel out of the logon dialog box, and instead click <strong>New &gt; Database Engine Query</strong>, as shown in Figure 1.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/11/Dedicated-Administrator-Connection-Starting-the-DAC-from-SSMS.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/11/Dedicated-Administrator-Connection-Starting-the-DAC-from-SSMS.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Dedicated Administrator Connection -Starting the DAC from SSMS" src="http://4sysops.com/wp-content/uploads/2011/11/Dedicated-Administrator-Connection-Starting-the-DAC-from-SSMS_thumb.png" alt="Dedicated Administrator Connection -Starting the DAC from SSMS" width="500" height="392" /></a></p>
<p><em>Starting the DAC from SSMS</em></p>
<p>In the <strong>Connect to Database Engine</strong> dialog box (shown in Figure 2), simply prepend <strong>admin:</strong> to the server name.</p>
<p><strong>NOTE</strong>: The admin: string is case insensitive. Therefore, <strong>ADMIN:</strong>, <strong>admin:</strong>, and <strong>AdMiN:</strong> are equivalent.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/11/Dedicated-Administrator-Connection-Logging-into-SQL-Server-with-the-DAC.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/11/Dedicated-Administrator-Connection-Logging-into-SQL-Server-with-the-DAC.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Dedicated Administrator Connection - Logging into SQL Server with the DAC" src="http://4sysops.com/wp-content/uploads/2011/11/Dedicated-Administrator-Connection-Logging-into-SQL-Server-with-the-DAC_thumb.png" alt="Dedicated Administrator Connection - Logging into SQL Server with the DAC" width="434" height="324" /></a></p>
<p><em>Logging into SQL Server with the DAC</em></p>
<h2>Accessing DAC from sqlcmd</h2>
<p>To access DAC from an elevated command prompt, simply add the <strong>–A</strong> parameter to the sqlcmd utility.</p>
<p>If you supply the command string <strong>sqlcmd –A</strong>, then SQL Server assumes the following regarding the connection attempt:</p>
<ul>
<li>Target server is localhost</li>
<li>Login credentials match the currently logged on OS user</li>
<li>Target database is the default database of the current user</li>
</ul>
<p>On the other hand, you can use additional switches to customize precisely how you enter the DAC environment. For instance, the following sample code connects us to a SQL Server machine named sqlsrv1 using the corp\admin Active Directory domain credentials. Additionally, we connect to the master database.</p>
<p><code>C:\&gt;sqlcmd –S sqlsrv1 –U corp\admin –P Pa$$w0rd –d master –A<br />
1&gt;</code></p>
<p>What can you do next?</p>
<p>Once you’ve logged into SQL Server by using the Dedicated Administrator Connection, you can issue <a href="http://msdn.microsoft.com/en-us/library/ms189826%28v=sql.90%29.aspx">Transact-SQL</a> statements to perform whatever troubleshooting and/or administrative tasks you need to undertake.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/11/Dedicated-Administrator-Connection-Accessing-the-DAC-by-using-sqlcmd.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/11/Dedicated-Administrator-Connection-Accessing-the-DAC-by-using-sqlcmd.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Dedicated Administrator Connection - Accessing the DAC by using sqlcmd" src="http://4sysops.com/wp-content/uploads/2011/11/Dedicated-Administrator-Connection-Accessing-the-DAC-by-using-sqlcmd_thumb.png" alt="Dedicated Administrator Connection - Accessing the DAC by using sqlcmd" width="500" height="335" /></a></p>
<p><em>Accessing the DAC by using sqlcmd</em></p>
<p>For instance, from the DAC you can perform the following actions:</p>
<ul>
<li>Run T-SQL scripts</li>
<li>Run <a href="http://msdn.microsoft.com/en-us/library/ms188796.aspx">DBCC</a> utility commands</li>
<li>Access <a href="http://msdn.microsoft.com/en-us/library/ms188754.aspx">Dynamic Management Views</a> (DMVs)</li>
<li>Access <a href="http://msdn.microsoft.com/en-us/library/ms174365.aspx">catalog views</a></li>
</ul>
<h2>Conclusion</h2>
<p>At this point you should have a firm understanding of what the Dedicated Administrator Connection (DAC) is in SQL Server 2008. You should also understand how to access the DAC by using the sqlcmd command-line utility as well as SQL Server Management Studio.</p>
Author: Timothy Warner
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/single-user-mode-in-sql-server-2008/" title="Single-user mode in SQL Server 2008 (November 29, 2011)">Single-user mode in SQL Server 2008</a> (0)</li>
	<li><a href="http://4sysops.com/archives/four-fast-ways-to-improve-security-in-sql-server-2008-r2/" title="Four fast ways to improve security in SQL Server 2008 R2 (November 22, 2011)">Four fast ways to improve security in SQL Server 2008 R2</a> (12)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-2-usage-and-privacy/" title="Microsoft System Center Advisor &#8211; Part 2: Usage and privacy (June 14, 2011)">Microsoft System Center Advisor &#8211; Part 2: Usage and privacy</a> (0)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-1-overview-and-installation/" title="Microsoft System Center Advisor &#8211; Part 1: Overview and installation (June 13, 2011)">Microsoft System Center Advisor &#8211; Part 1: Overview and installation</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-simplesysinfo-a-customizable-system-information-tool-for-windows/" title="FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows (May 19, 2011)">FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/dedicated-administrator-connection-dac-in-sql-server-2008-r2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Microsoft System Center Advisor &#8211; Part 2: Usage and privacy</title>
		<link>http://4sysops.com/archives/microsoft-system-center-advisor-part-2-usage-and-privacy/</link>
		<comments>http://4sysops.com/archives/microsoft-system-center-advisor-part-2-usage-and-privacy/#comments</comments>
		<pubDate>Tue, 14 Jun 2011 19:15:50 +0000</pubDate>
		<dc:creator>Paul Schnackenburg</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[system center]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=6219</guid>
		<description><![CDATA[In part 2 of this overview of System Center Advisor we look at how SCA helps with troubleshooting, the different parts of the console, the data that’s collected and conclude with a look at the future of SCA.]]></description>
			<content:encoded><![CDATA[<p><strong><i>In part 2 of this overview of System Center Advisor we look at how SCA helps with troubleshooting, the different parts of the console, the data that’s collected and conclude with a look at the future of SCA.</i></strong></p>
<p>Part 1 of this review gave an <a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-1-overview-and-installation/">overview of System Center Advisor</a>. Today, I will discuss how SCA can be integrated in your network.</p>
<p>A typical troubleshooting session without SCA starts when you’re tracking down a problem; when you’ve identified the symptoms and any event log / error log messages you use your favorite search engine to try to come up with a solution. This can sometimes take hours of searching and implementing different solutions until the right one is found.</p>
<h2>Using System Center Advisor</h2>
<p>Sometimes, having gone through the above process and not fixed it you reach for the phone and call Microsoft’s support. They have a checklist of configuration items and will work through this with you. The vision of SCA is to help you avoid the trawling of forums and KB articles as well inspecting the checklist for you and simply present a solution based on your particular configuration. Each item that is surfaced in SCA has a thorough explanation of the context and why the issue might appear as well as details of how to fix it.</p>
<p>If you have a decentralized IT departmental structure or if you’re a consultant that uses SCA across multiple companies you can create one company per department and select each of them in a drop down menu. Users are divided into administrator roles and user roles. The only difference between the two is that users can’t close accounts or create additional users. Otherwise a normal user can do all other activities available in the console.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/06/System.Center.Advisor.Console.Configuration.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/06/System.Center.Advisor.Console.Configuration.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none; border: 0px;" title="System Center Advisor - Console Configuration" src="http://4sysops.com/wp-content/uploads/2011/06/System.Center.Advisor.Console.Configuration_thumb.png" border="0" alt="System Center Advisor - Console Configuration" width="604" height="443" /></a><em></em></p>
<p><em>System Center Advisor Console Configuration</em></p>
<p>The console itself has several panes; the first gives a list of current critical and warning alerts and can be sorted by severity and / or server name. The Current Configuration pane presents all relevant data that you’d need at the time of troubleshooting in one place, whereas the Change History panel is my personal favorite. Think about it, if you’re helping someone troubleshoot, isn’t your first question – “what did you change”? And the answer is (almost always); “nothing”. So this panel keeps track of recent configuration changes that could be the cause of your current troubleshooting woes.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/06/System.Center.Advisor.Console.History.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/06/System.Center.Advisor.Console.History.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none; border: 0px;" title="System Center Advisor - Console History" src="http://4sysops.com/wp-content/uploads/2011/06/System.Center.Advisor.Console.History_thumb.png" border="0" alt="System Center Advisor - Console History" width="604" height="237" /></a><em></em></p>
<p><em>System Center Advisor Console History</em></p>
<p>The other difference between SCA and other monitoring products like SCOM is that the suggestions offered by SCA will change over time, as hotfixes and updates are incorporated into Service Packs and Update Rollups they will be retired from SCA when you’ve upgraded your servers.</p>
<h2>Data collected by Systems Center Advisor</h2>
<p>SCA looks in the registry, event logs and the SQL error logs for its data as well as using WMI calls, SQL OleDB queries to understand your environment. There’s a full list of what data is collected in an Excel spread sheet (see resources).</p>
<p>Data collected is stored in XML files, these are compressed into a CAB file and subsequently copied to the gateway which then uploads these to your account. For companies that are worried about what data is uploaded to Microsoft’s cloud there’s a very comprehensive privacy statement, particularly making is crystal clear that no licensing information is included. For those of a suspicious nature it’s easy to open the cab files waiting to be uploaded on the gateway server and inspect the xml files directly to see what data is involved.</p>
<h2>Conclusion</h2>
<p>Exchange and SharePoint support is the next obvious step and is on the roadmap for SCA but won’t appear in the first release, which is due towards the end of the year. A future improvement that I hope Microsoft considers is integrating SCA into SCOM so that a separate online console isn’t necessary.</p>
<p>Overall SCA is an interesting product, perhaps paving the way for other parts of the Systems Center suite to be offered as cloud services in the future. It spotted several problems in my lab environment that I definitely wouldn’t have seen without extensive research.</p>
<h2>Resources</h2>
<p><a href="http://www.systemcenteradvisor.com">System Center Advisor homepage</a>
Go and sign up for the release candidate to get the feel for what SCA can do for your servers.</p>
<p><a href="http://connect.microsoft.com">Microsoft Connect</a>
The RC is supported through the connect site with forums and other resources.</p>
<p><a href="http://go.microsoft.com/fwlink/?LinkId=215200">System Center Advisor Configuration Data Points</a>
The Excel sheet that lists all the data points that SCA collects.</p>
<p><a href="http://channel9.msdn.com/Events/TechEd/NorthAmerica/2011/SIM349">Microsoft System Center Advisor Technical Overview</a>
System Center Advisor technical overview session at TechEd US last month.</p>
Author: Paul Schnackenburg
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/scom-2012-review-part-8-dashboards/" title="SCOM 2012 review &#8211; Part 8: Dashboards (December 28, 2011)">SCOM 2012 review &#8211; Part 8: Dashboards</a> (0)</li>
	<li><a href="http://4sysops.com/archives/scom-2012-review-part-7-linux-and-jee-monitoring/" title="SCOM 2012 review &#8211; Part 7: Linux and JEE monitoring (December 26, 2011)">SCOM 2012 review &#8211; Part 7: Linux and JEE monitoring</a> (4)</li>
	<li><a href="http://4sysops.com/archives/scom-2012-review-part-6-application-performance-monitoring-apm/" title="SCOM 2012 review &#8211; Part 6: Application Performance Monitoring (APM) (December 21, 2011)">SCOM 2012 review &#8211; Part 6: Application Performance Monitoring (APM)</a> (1)</li>
	<li><a href="http://4sysops.com/archives/scom-2012-review-part-5-network-monitoring/" title="SCOM 2012 review &#8211; Part 5: Network Monitoring (December 19, 2011)">SCOM 2012 review &#8211; Part 5: Network Monitoring</a> (0)</li>
	<li><a href="http://4sysops.com/archives/scom-2012-review-part-4-infrastructure-improvements/" title="SCOM 2012 review &#8211; Part 4: Infrastructure improvements (December 14, 2011)">SCOM 2012 review &#8211; Part 4: Infrastructure improvements</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/microsoft-system-center-advisor-part-2-usage-and-privacy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft System Center Advisor &#8211; Part 1: Overview and installation</title>
		<link>http://4sysops.com/archives/microsoft-system-center-advisor-part-1-overview-and-installation/</link>
		<comments>http://4sysops.com/archives/microsoft-system-center-advisor-part-1-overview-and-installation/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 08:45:10 +0000</pubDate>
		<dc:creator>Paul Schnackenburg</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[system center]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=6214</guid>
		<description><![CDATA[In part 1 of this two part review we look at what System Center Advisor is and how it works as well as how to deploy it.]]></description>
			<content:encoded><![CDATA[<p><strong><i>In part 1 of this two part review we look at what System Center Advisor is and how it works as well as how to deploy it.</i></strong></p>
<p>Imagine that you’re a systems administrator troubleshooting an SQL or AD server that’s misbehaving. Now envision a gadget that could send you all the accumulated knowledge and skill contained in a senior Microsoft field engineer to sit right next to you and help you. That gadget is not System Center Advisor, at least not yet, but the vision is there.</p>
<p>System Center Advisor (SCA), formerly known under the codename Atlanta is a new cloud service from Microsoft that assesses server configuration and helps you proactively avoid problems. It gives you access to current and historical configuration data as well as reducing downtime by proposing improvements and notifying you of updates.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/06/System.Center.Advisor.Console.Alert_.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/06/System.Center.Advisor.Console.Alert_.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none; border-width: 0px;" title="System Center Advisor - Console Alert" src="http://4sysops.com/wp-content/uploads/2011/06/System.Center.Advisor.Console.Alert_thumb.png" border="0" alt="System Center Advisor - Console Alert" width="604" height="372" /></a><em></em></p>
<p><em>System Center Advisor Console</em></p>
<h2>Overview of System Center Advisor</h2>
<p>As mentioned there’s no server infrastructure on site, only an agent to install on every server that you’d like to oversee with SCA. One (or more depending on the size of your environment) server is designated as the gateway through which the data from the other servers flow to the cloud.</p>
<p>You then login to www.systemcenteradvisor.com to access your company portal. The current release candidate is free and open to all but when the final product is released it will only be offered as part of Software Assurance (SA). This means that each product you want to monitor on each server, (Windows Server, SQL Server and in the future Exchange and SharePoint) needs to be covered by SA.</p>
<p>The products monitored currently are SQL Server 2008 and 2008 R2 as well as some Windows Server 2008 / 2008 R2 features, notably Active Directory (AD). This will be extended to cover additional products in the future. SCA is NOT a replacement for your current monitoring systems such as System Center Operations Manager – it doesn’t provide real time monitoring, instead collecting data every 4-8 hours, aggregating this once per day and uploading it once per day. SCA’s role is to proactively help you avoid downtime, not warn you when a server or service is already down. SCA is currently available in English only.</p>
<h2>Installation of System Center Advisor</h2>
<p><a href="http://4sysops.com/wp-content/uploads/2011/06/System.Center.Advisor.Deployment.Info_.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/06/System.Center.Advisor.Deployment.Info_.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none; border-width: 0px;" title="System Center Advisor - Deployment Info" src="http://4sysops.com/wp-content/uploads/2011/06/System.Center.Advisor.Deployment.Info_thumb.png" border="0" alt="System Center Advisor - Deployment Info" width="604" height="547" /></a></p>
<p><em>System Center Advisor Deployment Info</em></p>
<p>The agent is downloaded (31 MB in size) from the systemcenteradvisor.com website and installs in a minute with no reboot required. Deploying a gateway is just another check box in the wizard.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/06/System.Center.Advisor.Agent_.Installation.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/06/System.Center.Advisor.Agent_.Installation.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none; border-width: 0px;" title="System Center Advisor - Agent Installation" src="http://4sysops.com/wp-content/uploads/2011/06/System.Center.Advisor.Agent_.Installation_thumb.png" border="0" alt="System Center Advisor - Agent Installation" width="521" height="404" /></a></p>
<p><em>System Center Advisor Agent Installation</em></p>
<p>All data communication over the internet is protected by a digital certificate that’s generated when you sign up for SCA, during the installation of the gateway you have to point to this .pfx file. The gateway server needs outbound connectivity on port 80 and 443 while the agents only need network connectivity to the gateway server. Data volume is in the region of 100 KB per day per server.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/06/System.Center.Advisor.Agent_.Installation.Certificate.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/06/System.Center.Advisor.Agent_.Installation.Certificate.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none; border: 0px;" title="System Center Advisor - Agen Installation Certificate" src="http://4sysops.com/wp-content/uploads/2011/06/System.Center.Advisor.Agent_.Installation.Certificate_thumb.png" border="0" alt="System Center Advisor - Agen Installation Certificate" width="503" height="392" /></a></p>
<p><em>System Center Advisor Agent Installation Certificate</em></p>
<p>SCA utilises the same agent as Operations Manager 2007 R2 so if you don’t use SCOM in your environment that agent is installed. If you do have the SCOM agent already installed it’ll be put into multi homing mode and one channel will provide the information SCA is looking for while another channel will continue to gather normal SCOM data.</p>
<p>As the gateway syncs data to the cloud it also checks for updates to Management Packs as additional common problems are discovered by Microsoft’s support.</p>
<p>You can change the frequency at which uploads takes place as well as the scheduled time and day through documented registry settings. Likewise the agent can be configured for upload frequency (every 12 or 24 hours or once per week).</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/06/System.Center.Advisor.Registry.Settings.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/06/System.Center.Advisor.Registry.Settings.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none; border-width: 0px;" title="System Center Advisor - Registry Settings" src="http://4sysops.com/wp-content/uploads/2011/06/System.Center.Advisor.Registry.Settings_thumb.png" border="0" alt="System Center Advisor - Registry Settings" width="604" height="283" /></a></p>
<p><em>System Center Advisor Registry Settings</em></p>
<p>In the next post you will read how <a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-2-usage-and-privacy/">System Center Advisor helps with troubleshooting and what kind of data is sent to Microsoft&#8217;s cloud</a>.</p>
Author: Paul Schnackenburg
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/scom-2012-review-part-8-dashboards/" title="SCOM 2012 review &#8211; Part 8: Dashboards (December 28, 2011)">SCOM 2012 review &#8211; Part 8: Dashboards</a> (0)</li>
	<li><a href="http://4sysops.com/archives/scom-2012-review-part-7-linux-and-jee-monitoring/" title="SCOM 2012 review &#8211; Part 7: Linux and JEE monitoring (December 26, 2011)">SCOM 2012 review &#8211; Part 7: Linux and JEE monitoring</a> (4)</li>
	<li><a href="http://4sysops.com/archives/scom-2012-review-part-6-application-performance-monitoring-apm/" title="SCOM 2012 review &#8211; Part 6: Application Performance Monitoring (APM) (December 21, 2011)">SCOM 2012 review &#8211; Part 6: Application Performance Monitoring (APM)</a> (1)</li>
	<li><a href="http://4sysops.com/archives/scom-2012-review-part-5-network-monitoring/" title="SCOM 2012 review &#8211; Part 5: Network Monitoring (December 19, 2011)">SCOM 2012 review &#8211; Part 5: Network Monitoring</a> (0)</li>
	<li><a href="http://4sysops.com/archives/scom-2012-review-part-4-infrastructure-improvements/" title="SCOM 2012 review &#8211; Part 4: Infrastructure improvements (December 14, 2011)">SCOM 2012 review &#8211; Part 4: Infrastructure improvements</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/microsoft-system-center-advisor-part-1-overview-and-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows</title>
		<link>http://4sysops.com/archives/free-simplesysinfo-a-customizable-system-information-tool-for-windows/</link>
		<comments>http://4sysops.com/archives/free-simplesysinfo-a-customizable-system-information-tool-for-windows/#comments</comments>
		<pubDate>Fri, 20 May 2011 02:38:49 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[desktop management tools]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=6149</guid>
		<description><![CDATA[SimpleSysInfo is a free system information tool for Windows that allows you to retrieve any kind of system information because allows you to customize the displayed sysinfo.]]></description>
			<content:encoded><![CDATA[<p><strong><i>SimpleSysInfo is a free system information tool for Windows that allows you to retrieve any kind of system information because allows you to customize the displayed sysinfo.</i></strong></p>
<p>So many sysinfo tools exist for Windows, and I&#8217;m guessing you already have a couple of them in your tool box. But <a href="http://www.wieldraaijer.nl/">SimpleSysInfo</a> is worth a look. It is quite useful for help desk personnel who need to get an overview of a PC&#8217;s configuration, and it is also an interesting option for sys admins who have to retrieve the same PC settings frequently.</p>
<p>SimpleSysInfo displays system information in multiple tabs. Most of the data is useful for troubleshooting in a corporate environment. For instance, the NIC tab displays the IP address, whether DHCP is enabled, gateway and DNS information, etc. The operating system tab shows the service pack level, installation date, uptime, profile folder, and more. I made a screenshot of each of the tabs, so you can get an idea of the information that the free sysinfo tool provides. The fact that you can launch Windows tools such as the Registry Editor, System Restore, or Computer Management emphasizes the purpose of the program as a troubleshooting tool.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.General.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.General.png','',event,300,75)"><img style="margin: 0px; display: inline; border-width: 0px;" title="System Infomration Tool - SimpleSysInfo - General" src="http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.General_thumb.png" border="0" alt="System Infomration Tool - SimpleSysInfo - General" width="119" height="79" /></a> <a href="http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Operating.System.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Operating.System.png','',event,300,75)"><img style="margin: 0px; display: inline; border-width: 0px;" title="System Infomration Tool - SimpleSysInfo - Operating System" src="http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Operating.System_thumb.png" border="0" alt="System Infomration Tool - SimpleSysInfo - Operating System" width="119" height="79" /></a> <a href="http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Memory.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Memory.png','',event,300,75)"><img style="margin: 0px; display: inline; border-width: 0px;" title="System Infomration Tool - SimpleSysInfo - Memory" src="http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Memory_thumb.png" border="0" alt="System Infomration Tool - SimpleSysInfo - Memory" width="119" height="79" /></a> <a href="http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Proecessor.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Proecessor.png','',event,300,75)"><img style="margin: 0px; display: inline; border-width: 0px;" title="System Infomration Tool - SimpleSysInfo -Proecessor" src="http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Proecessor_thumb.png" border="0" alt="System Infomration Tool - SimpleSysInfo -Proecessor" width="119" height="78" /></a> <a href="http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Hard_.Drive_.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Hard_.Drive_.png','',event,300,75)"><img style="margin: 0px; display: inline; border-width: 0px;" title="System Infomration Tool - SimpleSysInfo - Hard Drive" src="http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Hard_.Drive_thumb.png" border="0" alt="System Infomration Tool - SimpleSysInfo - Hard Drive" width="119" height="79" /></a> <a href="http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Network.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Network.png','',event,300,75)"><img style="margin: 0px; display: inline; border-width: 0px;" title="System Infomration Tool - SimpleSysInfo - Network" src="http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Network_thumb.png" border="0" alt="System Infomration Tool - SimpleSysInfo - Network" width="119" height="78" /></a> <a href="http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Company.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Company.png','',event,300,75)"><img style="margin: 0px; display: inline; border-width: 0px;" title="System Infomration Tool - SimpleSysInfo -Company" src="http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Company_thumb.png" border="0" alt="System Infomration Tool - SimpleSysInfo -Company" width="119" height="79" /></a> <a href="http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Environment.Variables.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Environment.Variables.png','',event,300,75)"><img style="margin: 0px; display: inline; border-width: 0px;" title="System Infomration Tool - SimpleSysInfo -Environment.Variables" src="http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Environment.Variables_thumb.png" border="0" alt="System Infomration Tool - SimpleSysInfo -Environment.Variables" width="119" height="79" /></a> <a href="http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Registry.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Registry.png','',event,300,75)"><img style="margin: 0px; display: inline; border-width: 0px;" title="System Infomration Tool - SimpleSysInfo - Registry" src="http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Registry_thumb.png" border="0" alt="System Infomration Tool - SimpleSysInfo - Registry" width="119" height="78" /></a> <a href="http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Sound_.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Sound_.png','',event,300,75)"><img style="margin: 0px; display: inline; border-width: 0px;" title="System Infomration Tool - SimpleSysInfo -Sound" src="http://4sysops.com/wp-content/uploads/2011/05/system.infomration.tool_.SimpleSysInfo.Sound_thumb.png" border="0" alt="System Infomration Tool - SimpleSysInfo -Sound" width="119" height="79" /></a></p>
<p>But what makes SimpleSysInfo stand out is that it allows you to retrieve any kind of information from the Windows registry. For this, you have to edit the ini file that the system information tool creates when you launch it the first time. You can add any registry key that SimpleSysInfo should display in the Registry tab. Since the tool is portable, you can launch it on any Windows PC to retrieve any kind of information with just a mouse click.</p>
<p>This also makes the tool helpful for help desk staff. Admins can pre-configure the registry keys that contain information that is typically needed in your environment. All sysinfo data can be saved as an HTML file, an XML file, or a text file. You can also print or email the information right from SimpleSysInfo&#8217;s user interface. This allows help desk staff to easily forward the information to the second-level support.</p>
<p>Other useful features are the ability to automatically set environment variables whenever you launch the tool, and the ability to use the tool on the command prompt. The latter feature makes the system information tool scriptable.</p>
<p>I tested SimpleSysInfo 2.8 on Windows 7.</p>
<h2><a href="http://www.wieldraaijer.nl/">SimpleSysInfo</a></h2>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/raffle-manageengine-desktop-central-part-2-features/" title="Raffle: ManageEngine Desktop Central &#8211; Part 2: Features (December 7, 2011)">Raffle: ManageEngine Desktop Central &#8211; Part 2: Features</a> (2)</li>
	<li><a href="http://4sysops.com/archives/raffle-manageengine-desktop-central-part-1-overview/" title="Raffle: ManageEngine Desktop Central &#8211; Part 1: Overview (November 30, 2011)">Raffle: ManageEngine Desktop Central &#8211; Part 1: Overview</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-workspace-manager-express-a-roaming-user-profiles-alternative/" title="FREE: Workspace Manager Express &#8211; A roaming user profiles alternative (November 25, 2011)">FREE: Workspace Manager Express &#8211; A roaming user profiles alternative</a> (0)</li>
	<li><a href="http://4sysops.com/archives/spiceworks-installation-guide/" title="Spiceworks installation guide (November 17, 2011)">Spiceworks installation guide</a> (1)</li>
	<li><a href="http://4sysops.com/archives/dedicated-administrator-connection-dac-in-sql-server-2008-r2/" title="Dedicated Administrator Connection (DAC) in SQL Server 2008 R2 (November 15, 2011)">Dedicated Administrator Connection (DAC) in SQL Server 2008 R2</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/free-simplesysinfo-a-customizable-system-information-tool-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FREE: SysInternalsUpdater &#8211; Update Sysinternals Suite</title>
		<link>http://4sysops.com/archives/free-sysinternalsupdater-update-sysinternals-suite/</link>
		<comments>http://4sysops.com/archives/free-sysinternalsupdater-update-sysinternals-suite/#comments</comments>
		<pubDate>Mon, 16 May 2011 22:18:35 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=6124</guid>
		<description><![CDATA[SysInternalsUpdater is a free tool that allows you to download updates of the Sysinternals Suite tools.]]></description>
			<content:encoded><![CDATA[<p><strong><i>SysInternalsUpdater is a free tool that allows you to download updates of the Sysinternals Suite tools.</i></strong></p>
<p>Microsoft&#8217;s Sysinternals tools are essential for every Windows admin. The <a href="http://technet.microsoft.com/en-us/sysinternals/bb842062">Sysinternals Suite</a> is a collection of all Sysinternals troubleshooting tools. What all the Sysinternals utilities lack is an update feature. So you have to check regularly whether a new version is available. Or, you subscribe to 4sysops because I always publish a notice if an update of a Sysinternals tool is available. Yet another option is to use <a href="http://www.wieldraaijer.nl/">SysInternalsUpdater</a>.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/05/Update.Sysinternals.Suite_.SysinternalsUpdater.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/05/Update.Sysinternals.Suite_.SysinternalsUpdater.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none; border: 0px;" title="Update Sysinternals Suite - SysinternalsUpdater" src="http://4sysops.com/wp-content/uploads/2011/05/Update.Sysinternals.Suite_.SysinternalsUpdater_thumb.png" border="0" alt="Update Sysinternals Suite - SysinternalsUpdater" width="523" height="453" /></a></p>
<p>The free portable tool allows you to check for new Sysinternals updates. You can then select the tools you want to update, and SysInternalsUpdater will download them to your Sysinternals directory. After you launch the SysInternalsUpdater the first time, you have to tell the tool where it can find the Sysinternals Suite. The utility will store the information if you didn&#8217;t configure it to forget the settings on exit.</p>
<p>SysInternalsUpdater can automatically kill running Sysinternals programs before the update starts. But I guess it is better to do this manually.</p>
<p>More sophisticated tools to manage the Sysinternals Suite are the <a href="http://4sysops.com/archives/free-windows-system-control-center-launch-sysinternals-and-nirsoft-tools-from-the-web/">Windows System Control Center</a> and <a href="http://4sysops.com/archives/free-launcher-for-portable-applications-nirlauncher/">NirLauncher</a>. But if you just want to check for new versions, SysInternalsUpdater is a nice tool with a small footprint.</p>
<p>I tried SysInternalsUpdater 1.0.1 on Windows 7.</p>
<h2><a href="http://www.wieldraaijer.nl/">SysInternalsUpdater</a></h2>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/dedicated-administrator-connection-dac-in-sql-server-2008-r2/" title="Dedicated Administrator Connection (DAC) in SQL Server 2008 R2 (November 15, 2011)">Dedicated Administrator Connection (DAC) in SQL Server 2008 R2</a> (3)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-2-usage-and-privacy/" title="Microsoft System Center Advisor &#8211; Part 2: Usage and privacy (June 14, 2011)">Microsoft System Center Advisor &#8211; Part 2: Usage and privacy</a> (0)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-1-overview-and-installation/" title="Microsoft System Center Advisor &#8211; Part 1: Overview and installation (June 13, 2011)">Microsoft System Center Advisor &#8211; Part 1: Overview and installation</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-simplesysinfo-a-customizable-system-information-tool-for-windows/" title="FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows (May 19, 2011)">FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-evt-logparser-a-windows-event-log-parser/" title="FREE: EVT LogParser &#8211; A Windows event log parser (May 13, 2011)">FREE: EVT LogParser &#8211; A Windows event log parser</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/free-sysinternalsupdater-update-sysinternals-suite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FREE: EVT LogParser &#8211; A Windows event log parser</title>
		<link>http://4sysops.com/archives/free-evt-logparser-a-windows-event-log-parser/</link>
		<comments>http://4sysops.com/archives/free-evt-logparser-a-windows-event-log-parser/#comments</comments>
		<pubDate>Sat, 14 May 2011 01:46:16 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=6121</guid>
		<description><![CDATA[EVT LogParser is a free event log parser that allows you to filter output according full text search in the message text.]]></description>
			<content:encoded><![CDATA[<p><strong><i>EVT LogParser is a free event log parser that allows you to filter output according full text search in the message text.</i></strong></p>
<p>The new event log viewer that came with Windows Vista is a major improvement that every Windows admin should appreciate. The filter and search features are great. However, one tiny feature is missing. You can&#8217;t filter the output according to a full text search through its GUI. You can only use Event Viewer&#8217;s search function to find specific terms in the event log message. But this means that you have to jump from entry to entry, which can be a bit cumbersome in some situations. Of course, you can also write your own parser. If you don&#8217;t like to mess with XML, however, you should have a look at <a href="http://martin77s.wordpress.com/2010/01/16/evtlogparser/">EVT LogParser</a>.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/05/Windows.Event_.Log_.Parser.EvtLogParser.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/05/Windows.Event_.Log_.Parser.EvtLogParser.png','',event,300,75)"><span style="color: #2e2302;"> </span><img style="margin: 0px auto; display: block; float: none; border: 0px;" title="Windows Event Log Parser -EvtLogParser" src="http://4sysops.com/wp-content/uploads/2011/05/Windows.Event_.Log_.Parser.EvtLogParser_thumb.png" border="0" alt="Windows Event Log Parser -EvtLogParser" width="495" height="453" /></a></p>
<p>The free event log parser allows you to load saved event logs and then filter the output according to the event ID, event sources, event type, and a keyword in the message text. The latter feature is the only thing you can&#8217;t do with the Windows Event Viewer.</p>
<p>To save events, you have to select one of the Windows logs and then click &#8220;Save all events.&#8221; You can also use Event Viewer&#8217;s own filter and then use this output for your search in EVT LogParser.</p>
<p>Windows Vista, Windows 7, Windows Server 2008, and Windows Server 2008 R2 save event logs in the evtx format, which you can load into EVT LogParser when you run the tool on one of those Windows versions. If you use EVT LogParser on Windows XP, you can only load the old evt format because the event log parser uses the API of LogParser.dll to parse event logs.</p>
<p>You also can&#8217;t load evt files on Windows versions that work with the evtx format. However, you can convert the evt format to evtx if you have some old saved event logs that you would like to parse. You can load the evt file in Event Viewer on Windows 7 (or Vista) and save it as an evtx file. If you have many evt files you want to convert, you can use the Windows command tool WevtUTIL. The programmer of EVT LogParser has more information on his blog.</p>
<h2><a href="http://martin77s.wordpress.com/2010/01/16/evtlogparser/">EVT LogParser</a></h2>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/poll-are-you-currently-using-a-monitoring-solution/" title="Poll: Are you currently using a monitoring solution? (January 17, 2012)">Poll: Are you currently using a monitoring solution?</a> (11)</li>
	<li><a href="http://4sysops.com/archives/scom-2012-review-part-8-dashboards/" title="SCOM 2012 review &#8211; Part 8: Dashboards (December 28, 2011)">SCOM 2012 review &#8211; Part 8: Dashboards</a> (0)</li>
	<li><a href="http://4sysops.com/archives/scom-2012-review-part-7-linux-and-jee-monitoring/" title="SCOM 2012 review &#8211; Part 7: Linux and JEE monitoring (December 26, 2011)">SCOM 2012 review &#8211; Part 7: Linux and JEE monitoring</a> (4)</li>
	<li><a href="http://4sysops.com/archives/notifications-and-custom-commands-in-nagwinnrpe/" title="Notifications and Custom Commands in Nagwin/Nrpe (December 23, 2011)">Notifications and Custom Commands in Nagwin/Nrpe</a> (0)</li>
	<li><a href="http://4sysops.com/archives/scom-2012-review-part-6-application-performance-monitoring-apm/" title="SCOM 2012 review &#8211; Part 6: Application Performance Monitoring (APM) (December 21, 2011)">SCOM 2012 review &#8211; Part 6: Application Performance Monitoring (APM)</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/free-evt-logparser-a-windows-event-log-parser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FREE: TMnetSim Network Simulator &#8211; Simulate network latency and packet loss</title>
		<link>http://4sysops.com/archives/free-tmnetsim-network-simulator-simulate-network-latency-and-packet-loss/</link>
		<comments>http://4sysops.com/archives/free-tmnetsim-network-simulator-simulate-network-latency-and-packet-loss/#comments</comments>
		<pubDate>Thu, 12 May 2011 01:54:50 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=6090</guid>
		<description><![CDATA[The free Network Simulator TMnetSim allows you to simulate a poor or slow network connection by configuring network latency (packet delay) and packet loss between client and server.]]></description>
			<content:encoded><![CDATA[<p><strong><i>The free Network Simulator TMnetSim allows you to simulate a poor or slow network connection by configuring network latency (packet delay) and packet loss between client and server.</i></strong></p>
<p>Analysts keep preaching the cloud gospel, and it appears that quite a few CIOs have become believers. What many underestimate is that the connection between earth and heaven, respectively the cloud, can sometimes get clogged when too many believers knock on heaven&#8217;s door because they all want &quot;to be in&quot; (as Steve Ballmer would express it).</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/05/Network.Simulator.TMnetSim.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/05/Network.Simulator.TMnetSim.png','',event,300,75)"><img style="border-right-width: 0px; margin: 0px auto; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Network Simulator TMnetSim" border="0" alt="Network Simulator TMnetSim" src="http://4sysops.com/wp-content/uploads/2011/05/Network.Simulator.TMnetSim_thumb.png" width="604" height="303" /></a></p>
<p> So, before you leave the solid ground of your LAN to find blissfulness in higher spheres, you might want to simulate what happens when the network connection between your clients and the almighty cloud servers becomes slow. The free portable tool <a href="http://tmurgent.com/Tools.aspx">TMnetSim Network Simulator</a> enables you to simulate a poor or slow network connection in your lab.  
</p>
<p>TMnetSim sits between the client and the server and allows only as much network quality as you admit. You can launch the tool either on the client or on the server. It is also possible to run the client and server on the same computer. The configuration for these scenarios is a bit different. The example below explains how you have to set up TMnetSim on the server if you want to test a slow RDP connection.</p>
<p>First, you have to tell TMnetSim to listen to a free TCP port on the server. I used 3390 for this example. Then, you have to configure the destination to which TMnetSim will forward the packets. Since the Remote Desktop Session Host is on the same machine as TMnetSim in this configuration, you can use 127.0.0.1 as the outbound IP address. The RDP port is 3389 by default, which is why you have to use this as the outbound port (see screenshot above).</p>
<p>To connect the RDP client to the RDS host, you can use the IP address of the server. But instead of connecting to the default RDP port 3389, you have to tell your RDP client to connect to port 3390 (see screenshot below) because this is the port where TMnetSim is waiting for packets to be forwarded to the RDS host.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/05/Network.Simulator.TMnetSim.RDP_.client.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/05/Network.Simulator.TMnetSim.RDP_.client.png','',event,300,75)"><font color="#2e2302"></font><img style="border-bottom: 0px; border-left: 0px; margin: 0px auto; display: block; float: none; border-top: 0px; border-right: 0px" title="Network Simulator - TMnetSim - RDP client" border="0" alt="Network Simulator - TMnetSim - RDP client" src="http://4sysops.com/wp-content/uploads/2011/05/Network.Simulator.TMnetSim.RDP_.client_thumb.png" width="412" height="249" /></a> </p>
<p>TMnetSim supports two ways to simulate a bad network connection: You can configure the network latency (packet delay), or you can configure packet loss. For packet delays, you can choose between Fixed, Normal, Gaussian, and Markovian. A fixed packet delay gives you a general idea of how a slow network connection affects the performance of the application. But for a more realistic test, you should use one of the three other methods that work with a random network latency that is common in WANs.</p>
<p>The Markovian packet delay is the most realistic method. If you choose this method, you have to configure the Delay Base and the Jitter in milliseconds. The Jitter determines the maximum range the packet delay can vary. For instance, if you use a Delay Base of 1000ms and a Jitter of 200ms, TMnetSim will randomly choose a delay for each packet in the range from 900ms to 1100ms. More information about the different packet delay methods can be found in TMnetSim&#8217;s manual.</p>
<p>TMnetSim allows you to configure the network latency for the inbound and the outbound connection, but, to keep things simple, it is enough to use just one method. The configuration example above will let you experience a very jerky RDP connection. With a packet delay of 300ms, I could already feel the difference from a solid LAN connection.</p>
<p>Packet loss is quite common in WANs. TCP can compensate packet losses by retransmitting lost packets. However, this reduces the network&#8217;s throughput. Some higher protocols such as RDP have a low tolerance for packet loss. A loss rate of 3% in each direction can break an RDP connection.</p>
<p>After configuring the IP address, the ports, the network latency, and the packet loss, you have to click &quot;Start&quot; to make TMnetSim listen on the Inbound Connection port. As soon as the connection is established, the tool will display some useful data in the lower pane, such as the current packet delay, the bandwidth, or the lost packets. TMnetSim Network Simulator can also capture the packets and copy them to text files.</p>
<p>I tested TMnetSim Network Simulator 2.4.0.0 on Windows 7 and Windows Server 2008 R2.</p>
<p>Do you know of another good network simulator tool?</p>
<h2><a href="http://tmurgent.com/Tools.aspx">TMnetSim Network Simulator</a></h2>
<p>(Search for TMnetSim on the page.)</p>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/zenmap-windows-gui-for-nmap/" title="FREE: Zenmap: Windows GUI for nmap (January 3, 2012)">FREE: Zenmap: Windows GUI for nmap</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/" title="FREE: SolarWinds Real-Time Bandwidth Monitor (December 1, 2011)">FREE: SolarWinds Real-Time Bandwidth Monitor</a> (0)</li>
	<li><a href="http://4sysops.com/archives/dedicated-administrator-connection-dac-in-sql-server-2008-r2/" title="Dedicated Administrator Connection (DAC) in SQL Server 2008 R2 (November 15, 2011)">Dedicated Administrator Connection (DAC) in SQL Server 2008 R2</a> (3)</li>
	<li><a href="http://4sysops.com/archives/set-up-a-802-1x-in-a-active-directory-domain-part-2/" title="Set up a 802.1x in a Active Directory domain &#8211; Part 2 (August 29, 2011)">Set up a 802.1x in a Active Directory domain &#8211; Part 2</a> (5)</li>
	<li><a href="http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/" title="Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1 (August 22, 2011)">Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/free-tmnetsim-network-simulator-simulate-network-latency-and-packet-loss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FREE: SafeMSI &#8211; Installing in Safe Mode</title>
		<link>http://4sysops.com/archives/free-safemsi-installing-in-safe-mode/</link>
		<comments>http://4sysops.com/archives/free-safemsi-installing-in-safe-mode/#comments</comments>
		<pubDate>Fri, 15 Apr 2011 03:06:49 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=5972</guid>
		<description><![CDATA[SafeMSI is a simple free tool that starts the Windows Installer service, which is required for installing in Safe Mode in Windows 7 and Windows Vista.]]></description>
			<content:encoded><![CDATA[<p><strong><i>SafeMSI is a simple free tool that starts the Windows Installer service, which is required for installing in Safe Mode in Windows 7 and Windows Vista.</i></strong></p>
<p>By default, installing and uninstalling programs is disabled in Safe Mode in Windows 7. The reason for this is that, in Safe Mode, only a reduced set of services is running. This might cause problems with some installers, which is why the Windows Installer service isn&#8217;t running in Safe Mode.</p>
<p>On the other hand, installing and—in particular—uninstalling programs can fail because of interfering services. Thus, if you suspect that such interdependencies are the reason for installation problems, you can try running the setup program in Safe Mode. To start your Windows machine in Safe Mode, press F8 before Windows boots up.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/04/Installing.in_.Safe_.Mode_.Launch.Safe_.Mode_.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/04/Installing.in_.Safe_.Mode_.Launch.Safe_.Mode_.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none; border: 0px;" title="Installing in Safe Mode - Launch Safe Mode" src="http://4sysops.com/wp-content/uploads/2011/04/Installing.in_.Safe_.Mode_.Launch.Safe_.Mode_thumb.png" border="0" alt="Installing in Safe Mode - Launch Safe Mode" width="604" height="474" /></a></p>
<p>Before you can start the Windows Installer service in Service Manager, you must first add the registry key <em>MSIServer</em> with the default value <em>Service</em> in HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/04/Installing.in_.Safe_.Mode_.MSIServer.registry.entry_.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/04/Installing.in_.Safe_.Mode_.MSIServer.registry.entry_.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none; border: 0px;" title="Installing in Safe Mode - MSIServer registry entry" src="http://4sysops.com/wp-content/uploads/2011/04/Installing.in_.Safe_.Mode_.MSIServer.registry.entry_thumb.png" border="0" alt="Installing in Safe Mode - MSIServer registry entry" width="572" height="319" /></a></p>
<p>Admittedly, this procedure is a bit longwinded. The free tool <a href="http://www.windowsitpro.com/article/tips/jsi-tip-9233-safemsi-exe-freeware-starts-windows-installer-in-safe-mode-">SafeMSI</a> adds the registry key and starts the Windows Installer service. All you have to do is double-click the program. You can then install and uninstall in Safe Mode just like you are used to.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/04/Installing.in_.Safe_.Mode_.SafeMSI.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/04/Installing.in_.Safe_.Mode_.SafeMSI.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none; border: 0px;" title="Installing in Safe Mode - SafeMSI" src="http://4sysops.com/wp-content/uploads/2011/04/Installing.in_.Safe_.Mode_.SafeMSI_thumb.png" border="0" alt="Installing in Safe Mode - SafeMSI" width="285" height="145" /></a></p>
<p>Note that the tool doesn&#8217;t allow you to remove the aforementioned registry key. You have to do this with the registry editor. However, it doesn&#8217;t hurt if you just leave the key as is because it is only effective in Safe Mode.</p>
<h2><a href="http://www.windowsitpro.com/article/tips/jsi-tip-9233-safemsi-exe-freeware-starts-windows-installer-in-safe-mode-">SafeMSI</a></h2>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/dedicated-administrator-connection-dac-in-sql-server-2008-r2/" title="Dedicated Administrator Connection (DAC) in SQL Server 2008 R2 (November 15, 2011)">Dedicated Administrator Connection (DAC) in SQL Server 2008 R2</a> (3)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-2-usage-and-privacy/" title="Microsoft System Center Advisor &#8211; Part 2: Usage and privacy (June 14, 2011)">Microsoft System Center Advisor &#8211; Part 2: Usage and privacy</a> (0)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-1-overview-and-installation/" title="Microsoft System Center Advisor &#8211; Part 1: Overview and installation (June 13, 2011)">Microsoft System Center Advisor &#8211; Part 1: Overview and installation</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-simplesysinfo-a-customizable-system-information-tool-for-windows/" title="FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows (May 19, 2011)">FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-sysinternalsupdater-update-sysinternals-suite/" title="FREE: SysInternalsUpdater &#8211; Update Sysinternals Suite (May 16, 2011)">FREE: SysInternalsUpdater &#8211; Update Sysinternals Suite</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/free-safemsi-installing-in-safe-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FREE: Memtest86 &#8211; A memory diagnostic tool</title>
		<link>http://4sysops.com/archives/free-memtest86-a-memory-diagnostic-tool/</link>
		<comments>http://4sysops.com/archives/free-memtest86-a-memory-diagnostic-tool/#comments</comments>
		<pubDate>Thu, 31 Mar 2011 00:00:54 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=5906</guid>
		<description><![CDATA[Memtest86 is a free memory diagnostic tool that allows you to perform RAM tests that go well beyond the test capabilities of most BIOS tools.]]></description>
			<content:encoded><![CDATA[<p><strong><i>Memtest86 is a free memory diagnostic tool that allows you to perform RAM tests that go well beyond the test capabilities of most BIOS tools.</i></strong></p>
<p>As I outlined in my <a href="http://4sysops.com/archives/memory-diagnostics-a-short-intro/">memory diagnostic primer</a>, memory diagnostic tools that are integrated in modern BIOSes can&#8217;t guarantee that a memory module is flawless. This also applies to <a href="http://www.memtest86.com/">Memtest86</a>, a free standalone memory diagnostic tool. However, the utility is more sophisticated than most BIOS memory diagnostic tools. You can also use Memtest86 if you are uncertain which of the RAM modules has flaws and you just want a second opinion.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/03/Memory.Diagnostic.Tool_.Memtest86.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/03/Memory.Diagnostic.Tool_.Memtest86.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none; border-width: 0px;" title="Memory Diagnostic Tool - Memtest86" src="http://4sysops.com/wp-content/uploads/2011/03/Memory.Diagnostic.Tool_.Memtest86_thumb.png" border="0" alt="Memory Diagnostic Tool - Memtest86" width="604" height="338" /></a></p>
<p>For this review, I tested Memtest86 v3.5b. At the time of this writing, Memtest86 v4.0 is still in beta. When I tried the beta version on a virtual VMware Workstation machine, the tool froze. However, I admit that testing virtual memory for physical flaws doesn&#8217;t make much sense. Memtest86 v4.0 has important additional features, such as support for multiple CPUs and machines with large memory. It is also quite likely that v4.0 works better with most physical main boards. The download of Memtest86 v4.0 also includes v3.5b, so you can change versions easily if problems occur.</p>
<p>To run Memtest86, you have to boot up from a floppy, CD, or USB stick. The download file contains the ISO image that you have to burn on a CD. The floppy disk package can be installed from Windows; for the USB version, you will need a Linux installation to create the bootable USB stick.</p>
<p>After you boot from the Memtest86 medium, you can choose which version you want to run: v3.5b or v4.0. The memory diagnostic tool will then immediately start testing the memory. The tool continues diagnosing until you stop it. Once it finishes testing the whole RAM, it just starts all over again. Thus, you can use the tool to rule out temperature-related problems by running the tool on a cold server until it reaches its normal operation temperature.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/03/Memory.Diagnostic.Tool_.Memtest86.Settings.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/03/Memory.Diagnostic.Tool_.Memtest86.Settings.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none; border-width: 0px;" title="Memory Diagnostic Tool - Memtest86 - Settings" src="http://4sysops.com/wp-content/uploads/2011/03/Memory.Diagnostic.Tool_.Memtest86.Settings_thumb.png" border="0" alt="Memory Diagnostic Tool - Memtest86 - Settings" width="604" height="337" /></a></p>
<p>Memtest86 has quite a few options that you can access by pressing the C key. The Test Selection allows you to choose different test algorithms. Test Range is for configuring the memory range you want to diagnose. You can use the Memory Size option if Memtest86 doesn&#8217;t correctly detect the size of your memory. Read the Memory Sizing section under Technical Info on the tool&#8217;s homepage for information about different detection methods. The Error Report Method lets you configure how many details the utility displays about detected errors. DMI Memory Info gives you information about the memory modules in the computer. Important is the ECC mode setting. If you use ECC memory, you should enable this function. If the computer has multiple CPUs, you can tell Memtest86 to use only a single CPU or to use the different CPUs sequentially or in round robin mode.</p>
<p>Another popular memory testing tool is Microsoft&#8217;s <a href="http://4sysops.com/archives/free-windows-memory-diagnostic-a-memory-diagnostic-tool/">Windows Memory Diagnostic tool</a>.  One advantage of Memtest86 over comparable free tools is that it supports computers wit more than 4 GB memory. Do you know of other good memory diagnostic tools?</p>
<h2><a href="http://www.memtest86.com/">Memtest86</a></h2>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/visualizing-your-server-rack-with-microsoft-visio-2010/" title="Visualizing your server rack with Microsoft Visio 2010 (January 12, 2012)">Visualizing your server rack with Microsoft Visio 2010</a> (10)</li>
	<li><a href="http://4sysops.com/archives/dedicated-administrator-connection-dac-in-sql-server-2008-r2/" title="Dedicated Administrator Connection (DAC) in SQL Server 2008 R2 (November 15, 2011)">Dedicated Administrator Connection (DAC) in SQL Server 2008 R2</a> (3)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-2-usage-and-privacy/" title="Microsoft System Center Advisor &#8211; Part 2: Usage and privacy (June 14, 2011)">Microsoft System Center Advisor &#8211; Part 2: Usage and privacy</a> (0)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-1-overview-and-installation/" title="Microsoft System Center Advisor &#8211; Part 1: Overview and installation (June 13, 2011)">Microsoft System Center Advisor &#8211; Part 1: Overview and installation</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-simplesysinfo-a-customizable-system-information-tool-for-windows/" title="FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows (May 19, 2011)">FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/free-memtest86-a-memory-diagnostic-tool/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Memory diagnostics &#8211; A short intro</title>
		<link>http://4sysops.com/archives/memory-diagnostics-a-short-intro/</link>
		<comments>http://4sysops.com/archives/memory-diagnostics-a-short-intro/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 00:01:14 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=5900</guid>
		<description><![CDATA[This post gives a short overview of how memory diagnostic tools help you troubleshoot RAM problems.]]></description>
			<content:encoded><![CDATA[<p><strong><i>This post gives a short overview of how memory diagnostic tools help you troubleshoot RAM problems.</i></strong></p>
<p>Physical memory failures do not happen often, but when they occur they are fatal. Sometimes they won&#8217;t just crash the operating system but will also cause hard disk corruption. In the worst case, a destroyed database is the end result. This is just because one of the billions of memory cells confused a zero with a one. ECC (Error-Correcting Code) memory improves fault tolerance, but it is expensive and so are the supporting motherboards. And, of course, ECC doesn&#8217;t guarantee that RAM failures won&#8217;t occur.</p>
<p><a href="http://www.flickr.com/photos/51219817@N04/4776641305/"><img style="margin: 0px auto; display: block; float: none; border: 0px;" title="Memory.Diagnostics.Memory.Modules" src="http://4sysops.com/wp-content/uploads/2011/03/Memory.Diagnostics.Memory.Modules.png" border="0" alt="Memory.Diagnostics.Memory.Modules" width="398" height="254" /></a></p>
<p>Memory diagnostic tools exist for Windows. However, testing RAM while a full-blown operating system has been loaded doesn&#8217;t make much sense because too many memory cells can&#8217;t be probed that way. Thus, it is important to use a standalone memory diagnostic tool that allows you to boot up from a CD or a USB stick.</p>
<p>Of course, you can also use the memory diagnostic tool of the BIOS. You can typically choose between a quick and a thorough memory test. However, even if the BIOS confirms that your memory is okay, this does not guarantee that all memory cells are working properly.</p>
<p>For one, BIOS memory diagnostic tools usually can&#8217;t find intermittent memory problems—that is, problems that only occur at specific conditions, such as when two adjacent memory cells affect each other. Moreover, old memory modules in particular sometimes only fail at certain temperatures. Frequent temperature changes make silicon brittle, causing micro fractures on the chip. Those micro fractures often only produce problems at very specific temperatures because of the uneven expansion of the chip at different temperatures.</p>
<p>Hence, I recommend starting the memory diagnostic tool when the machine is still cold and then running the test for 20 minutes or so until the computer has reached its operating temperature. Unfortunately, even then you can&#8217;t be 100% sure that all memory cells are working properly. Since memory diagnostic tools use different algorithms to probe memory cells, it can&#8217;t be wrong to obtain multiple opinions.</p>
<p>The ideal way for diagnosing memory is to write a certain value (1 or 0) to a memory cell, then write the opposite value to all adjacent cells and probe the original cell to see if it still holds the right value. This method ensures that writing to a memory cell doesn&#8217;t affect adjacent cells, which is often the cause of intermittent errors.</p>
<p>The problem is that different chip designs make it difficult to determine adjacent memory cells. Memory diagnostic tools thus work with strategies that approximate this testing method. Usually they fill the memory with certain patterns, verify that the pattern has been written correctly, and then do the same with the pattern&#8217;s complement. This still doesn&#8217;t guarantee that a memory chip is flawless, but it increases the likelihood considerably.</p>
<p>If the memory diagnostic tool finds an error, it can be unclear sometimes which memory module contains the corrupt cells. In this case, the best way to find the faulty module is to test all modules independently by inserting them one by one into the computer. If this isn&#8217;t possible, for instance because the board requires an even number of modules, you can rotate modules and see if the memory diagnostic tool reports the error at different addresses. Another option is to replace a single module and then check if the error recurs.</p>
<p>If you are uncertain whether a memory module has flaws or not, replacing it is usually the best option. It certainly depends on the importance of the corresponding machine, but in most cases the crash of a productive server is more expensive than buying new RAM. In any case, I recommend testing the memory of old machines every now then, for instance if you have to reboot the server anyway. In my next post, I will review a <a href="http://4sysops.com/archives/free-memtest86-a-memory-diagnostic-tool/">free memory diagnostic tool</a> that can be used for this purpose.</p>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/visualizing-your-server-rack-with-microsoft-visio-2010/" title="Visualizing your server rack with Microsoft Visio 2010 (January 12, 2012)">Visualizing your server rack with Microsoft Visio 2010</a> (10)</li>
	<li><a href="http://4sysops.com/archives/dedicated-administrator-connection-dac-in-sql-server-2008-r2/" title="Dedicated Administrator Connection (DAC) in SQL Server 2008 R2 (November 15, 2011)">Dedicated Administrator Connection (DAC) in SQL Server 2008 R2</a> (3)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-2-usage-and-privacy/" title="Microsoft System Center Advisor &#8211; Part 2: Usage and privacy (June 14, 2011)">Microsoft System Center Advisor &#8211; Part 2: Usage and privacy</a> (0)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-1-overview-and-installation/" title="Microsoft System Center Advisor &#8211; Part 1: Overview and installation (June 13, 2011)">Microsoft System Center Advisor &#8211; Part 1: Overview and installation</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-simplesysinfo-a-customizable-system-information-tool-for-windows/" title="FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows (May 19, 2011)">FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/memory-diagnostics-a-short-intro/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>FREE: Time Freeze Free &#8211; A software testing tool</title>
		<link>http://4sysops.com/archives/free-time-freeze-free-a-software-testing-tool/</link>
		<comments>http://4sysops.com/archives/free-time-freeze-free-a-software-testing-tool/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 19:59:26 +0000</pubDate>
		<dc:creator>Alexander Weiss</dc:creator>
				<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[desktop management tools]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=5259</guid>
		<description><![CDATA[Time Freeze is free software testing tool that combines the sandbox and virtual machine approach of software testing.]]></description>
			<content:encoded><![CDATA[<p><strong><i>Time Freeze is free software testing tool that combines the sandbox and virtual machine approach of software testing.</i></strong></p>
<p>Software testing is an important part of an administrator’s daily routine. There are various tools and different approaches for making this task easier and more efficient. Some use virtual machines as test environments, and others prefer sandboxes for software testing. <a href="http://www.wondershare.com/pro/time-freeze-free.html">Time Freeze Free</a> is kind of a hybrid. It combines aspects of both approaches, which makes it a perfect software testing tool.</p>
<p>Time Freeze expands the sandbox approach. Rather than launch the software you are testing in a sandbox, the tool turns your whole Windows installation into a sandbox. Every change that is made to your Windows installation is logged. As soon as you turn Time Freeze off, you have exactly the same system as before you started testing the software. So it works more like the snapshot feature of virtual environments such as Hyper-V. The difference is that you can only have one snapshot, but on the other hand you have better performance than in virtualized environments.</p>
<p>Although Time Freeze Free is freeware, you have to register it after a 30-day trial period if you want to continue using it. A commercial version is also available that offers a few additional features such as MBR protection, physical memory buffer mode, customizable folder protection mode, and USB stick protection. The major drawback of the free version is that it doesn&#8217;t support 64-bit OS.</p>
<p>Once Time Freeze is downloaded, the installation is straightforward. You will see a window with three tabs when you launch the tool:</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/10/software.testing.tool_.time_.freeze.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/10/software.testing.tool_.time_.freeze.png','',event,300,75)"><img style="margin: 0px; display: inline; border: 0px;" title="Software Testing Too - Time Freeze" src="http://4sysops.com/wp-content/uploads/2010/10/software.testing.tool_.time_.freeze_thumb.png" border="0" alt="Software Testing Too - Time Freeze" width="535" height="402" /></a></p>
<p>On the first tab, you can turn the system protection on or off and view the amount of buffer that is left for storing the changes on your Windows installation. On the second tab, you can protect folders from modifications by adding the folders to the list and turning the folder protection on. The last tab is for changing the application’s settings. As you can see in this screenshot, not many options are available:</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/10/software.testing.tool_.time_.freeze.options.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/10/software.testing.tool_.time_.freeze.options.png','',event,300,75)"><img style="margin: 0px; display: inline; border: 0px;" title="Software Testing Tool - Time Freeze.options" src="http://4sysops.com/wp-content/uploads/2010/10/software.testing.tool_.time_.freeze.options_thumb.png" border="0" alt="Software Testing Tool - Time Freeze.options" width="534" height="403" /></a></p>
<p>All in all, Time Freeze Free is a very handy tool for software testing. The application is lightweight and easy to use. If you don’t have the hardware to do your software testing in virtualized environments, Time Freeze Free is a very good alternative.</p>
<h2><a href="http://www.wondershare.com/pro/time-freeze-free.html">Time Freeze</a></h2>
Author: Alexander Weiss
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/raffle-manageengine-desktop-central-part-2-features/" title="Raffle: ManageEngine Desktop Central &#8211; Part 2: Features (December 7, 2011)">Raffle: ManageEngine Desktop Central &#8211; Part 2: Features</a> (2)</li>
	<li><a href="http://4sysops.com/archives/raffle-manageengine-desktop-central-part-1-overview/" title="Raffle: ManageEngine Desktop Central &#8211; Part 1: Overview (November 30, 2011)">Raffle: ManageEngine Desktop Central &#8211; Part 1: Overview</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-workspace-manager-express-a-roaming-user-profiles-alternative/" title="FREE: Workspace Manager Express &#8211; A roaming user profiles alternative (November 25, 2011)">FREE: Workspace Manager Express &#8211; A roaming user profiles alternative</a> (0)</li>
	<li><a href="http://4sysops.com/archives/spiceworks-installation-guide/" title="Spiceworks installation guide (November 17, 2011)">Spiceworks installation guide</a> (1)</li>
	<li><a href="http://4sysops.com/archives/dedicated-administrator-connection-dac-in-sql-server-2008-r2/" title="Dedicated Administrator Connection (DAC) in SQL Server 2008 R2 (November 15, 2011)">Dedicated Administrator Connection (DAC) in SQL Server 2008 R2</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/free-time-freeze-free-a-software-testing-tool/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>If Windows hangs or freezes &#8211; How to force a system crash to create a dump file</title>
		<link>http://4sysops.com/archives/if-windows-hangs-or-freezes-how-to-force-a-system-crash-to-create-a-dump-file/</link>
		<comments>http://4sysops.com/archives/if-windows-hangs-or-freezes-how-to-force-a-system-crash-to-create-a-dump-file/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 21:05:12 +0000</pubDate>
		<dc:creator>Dustin Miller</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=5251</guid>
		<description><![CDATA[<p>Have you ever had a system that is running a Windows operating system either freeze or hang for no apparent reason? Has it ever become so low on resources that you can barely navigate through the menus? If you have found yourself in this situation recently, then the option of forcing a system crash from the keyboard just may help you discover and diagnose the underlying source of the problem.</p>
<p>In recent times I had to deal with a few of my Terminal Services servers that were hanging or becoming very unresponsive. And the problem was difficult to investigate because the system was not creating a crash dump since the servers weren’t technically crashing. Once I configured my servers to allow me to force a crash and create a dump file, I was able to begin the journey of resolving the issue. For a quick overview on the different types of dump files please check out this <a href="http://msdn.microsoft.com/en-us/library/ff560246(v=VS.85).aspx">article</a>.</p>
<p>After &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Have you ever had a system that is running a Windows operating system either freeze or hang for no apparent reason? Has it ever become so low on resources that you can barely navigate through the menus? If you have found yourself in this situation recently, then the option of forcing a system crash from the keyboard just may help you discover and diagnose the underlying source of the problem.</p>
<p>In recent times I had to deal with a few of my Terminal Services servers that were hanging or becoming very unresponsive. And the problem was difficult to investigate because the system was not creating a crash dump since the servers weren’t technically crashing. Once I configured my servers to allow me to force a crash and create a dump file, I was able to begin the journey of resolving the issue. For a quick overview on the different types of dump files please check out this <a href="http://msdn.microsoft.com/en-us/library/ff560246(v=VS.85).aspx">article</a>.</p>
<p>After a few days of waiting for the problem to reoccur I was able to force a crash on one of the servers. It worked just as I had planned. With the help of the software vendor whose product was responsible for the problem at hand, we were able to fix the issue and the servers have been problem free ever since that time.</p>
<p>As you can see from this <a href="http://msdn.microsoft.com/en-us/library/ff545499(VS.85).aspx">article</a>, configuring your Windows based system to crash upon typing a hotkey sequence is very easy. There are only two changes that need to be made. They are:</p>
<ol>
<li>Enable the Kernel or Complete Memory Dump option in the Startup and Recovery tab under the Advanced tab which can be accessed in the System Properties. Either of these choices will give you the greatest amount of information in the dump file.</li>
</ol>
<p><a href="http://4sysops.com/wp-content/uploads/2010/10/Force.system.crash.if_.computer.freezes.System.Properties.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/10/Force.system.crash.if_.computer.freezes.System.Properties.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none; border: 0px;" title="Force system crash if computer freezes - System Properties" src="http://4sysops.com/wp-content/uploads/2010/10/Force.system.crash.if_.computer.freezes.System.Properties_thumb.png" border="0" alt="Force system crash if computer freezes - System Properties" width="404" height="516" /></a></p>
<ol>
<li>Add and enable one of the following registry keys depending on keyboard type:</li>
</ol>
<p>A. USB Keyboard -KEY_LOCAL_MACHINE\System\CurrentControlSet\Services\kbdhid\Parameters, create a DWORD (32bit) value named CrashOnCtrlScroll and set the value to 1.</p>
<p>B. PS/2 Keyboard &#8211; HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\i8042prt\Parameters, create a DWORD (32bit) value named CrashOnCtrlScroll and set the value to 1.</p>
<p>Once those options are set, reboot the system for the changes to take effect and then wait for the slowness or hang to reoccur. When it does you will be able to hold down the right Control key and press the Scroll Lock key twice to force a crash of the system.</p>
<p><strong>TIP</strong> – For this to work, it is best to be physically located at the console of the system on which you are performing this hotkey sequence. Running it from a local, remote or IP KVM may prevent the key sequence from being triggered correctly.</p>
<p>You can use <a href="http://www.microsoft.com/whdc/devtools/debugging/default.mspx">Microsoft’s Debugging Tools for Windows</a> (WinDbg) to analyze the crash dump file. Once you have the debug tool installed you will need to set up the symbols server which you can find instructions on how to set up <a href="http://www.microsoft.com/whdc/devtools/debugging/debugstart.mspx#a">here</a>. From there open the application and choose to open a Crash Dump.</p>
<p>If you have any questions about this article or need additional help in forcing the system to crash or analyzing the crash dump please leave a comment for me and I will respond as soon as possible.</p>
Author: Dustin Miller
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/dedicated-administrator-connection-dac-in-sql-server-2008-r2/" title="Dedicated Administrator Connection (DAC) in SQL Server 2008 R2 (November 15, 2011)">Dedicated Administrator Connection (DAC) in SQL Server 2008 R2</a> (3)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-2-usage-and-privacy/" title="Microsoft System Center Advisor &#8211; Part 2: Usage and privacy (June 14, 2011)">Microsoft System Center Advisor &#8211; Part 2: Usage and privacy</a> (0)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-1-overview-and-installation/" title="Microsoft System Center Advisor &#8211; Part 1: Overview and installation (June 13, 2011)">Microsoft System Center Advisor &#8211; Part 1: Overview and installation</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-simplesysinfo-a-customizable-system-information-tool-for-windows/" title="FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows (May 19, 2011)">FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-sysinternalsupdater-update-sysinternals-suite/" title="FREE: SysInternalsUpdater &#8211; Update Sysinternals Suite (May 16, 2011)">FREE: SysInternalsUpdater &#8211; Update Sysinternals Suite</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/if-windows-hangs-or-freezes-how-to-force-a-system-crash-to-create-a-dump-file/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Microsoft Fix it Center &#8211; Fix Windows problems</title>
		<link>http://4sysops.com/archives/microsoft-fix-it-center-fix-windows-problems/</link>
		<comments>http://4sysops.com/archives/microsoft-fix-it-center-fix-windows-problems/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 19:38:53 +0000</pubDate>
		<dc:creator>Alexander Weiss</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://4sysops.com/?p=4953</guid>
		<description><![CDATA[<p>Microsoft currently offers a beta version of the Microsoft Fix it Center. This application has one purpose: It should automatically fix some computer problems and support the user in finding a solution for those problems it can’t solve. As every administrator knows, fixing hardware or software problems can take up a lot of time. So having a tool that automatically fixes various problems would be any administrator’s heaven. But is the Microsoft Fix it Center really a ticket to heaven?</p>
<p>First you have to download it <a href="http://fixitcenter.support.microsoft.com/Portal/GetStarted">here</a>. During setup, the tool checks your software and hardware configuration. Depending on this configuration it offers to install different so-called troubleshooters. After you choose which of these troubleshooters to install, you are asked if you want to create an online account. (The benefit of having an online account is that you have access to Fix it Center Online.) Here is a picture of the Troubleshooters that were selected for my system:</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/08/Fix.Windows.Problems.Microsoft.Fix_.it_.Center.Setup_.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/08/Fix.Windows.Problems.Microsoft.Fix_.it_.Center.Setup_.png','',event,300,75)"><img style="margin: 0px; display: inline; border: 0px;" title="Fix Windows Problems - Microsoft Fix it Center Setup" src="http://4sysops.com/wp-content/uploads/2010/08/Fix.Windows.Problems.Microsoft.Fix_.it_.Center.Setup_thumb.png" border="0" alt="Fix Windows Problems - Microsoft Fix it Center Setup" width="604" height="410" /></a></p>
<p>Click &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Microsoft currently offers a beta version of the Microsoft Fix it Center. This application has one purpose: It should automatically fix some computer problems and support the user in finding a solution for those problems it can’t solve. As every administrator knows, fixing hardware or software problems can take up a lot of time. So having a tool that automatically fixes various problems would be any administrator’s heaven. But is the Microsoft Fix it Center really a ticket to heaven?</p>
<p>First you have to download it <a href="http://fixitcenter.support.microsoft.com/Portal/GetStarted">here</a>. During setup, the tool checks your software and hardware configuration. Depending on this configuration it offers to install different so-called troubleshooters. After you choose which of these troubleshooters to install, you are asked if you want to create an online account. (The benefit of having an online account is that you have access to Fix it Center Online.) Here is a picture of the Troubleshooters that were selected for my system:</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/08/Fix.Windows.Problems.Microsoft.Fix_.it_.Center.Setup_.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/08/Fix.Windows.Problems.Microsoft.Fix_.it_.Center.Setup_.png','',event,300,75)"><img style="margin: 0px; display: inline; border: 0px;" title="Fix Windows Problems - Microsoft Fix it Center Setup" src="http://4sysops.com/wp-content/uploads/2010/08/Fix.Windows.Problems.Microsoft.Fix_.it_.Center.Setup_thumb.png" border="0" alt="Fix Windows Problems - Microsoft Fix it Center Setup" width="604" height="410" /></a></p>
<p>Click Next to finish the setup. When you start the program, you see a list of the troubleshooters that have been installed on your configuration and a button labeled Run next to them.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/08/Fix.Windows.Problems.Microsoft.Fix_.it_.Center.Automated.Troubleshooters.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/08/Fix.Windows.Problems.Microsoft.Fix_.it_.Center.Automated.Troubleshooters.png','',event,300,75)"><img style="margin: 0px; display: inline; border: 0px;" title="Fix Windows Problems - Microsoft Fix it Center Automated Troubleshooters" src="http://4sysops.com/wp-content/uploads/2010/08/Fix.Windows.Problems.Microsoft.Fix_.it_.Center.Automated.Troubleshooters_thumb.png" border="0" alt="Fix Windows Problems - Microsoft Fix it Center Automated Troubleshooters" width="604" height="407" /></a></p>
<p>After you click the Run button, you are asked if the fixes should be applied automatically or if you want to manually choose which fixes to apply. If you previously chose to create a Fix it Center Online account, every action you take here and every fix that is applied is logged in the online platform. If you attach different Fix it Centers with the same account, the tool tracks the actions for each computer so you get an automatically generated and centralized report inventory for your computer problems. Here‘s a screenshot of the platform:</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/08/Fix.Windows.Problems.Microsoft.Fix_.it_.Center.Online.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/08/Fix.Windows.Problems.Microsoft.Fix_.it_.Center.Online.png','',event,300,75)"><img style="margin: 0px; display: inline; border: 0px;" title="Fix Windows Problems - Microsoft Fix it Center Online" src="http://4sysops.com/wp-content/uploads/2010/08/Fix.Windows.Problems.Microsoft.Fix_.it_.Center.Online_thumb.png" border="0" alt="Fix Windows Problems - Microsoft Fix it Center Online" width="604" height="496" /></a></p>
<p>In the screenshot, you can see the results of an “Im prove performance, safety and security in Internet Explorer” Troubleshooter run. As you can see, the tool does perform useful checks and automatically fixed some problems. For an inexperienced user, and even for professional Service Desk staff in certain situations, the Microsoft Fix it Center would have provided some solutions. But you can also see that other problems wouldn’t have been solved. The time when computers solve their problems themselves hasn’t yet arrived.</p>
<p>The bottom line is that Microsoft Fix it Center is very useful for home users or small companies with no professional in-house support, as it is capable of fixing common problems. The integrated direct link to Microsoft support, the approach of a personalized support center, and the Fix it Center Online are big pluses for enterprise use. However, if you consider that running Microsoft Fix it Center on an enterprise level creates additional maintenance costs, I think the main advantage won’t be in cost reduction but in a better structured and organized problem solution. All in all, the application points in the right direction, and with additional features and Troubleshooters it might become a very valuable tool in the future. After all, it’s still in beta.</p>
Author: Alexander Weiss
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/dedicated-administrator-connection-dac-in-sql-server-2008-r2/" title="Dedicated Administrator Connection (DAC) in SQL Server 2008 R2 (November 15, 2011)">Dedicated Administrator Connection (DAC) in SQL Server 2008 R2</a> (3)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-2-usage-and-privacy/" title="Microsoft System Center Advisor &#8211; Part 2: Usage and privacy (June 14, 2011)">Microsoft System Center Advisor &#8211; Part 2: Usage and privacy</a> (0)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-1-overview-and-installation/" title="Microsoft System Center Advisor &#8211; Part 1: Overview and installation (June 13, 2011)">Microsoft System Center Advisor &#8211; Part 1: Overview and installation</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-simplesysinfo-a-customizable-system-information-tool-for-windows/" title="FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows (May 19, 2011)">FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-sysinternalsupdater-update-sysinternals-suite/" title="FREE: SysInternalsUpdater &#8211; Update Sysinternals Suite (May 16, 2011)">FREE: SysInternalsUpdater &#8211; Update Sysinternals Suite</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/microsoft-fix-it-center-fix-windows-problems/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>FREE: Windows Memory Diagnostic &#8211; A memory diagnostic tool</title>
		<link>http://4sysops.com/archives/free-windows-memory-diagnostic-a-memory-diagnostic-tool/</link>
		<comments>http://4sysops.com/archives/free-windows-memory-diagnostic-a-memory-diagnostic-tool/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 19:51:28 +0000</pubDate>
		<dc:creator>Alexander Weiss</dc:creator>
				<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://4sysops.com/?p=4927</guid>
		<description><![CDATA[<p>The <a href="http://oca.microsoft.com/en/windiag.asp">Windows Memory Diagnostic tool</a> checks the computer’s memory (RAM) for failures. If you have recurring error messages or computer crashes and can’t figure out what causes them, it might be time to check the memory.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/08/windows.memory.diagnostic.tool_.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/08/windows.memory.diagnostic.tool_.png','',event,300,75)"><img style="margin: 0px; display: inline; border-width: 0px;" title="Windows Memory Diagnostic tool" src="http://4sysops.com/wp-content/uploads/2010/08/windows.memory.diagnostic.tool_thumb.png" border="0" alt="Windows Memory Diagnostic tool" width="604" height="411" /></a></p>
<p>Many free memory diagnostic tools are available, but if you are running Windows Vista, Windows 7, or Windows Server 2008 (R2) a memory diagnostic tool is already included. You just have to execute the command <em>mdsched</em> and choose to restart the computer. If you still use Windows XP or Windows Server 2003, you can download the tool <a href="http://oca.microsoft.com/en/mtinst.exe">here</a>. In this version you have to run the .exe file and create a startup disk or save a CD image. Then you have to insert the media and boot from it. It is a lot less hassle in the newer versions of Windows, because there you just tell the tool to restart Windows and it takes care of everything. No matter which version of the &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://oca.microsoft.com/en/windiag.asp">Windows Memory Diagnostic tool</a> checks the computer’s memory (RAM) for failures. If you have recurring error messages or computer crashes and can’t figure out what causes them, it might be time to check the memory.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/08/windows.memory.diagnostic.tool_.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/08/windows.memory.diagnostic.tool_.png','',event,300,75)"><img style="margin: 0px; display: inline; border-width: 0px;" title="Windows Memory Diagnostic tool" src="http://4sysops.com/wp-content/uploads/2010/08/windows.memory.diagnostic.tool_thumb.png" border="0" alt="Windows Memory Diagnostic tool" width="604" height="411" /></a></p>
<p>Many free memory diagnostic tools are available, but if you are running Windows Vista, Windows 7, or Windows Server 2008 (R2) a memory diagnostic tool is already included. You just have to execute the command <em>mdsched</em> and choose to restart the computer. If you still use Windows XP or Windows Server 2003, you can download the tool <a href="http://oca.microsoft.com/en/mtinst.exe">here</a>. In this version you have to run the .exe file and create a startup disk or save a CD image. Then you have to insert the media and boot from it. It is a lot less hassle in the newer versions of Windows, because there you just tell the tool to restart Windows and it takes care of everything. No matter which version of the tool you use, the tool starts to check your computer’s memory after your computer reboots.</p>
<p>The tool does three different memory checks and two passes. After both passes are completed, the computer restarts and Windows will boot again.</p>
<p>This so-called basic test mix is the default setting. If you want to thoroughly check your computer’s memory, I recommend running the standard or extended test. The standard diagnostic includes 8 different memory tests; the extended one includes 17. To choose one of the more intensive diagnostic checks, you have to press F1 when the Memory Diagnostic Tool is running. If you do this you encounter two more options: You can enable or disable the cache, and you can set the number of diagnostic runs. When you are finished with your customizations, you start the memory check by pressing F10.</p>
<p>If the Memory Diagnostic Tool does find a problem during a diagnostic check, you are informed in the status display area. If everything runs smoothly, the tool just reboots the computer after all diagnostic passes are done.</p>
<p>Update: Also check out the review of the <a href="http://4sysops.com/archives/free-memtest86-a-memory-diagnostic-tool/">memory diagnostic tool Memtest86</a>.</p>
<h2><a href="http://oca.microsoft.com/en/windiag.asp">Windows Memory Diagnostic tool</a></h2>
Author: Alexander Weiss
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/visualizing-your-server-rack-with-microsoft-visio-2010/" title="Visualizing your server rack with Microsoft Visio 2010 (January 12, 2012)">Visualizing your server rack with Microsoft Visio 2010</a> (10)</li>
	<li><a href="http://4sysops.com/archives/dedicated-administrator-connection-dac-in-sql-server-2008-r2/" title="Dedicated Administrator Connection (DAC) in SQL Server 2008 R2 (November 15, 2011)">Dedicated Administrator Connection (DAC) in SQL Server 2008 R2</a> (3)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-2-usage-and-privacy/" title="Microsoft System Center Advisor &#8211; Part 2: Usage and privacy (June 14, 2011)">Microsoft System Center Advisor &#8211; Part 2: Usage and privacy</a> (0)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-1-overview-and-installation/" title="Microsoft System Center Advisor &#8211; Part 1: Overview and installation (June 13, 2011)">Microsoft System Center Advisor &#8211; Part 1: Overview and installation</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-simplesysinfo-a-customizable-system-information-tool-for-windows/" title="FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows (May 19, 2011)">FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/free-windows-memory-diagnostic-a-memory-diagnostic-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to disable Windows Error Reporting</title>
		<link>http://4sysops.com/archives/how-to-disable-windows-error-reporting/</link>
		<comments>http://4sysops.com/archives/how-to-disable-windows-error-reporting/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 19:40:37 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://4sysops.com/?p=4734</guid>
		<description><![CDATA[<p>In the last post of my Windows Error Reporting Series, I discussed the question of whether it <a href="http://4sysops.com/archives/disable-windows-error-reporting/">makes sense to disable Windows Error Reporting</a> or not. Today, I will explain how you can configure this controversial Windows feature in Windows 7, Windows Vista, and Windows XP. I will also show how you can manage Windows Error Reporting with Group Policy.</p>
<h2>Disable Windows Error Reporting in Windows 7 and Server 2008 R2</h2>
<p>In Windows 7, you can disable Windows Error Reporting in the Action center (Control Panel\System and Security\Action Center). In the sidebar click &#8220;Change Action Center settings&#8221; and then click the &#8220;Problem reporting settings&#8221; link at the end of the Action Center applet. You can also start typing &#8220;problem reporting&#8221; in the Windows Start Menu search prompt and then click &#8220;Choose how to report problems.&#8221;</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/06/Disable_Windows_Error_Reporting_Windows_7.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/06/Disable_Windows_Error_Reporting_Windows_7.png','',event,300,75)"><img style="margin: 0px; display: inline; border: 0px;" title="Disable Windows Error Reporting Windows 7" src="http://4sysops.com/wp-content/uploads/2010/06/Disable_Windows_Error_Reporting_Windows_7_thumb.png" border="0" alt="Disable Windows Error Reporting Windows 7" width="604" height="377" /></a></p>
<p>The four options appear to speak for themselves (see screenshot), but, I think, at least two of them are a bit misleading. The default setting &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>In the last post of my Windows Error Reporting Series, I discussed the question of whether it <a href="http://4sysops.com/archives/disable-windows-error-reporting/">makes sense to disable Windows Error Reporting</a> or not. Today, I will explain how you can configure this controversial Windows feature in Windows 7, Windows Vista, and Windows XP. I will also show how you can manage Windows Error Reporting with Group Policy.</p>
<h2>Disable Windows Error Reporting in Windows 7 and Server 2008 R2</h2>
<p>In Windows 7, you can disable Windows Error Reporting in the Action center (Control Panel\System and Security\Action Center). In the sidebar click &#8220;Change Action Center settings&#8221; and then click the &#8220;Problem reporting settings&#8221; link at the end of the Action Center applet. You can also start typing &#8220;problem reporting&#8221; in the Windows Start Menu search prompt and then click &#8220;Choose how to report problems.&#8221;</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/06/Disable_Windows_Error_Reporting_Windows_7.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/06/Disable_Windows_Error_Reporting_Windows_7.png','',event,300,75)"><img style="margin: 0px; display: inline; border: 0px;" title="Disable Windows Error Reporting Windows 7" src="http://4sysops.com/wp-content/uploads/2010/06/Disable_Windows_Error_Reporting_Windows_7_thumb.png" border="0" alt="Disable Windows Error Reporting Windows 7" width="604" height="377" /></a></p>
<p>The four options appear to speak for themselves (see screenshot), but, I think, at least two of them are a bit misleading. The default setting is &#8220;Automatically check for solutions&#8221; and the second option is &#8220;Automatically check for solutions and send additional report data if needed.&#8221; I guess most people believe that with the first setting no error reports are sent to Microsoft. However, when I checked my Problem Reports, I realized that in most cases Windows Error Reporting has sent error reports to Microsoft, anyway. It is unclear to me what the &#8220;additional report data&#8221; in the second option means here.</p>
<p>I think, Microsoft should be more transparent with the information that Windows Error Reporting sends to Redmond. The link &#8220;What information is sent&#8221; at the top of the Problem Reporting Settings applet is commendable; however, the corresponding information that is provided in the Windows help file is, in my view, insufficient.</p>
<p>Hence, if you want to be on the safe side, you should choose the last option &#8220;Never check for solutions.&#8221; Note that you can also change the setting for all users of this computer and you can also select programs to exclude from reporting in the Problem Reporting Settings applet.</p>
<h2>Disable error reporting in Windows Vista and Server 2008</h2>
<p>The Advanced Settings of the Problem Reports and Solutions applet in Windows Vista offer similar options as in Windows 7 (see screenshot). You can find it in the Control Panel (Control Panel\System and Maintenance).</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/06/Disable_Windows_Error_Reporting_Windows_Vista.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/06/Disable_Windows_Error_Reporting_Windows_Vista.png','',event,300,75)"><img style="margin: 0px; display: inline; border: 0px;" title="Disable Windows Error Reporting Windows Vista" src="http://4sysops.com/wp-content/uploads/2010/06/Disable_Windows_Error_Reporting_Windows_Vista_thumb.png" border="0" alt="Disable Windows Error Reporting Windows Vista" width="604" height="429" /></a></p>
<h2>Disable error reporting in Windows XP and Windows Server 2003</h2>
<p>Error reporting in Windows XP is a bit simpler than in Vista and Windows 7 (see screenshot). It contains one feature that I miss in the Vista and Windows 7 error reporting applets&#8211;you can change the settings independently for Windows and third-party programs. You access the error reporting settings through the Advanced tab in the System Properties applet, which you can find in the Control Panel.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/06/Disable_Windows_Error_Reporting_Windows_XP.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/06/Disable_Windows_Error_Reporting_Windows_XP.png','',event,300,75)"><img style="margin: 0px; display: inline; border: 0px;" title="Disable Windows Error Reporting Windows XP" src="http://4sysops.com/wp-content/uploads/2010/06/Disable_Windows_Error_Reporting_Windows_XP_thumb.png" border="0" alt="Disable Windows Error Reporting Windows XP" width="325" height="307" /></a></p>
<h2>Disable Windows Error Reporting through Group Policy</h2>
<p>Of course, you can also manage Windows Error Reporting through Group Policy. It is interesting to note that Group Policy offers more options than the corresponding Control Panel applets (see screenshot). For example, you can configure a central store for the error reports for all your machines.</p>
<p>The Windows Error Reporting setting in Group Policy can be found under Computer Configurations\Administrative Templates\Windows Components\Windows Error Reporting.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/06/Disable_Windows_Error_Reporting_Group_Policy.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/06/Disable_Windows_Error_Reporting_Group_Policy.png','',event,300,75)"><img style="margin: 0px; display: inline; border: 0px;" title="Disable Windows Error Reporting Group Policy" src="http://4sysops.com/wp-content/uploads/2010/06/Disable_Windows_Error_Reporting_Group_Policy_thumb.png" border="0" alt="Disable Windows Error Reporting Group Policy" width="604" height="285" /></a></p>
<p>I didn&#8217;t cover all Windows Error Reporting features in this series. For additional information, you can read the detailed descriptions of the Group Policy settings. More details can also be found in <a href="http://technet.microsoft.com/en-us/library/ee126091(WS.10).aspx">this Technet article</a>.</p>
<p>By the way, if you want to test Windows Error Reporting settings, you can use the free tool <a href="http://4sysops.com/archives/free-bad-application-test-application-crashes/">Bad Application</a>. The main purpose of this really useful utility is to crash itself.</p>
<p>Also check out the related articles about <a href="http://4sysops.com/archives/windows-7-troubleshooting-platform-a-quick-overview/">Windows 7 automatic troubleshooting</a> and its <a href="http://4sysops.com/archives/windows-7-troubleshooting-platform-limitations/">limitations</a>.</p>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/dedicated-administrator-connection-dac-in-sql-server-2008-r2/" title="Dedicated Administrator Connection (DAC) in SQL Server 2008 R2 (November 15, 2011)">Dedicated Administrator Connection (DAC) in SQL Server 2008 R2</a> (3)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-2-usage-and-privacy/" title="Microsoft System Center Advisor &#8211; Part 2: Usage and privacy (June 14, 2011)">Microsoft System Center Advisor &#8211; Part 2: Usage and privacy</a> (0)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-1-overview-and-installation/" title="Microsoft System Center Advisor &#8211; Part 1: Overview and installation (June 13, 2011)">Microsoft System Center Advisor &#8211; Part 1: Overview and installation</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-simplesysinfo-a-customizable-system-information-tool-for-windows/" title="FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows (May 19, 2011)">FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-sysinternalsupdater-update-sysinternals-suite/" title="FREE: SysInternalsUpdater &#8211; Update Sysinternals Suite (May 16, 2011)">FREE: SysInternalsUpdater &#8211; Update Sysinternals Suite</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/how-to-disable-windows-error-reporting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<series:name><![CDATA[Windows Error Reporting]]></series:name>
	</item>
		<item>
		<title>Disable Windows Error Reporting?</title>
		<link>http://4sysops.com/archives/disable-windows-error-reporting/</link>
		<comments>http://4sysops.com/archives/disable-windows-error-reporting/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 19:43:49 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://4sysops.com/?p=4724</guid>
		<description><![CDATA[<p>You might want to disable Windows Error Reporting for two reasons: You don&#8217;t want to send error reports to Microsoft or the &#8220;application xy has stopped working&#8221; messages get on your nerves. In this post I will discuss both topics and in my next post I will show you how to disable Windows Error Reporting.</p>
<h2>Send error reports to Microsoft?</h2>
<p>Of course, Microsoft and third-party hardware and software vendors are highly interested in Windows error reports because these reports help improve the stability of their applications. You might also benefit from this Windows feature if the developers get the chance to solve your specific problem.</p>
<p>However, more cautious admins might feel uncomfortable sending error reports to Microsoft. Even though the contents of the .wer files are relatively harmless, parts of the <a href="http://windows.microsoft.com/en-US/windows7/windows-7-privacy-statement?T1=statement">Windows 7 Privacy Statement</a> sound somewhat unsettling:</p>
<blockquote><p>Microsoft may access or disclose information about you, including the content of your communications, in order to: (a) comply with the law </p>&#8230;</blockquote>]]></description>
			<content:encoded><![CDATA[<p>You might want to disable Windows Error Reporting for two reasons: You don&#8217;t want to send error reports to Microsoft or the &#8220;application xy has stopped working&#8221; messages get on your nerves. In this post I will discuss both topics and in my next post I will show you how to disable Windows Error Reporting.</p>
<h2>Send error reports to Microsoft?</h2>
<p>Of course, Microsoft and third-party hardware and software vendors are highly interested in Windows error reports because these reports help improve the stability of their applications. You might also benefit from this Windows feature if the developers get the chance to solve your specific problem.</p>
<p>However, more cautious admins might feel uncomfortable sending error reports to Microsoft. Even though the contents of the .wer files are relatively harmless, parts of the <a href="http://windows.microsoft.com/en-US/windows7/windows-7-privacy-statement?T1=statement">Windows 7 Privacy Statement</a> sound somewhat unsettling:</p>
<blockquote><p>Microsoft may access or disclose information about you, including the content of your communications, in order to: (a) comply with the law or respond to lawful requests or legal process; (b) protect the rights or property of Microsoft or our customers, including the enforcement of our agreements or policies governing your use of the software; or (c) act on a good faith belief that such access or disclosure is necessary to protect the personal safety of Microsoft employees, customers, or the public.</p></blockquote>
<p>Basically, this means that Microsoft or third parties can use the information provided by Windows Error Reporting against you or your organization. Well, if your license management is perfect, you have nothing to worry about, right?</p>
<h2>The “program has stopped working” dialog</h2>
<p>By default, whenever an application crashes, Windows Error Reporting displays a message informing you the program has stopped working and that Windows is collecting more information about the problem. Until this process is finished, you can&#8217;t re-launch the application. You can always cancel the data collecting, but then Windows Error Reporting becomes less useful.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/06/Google_Chrome_has_stopped_working.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/06/Google_Chrome_has_stopped_working.png','',event,300,75)"><img style="margin: 0px; display: inline; border: 0px;" title="Google Chrome has stopped working" src="http://4sysops.com/wp-content/uploads/2010/06/Google_Chrome_has_stopped_working_thumb.png" border="0" alt="Google Chrome has stopped working" width="364" height="194" /></a></p>
<p>If you have to work with an unstable application these &#8220;has stopped working&#8221; messages can get on your nerves. In this case it makes sense to either disable Windows Error Reporting altogether or at least disable it for this particular application.</p>
<p>However, you should know that by doing so, you won&#8217;t be informed at all when a program crashes. If you are currently working with the application, you will notice it immediately. But if an application is running in the background, for example on a server, a pop-up message that the program has stopped working could be helpful.</p>
<p>Of course, the main reason not to disable Windows Error Reporting is because the error reports can help you or your software or hardware vendor’s support team to identify the problem. As far as I know, there is no way to configure Windows to create error reports and store them only locally without sending them to Microsoft. Update: It appears there is a way. See <a href="http://4sysops.com/archives/disable-windows-error-reporting/#comment-181829">comments </a>below.</p>
<p>In my next post I will outline how you can disable Windows Error Reporting in Windows 7, Vista, and Windows XP.</p>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/dedicated-administrator-connection-dac-in-sql-server-2008-r2/" title="Dedicated Administrator Connection (DAC) in SQL Server 2008 R2 (November 15, 2011)">Dedicated Administrator Connection (DAC) in SQL Server 2008 R2</a> (3)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-2-usage-and-privacy/" title="Microsoft System Center Advisor &#8211; Part 2: Usage and privacy (June 14, 2011)">Microsoft System Center Advisor &#8211; Part 2: Usage and privacy</a> (0)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-1-overview-and-installation/" title="Microsoft System Center Advisor &#8211; Part 1: Overview and installation (June 13, 2011)">Microsoft System Center Advisor &#8211; Part 1: Overview and installation</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-simplesysinfo-a-customizable-system-information-tool-for-windows/" title="FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows (May 19, 2011)">FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-sysinternalsupdater-update-sysinternals-suite/" title="FREE: SysInternalsUpdater &#8211; Update Sysinternals Suite (May 16, 2011)">FREE: SysInternalsUpdater &#8211; Update Sysinternals Suite</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/disable-windows-error-reporting/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<series:name><![CDATA[Windows Error Reporting]]></series:name>
	</item>
		<item>
		<title>Free Windows Error Reporting (WER) viewing tool &#8211; AppCrashView</title>
		<link>http://4sysops.com/archives/free-windows-error-reporting-wer-viewing-tool-appcrashview/</link>
		<comments>http://4sysops.com/archives/free-windows-error-reporting-wer-viewing-tool-appcrashview/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 08:20:51 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[desktop management tools]]></category>
		<category><![CDATA[log management]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[windows pe]]></category>

		<guid isPermaLink="false">http://4sysops.com/?p=4720</guid>
		<description><![CDATA[<p>In my last post, I described how you can view the <a href="http://4sysops.com/archives/windows-error-reporting-wer-view-wer-files/">Windows Error Reporting (.wer) files</a> through the Action Center. Today, I will review the free portable tool <a href="http://www.nirsoft.net/utils/app_crash_view.html">AppCrashView</a> that has essentially the same purpose as the Windows Error Reporting tool. However, the freeware utility has a few advantages.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/06/AppCrashView.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/06/AppCrashView.png','',event,300,75)"><img style="margin: 0px; display: inline; border: 0px;" title="AppCrashView" src="http://4sysops.com/wp-content/uploads/2010/06/AppCrashView_thumb.png" border="0" alt="AppCrashView" width="604" height="328" /></a></p>
<p>First of all, Windows Error Reporting does not show all available information. Whereas AppCrashView shows you the exact content of the .wer files, the Windows Error Reporting applet displays only the most relevant data. For example, you can&#8217;t see the DLLs that have been loaded by the corresponding application when it crashed. Thus, if you want to know exactly what information is sent to Microsoft, you should use AppCrashView.</p>
<p>This free tool automatically collects all .wer files and displays them in a table with configurable columns. You can move the columns and sort the list according to each column. The Windows Error Reporting applet also allows you to sort the .wer &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>In my last post, I described how you can view the <a href="http://4sysops.com/archives/windows-error-reporting-wer-view-wer-files/">Windows Error Reporting (.wer) files</a> through the Action Center. Today, I will review the free portable tool <a href="http://www.nirsoft.net/utils/app_crash_view.html">AppCrashView</a> that has essentially the same purpose as the Windows Error Reporting tool. However, the freeware utility has a few advantages.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/06/AppCrashView.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/06/AppCrashView.png','',event,300,75)"><img style="margin: 0px; display: inline; border: 0px;" title="AppCrashView" src="http://4sysops.com/wp-content/uploads/2010/06/AppCrashView_thumb.png" border="0" alt="AppCrashView" width="604" height="328" /></a></p>
<p>First of all, Windows Error Reporting does not show all available information. Whereas AppCrashView shows you the exact content of the .wer files, the Windows Error Reporting applet displays only the most relevant data. For example, you can&#8217;t see the DLLs that have been loaded by the corresponding application when it crashed. Thus, if you want to know exactly what information is sent to Microsoft, you should use AppCrashView.</p>
<p>This free tool automatically collects all .wer files and displays them in a table with configurable columns. You can move the columns and sort the list according to each column. The Windows Error Reporting applet also allows you to sort the .wer entries, but it only offers four different columns. What I am missing in AppCrashView is the ability to group error reports.</p>
<p>Another advantage of AppCrashView is that it displays the contents of the .wer file in the lower pane, enabling you to easily skim over multiple .wer files by scrolling through the list. Conversely, with the built-in WER applet you always have to move back and forth between the technical details view and the listing.</p>
<p>AppCrashView also works under Windows PE 3.0. To view the Windows error reports of an offline Windows installation, you have to tell AppCrashView where it can find the user profiles folder and the ProgramData folder when you launch the tool from the command line:</p>
<p>appcrashview /ProfilesFolder c:\Users /ProgramData c:\ProgramData</p>
<p>Last but not least, AppCrashView comes with a reporting feature that allows you to export all or some selected error reports into a text or HTML file. You can also use the tool in scripts to collect the information of all .wer files in your network.</p>
<p>In my next post, I will discuss the question of whether it makes sense to disable Windows Error Reporting or not.</p>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/poll-are-you-currently-using-a-monitoring-solution/" title="Poll: Are you currently using a monitoring solution? (January 17, 2012)">Poll: Are you currently using a monitoring solution?</a> (11)</li>
	<li><a href="http://4sysops.com/archives/scom-2012-review-part-8-dashboards/" title="SCOM 2012 review &#8211; Part 8: Dashboards (December 28, 2011)">SCOM 2012 review &#8211; Part 8: Dashboards</a> (0)</li>
	<li><a href="http://4sysops.com/archives/scom-2012-review-part-7-linux-and-jee-monitoring/" title="SCOM 2012 review &#8211; Part 7: Linux and JEE monitoring (December 26, 2011)">SCOM 2012 review &#8211; Part 7: Linux and JEE monitoring</a> (4)</li>
	<li><a href="http://4sysops.com/archives/notifications-and-custom-commands-in-nagwinnrpe/" title="Notifications and Custom Commands in Nagwin/Nrpe (December 23, 2011)">Notifications and Custom Commands in Nagwin/Nrpe</a> (0)</li>
	<li><a href="http://4sysops.com/archives/scom-2012-review-part-6-application-performance-monitoring-apm/" title="SCOM 2012 review &#8211; Part 6: Application Performance Monitoring (APM) (December 21, 2011)">SCOM 2012 review &#8211; Part 6: Application Performance Monitoring (APM)</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/free-windows-error-reporting-wer-viewing-tool-appcrashview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Windows Error Reporting]]></series:name>
	</item>
		<item>
		<title>Windows Error Reporting (WER) &#8211; View .wer files</title>
		<link>http://4sysops.com/archives/windows-error-reporting-wer-view-wer-files/</link>
		<comments>http://4sysops.com/archives/windows-error-reporting-wer-view-wer-files/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 20:05:16 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://4sysops.com/?p=4715</guid>
		<description><![CDATA[<p>Windows Error Reporting (WER) is a Windows function that captures the data of software crashes and can report this information to software vendors via Microsoft&#8217;s <a href="http://en.wikipedia.org/wiki/Winqual">Winqual</a> service. In this Windows Error Reporting series, I will explain how WER works, how you can access the information in WER files, and how you can disable Windows Error Reporting.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/06/Action_Center_Check_for_Solutions.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/06/Action_Center_Check_for_Solutions.png','',event,300,75)"><img style="margin: 0px; display: inline; border: 0px;" title="Action Center Check for Solutions" src="http://4sysops.com/wp-content/uploads/2010/06/Action_Center_Check_for_Solutions_thumb.png" border="0" alt="Action Center Check for Solutions" width="604" height="367" /></a></p>
<p>Windows Error Reporting has been available since Windows XP, although changes have been introduced in Vista and Windows 7. Whenever a Windows application crashes, a WER file is created, which contains valuable information that can help you analyze why the crash happened.</p>
<p>While software vendors have to sign up to Microsoft&#8217;s Winqual service to access the crash data from their customers, admins can access it by opening the .wer files, which are simple text files that Windows stores at different locations. In some cases, the problem description will help you to understand why an application crashed.</p>
<p>However, it is often only the developer who &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Windows Error Reporting (WER) is a Windows function that captures the data of software crashes and can report this information to software vendors via Microsoft&#8217;s <a href="http://en.wikipedia.org/wiki/Winqual">Winqual</a> service. In this Windows Error Reporting series, I will explain how WER works, how you can access the information in WER files, and how you can disable Windows Error Reporting.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/06/Action_Center_Check_for_Solutions.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/06/Action_Center_Check_for_Solutions.png','',event,300,75)"><img style="margin: 0px; display: inline; border: 0px;" title="Action Center Check for Solutions" src="http://4sysops.com/wp-content/uploads/2010/06/Action_Center_Check_for_Solutions_thumb.png" border="0" alt="Action Center Check for Solutions" width="604" height="367" /></a></p>
<p>Windows Error Reporting has been available since Windows XP, although changes have been introduced in Vista and Windows 7. Whenever a Windows application crashes, a WER file is created, which contains valuable information that can help you analyze why the crash happened.</p>
<p>While software vendors have to sign up to Microsoft&#8217;s Winqual service to access the crash data from their customers, admins can access it by opening the .wer files, which are simple text files that Windows stores at different locations. In some cases, the problem description will help you to understand why an application crashed.</p>
<p>However, it is often only the developer who will really understands the contents of the .wer file. But, you can&#8217;t go wrong having a look at these files before you decide whether you want to enable or disable Windows Error Reporting (if you are worried that confidential data will be sent to third parties). Furthermore, you can also send the files to the support service of your software or hardware vendor in the hope that they can figure out what went wrong.</p>
<p>In Windows 7, Windows Error Reporting files can be stored in a subfolder somewhere deep down in the ProgramData or User directory. The name of the subfolder is simply WER, and the file extension is .wer.</p>
<p>You can use Windows Search or another desktop search tool to locate them all. However, the information in these .wer files can also be accessed through the Windows Action Center (Control Panel\System and Security\Action Center).</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/06/Action_Center_View_Problems_to_Reports.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/06/Action_Center_View_Problems_to_Reports.png','',event,300,75)"><img style="margin: 0px; display: inline; border: 0px;" title="Action Center View Problems to Reports" src="http://4sysops.com/wp-content/uploads/2010/06/Action_Center_View_Problems_to_Reports_thumb.png" border="0" alt="Action Center View Problems to Reports" width="604" height="314" /></a></p>
<p>You&#8217;ll find a list of all crash reports behind the link &#8220;View problems to report&#8221; in the Maintenance section. If you type &#8220;view problems&#8221; in the Windows Start Menu search prompt, you will probably get quicker access the Action Center applet. Clicking on &#8220;View technical details&#8221;, will then display the information in the corresponding .wer file.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/06/Action_Center_Problem_Details.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/06/Action_Center_Problem_Details.png','',event,300,75)"><img style="margin: 0px; display: inline; border: 0px;" title="Action Center Problem Details" src="http://4sysops.com/wp-content/uploads/2010/06/Action_Center_Problem_Details_thumb.png" border="0" alt="Action Center Problem Details" width="604" height="380" /></a></p>
<p>In Vista, you have to type &#8220;problems&#8221; in the Windows Start Menu search prompt and then click on &#8220;Problems and Reports and Solutions&#8221;. The list of .wer files is behind the &#8220;View problem history&#8221; link. To view the contents of the .wer file, you have to right click on one of the entries.</p>
<p>In the next post of my Windows Error Reporting series, I will review the free tool <a href="http://4sysops.com/archives/free-windows-error-reporting-wer-viewing-tool-appcrashview/">AppCrashView</a>, which has some additional useful features for accessing the information in .wer files.</p>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/dedicated-administrator-connection-dac-in-sql-server-2008-r2/" title="Dedicated Administrator Connection (DAC) in SQL Server 2008 R2 (November 15, 2011)">Dedicated Administrator Connection (DAC) in SQL Server 2008 R2</a> (3)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-2-usage-and-privacy/" title="Microsoft System Center Advisor &#8211; Part 2: Usage and privacy (June 14, 2011)">Microsoft System Center Advisor &#8211; Part 2: Usage and privacy</a> (0)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-1-overview-and-installation/" title="Microsoft System Center Advisor &#8211; Part 1: Overview and installation (June 13, 2011)">Microsoft System Center Advisor &#8211; Part 1: Overview and installation</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-simplesysinfo-a-customizable-system-information-tool-for-windows/" title="FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows (May 19, 2011)">FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-sysinternalsupdater-update-sysinternals-suite/" title="FREE: SysInternalsUpdater &#8211; Update Sysinternals Suite (May 16, 2011)">FREE: SysInternalsUpdater &#8211; Update Sysinternals Suite</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/windows-error-reporting-wer-view-wer-files/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<series:name><![CDATA[Windows Error Reporting]]></series:name>
	</item>
		<item>
		<title>Create a bootable Windows PE 3.0 USB drive with rescue tools &#8211; Part 1</title>
		<link>http://4sysops.com/archives/build-a-bootable-windows-pe-3-0-usb-drive-with-rescue-tools-part-1/</link>
		<comments>http://4sysops.com/archives/build-a-bootable-windows-pe-3-0-usb-drive-with-rescue-tools-part-1/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 20:30:27 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Popular]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[windows pe]]></category>

		<guid isPermaLink="false">http://4sysops.com/?p=4342</guid>
		<description><![CDATA[Learn how to create a bootable Windows PE 3.0 USB drive. First you you create the bootable USB stick, then you copy the WinPE 3.0 files to the drive.]]></description>
			<content:encoded><![CDATA[<p><strong><i>Learn how to create a bootable Windows PE 3.0 USB drive. First you you create the bootable USB stick, then you copy the WinPE 3.0 files to the drive.</i></strong></p>
<p>For Windows PE 1.0, the minimalist Windows based on Windows 2003/XP, you needed an SA (Software Assurance), OEM, or ISV license. When Windows Vista was released everyone had access to Windows PE 2.0. This also applies to the Windows 7-based edition, Windows PE 3.0. Windows PE (Preinstallation Environment) was originally designed to deploy Windows. However, it is also useful in creating your own customized rescue boot media. In this article, I will describe how you can create a bootable Windows PE 3.0 (WinPE) USB stick, and, in my next post, I will show how to <a href="http://4sysops.com/archives/create-a-bootable-windows-pe-3-0-usb-drive-with-rescue-tools-part-2/">add your own rescue tools</a> and how to keep your rescue stick up-to-date without much hassle. You will see that the procedure described here is much more convenient than most solutions you&#8217;ll find on the web.</p>
<h2>1. Create a bootable USB drive</h2>
<p>Before you get started, you have to make your flash drive bootable. I have already described this procedure in my post about the <a href="http://4sysops.com/archives/windows-7-usbdvd-download-tool-wudt-is-unable-to-copy-files/">Windows 7 USB/DVD Download Tool</a>. For your convenience here is the command sequence, which you should run on a command prompt with admin rights:</p>
<ol>
<li>diskpart</li>
<li>list disk</li>
<li>select disk #</li>
<li>clean</li>
<li>create partition primary</li>
<li>select partition 1</li>
<li>active</li>
<li>format quick fs=fat32</li>
<li>assign</li>
<li>exit</li>
</ol>
<p>Replace &#8216;#&#8217; with the drive number of your USB drive. Be careful to choose the right disk in 3 because this procedure will erase the whole drive!</p>
<h2>2. Copy the WinPE 3.0 files to the USB drive</h2>
<p>WinPE 3.0 is part of the <a href="http://4sysops.com/archives/microsofts-free-windows-7-deployment-tools-part-2-image-preparation/">Windows Automated Installation Kit (WAIK)</a> for Windows 7, which you can download <a href="http://www.microsoft.com/Downloads/details.aspx?familyid=696DD665-9F76-4177-A811-39C26D3B3B34&amp;displaylang=en">here</a>. Once you have installed the WAIK, you&#8217;ll find a folder of the Windows AIK on the Windows Start Menu. Launch the Deployment Tools Command Prompt and enter this command:</p>
<ol>
<li>copype.cmd x86 c:\winpe_x86</li>
<li>Then, copy winpe.wim to the correct folder:</li>
<li>copy c:\winpe_x86\winpe.wim c:\winpe_x86\ISO\sources\boot.wim</li>
<li>Now, copy WinPE to your USB drive:</li>
<li>xcopy C:\winpe_x86\iso\*.* /e G:\</li>
</ol>
<p>In this example, &#8216;G:&#8217; is the drive letter of your flash drive.</p>
<p>Now you should be able to boot from your WinPE 3.0 USB drive. In my next post, I will outline the interesting part—that is, <a href="http://4sysops.com/archives/create-a-bootable-windows-pe-3-0-usb-drive-with-rescue-tools-part-2/">how to prepare your USB drive so that you can add new tools</a> without starting again from scratch.</p>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/dedicated-administrator-connection-dac-in-sql-server-2008-r2/" title="Dedicated Administrator Connection (DAC) in SQL Server 2008 R2 (November 15, 2011)">Dedicated Administrator Connection (DAC) in SQL Server 2008 R2</a> (3)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-2-usage-and-privacy/" title="Microsoft System Center Advisor &#8211; Part 2: Usage and privacy (June 14, 2011)">Microsoft System Center Advisor &#8211; Part 2: Usage and privacy</a> (0)</li>
	<li><a href="http://4sysops.com/archives/microsoft-system-center-advisor-part-1-overview-and-installation/" title="Microsoft System Center Advisor &#8211; Part 1: Overview and installation (June 13, 2011)">Microsoft System Center Advisor &#8211; Part 1: Overview and installation</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-simplesysinfo-a-customizable-system-information-tool-for-windows/" title="FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows (May 19, 2011)">FREE: SimpleSysInfo &#8211; A customizable system information tool for Windows</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-sysinternalsupdater-update-sysinternals-suite/" title="FREE: SysInternalsUpdater &#8211; Update Sysinternals Suite (May 16, 2011)">FREE: SysInternalsUpdater &#8211; Update Sysinternals Suite</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/build-a-bootable-windows-pe-3-0-usb-drive-with-rescue-tools-part-1/feed/</wfw:commentRss>
		<slash:comments>46</slash:comments>
		</item>
		<item>
		<title>FREE: Request Tracker &#8211; ITIL compliant Service Desk software</title>
		<link>http://4sysops.com/archives/free-request-tracker-itil-compliant-service-desk-software/</link>
		<comments>http://4sysops.com/archives/free-request-tracker-itil-compliant-service-desk-software/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 20:50:26 +0000</pubDate>
		<dc:creator>Alexander Weiss</dc:creator>
				<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[desktop management tools]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://4sysops.com/?p=4161</guid>
		<description><![CDATA[<p>According to ITIL, the Service Desk is the central hub and single point of contact for users. Due to high licensing fees for commercial ticketing software, however, Service Desk staff members sometimes have to live without a supporting software packet. Some of them get creative and develop their own ways of structuring the requests. Others just use the task list feature of Outlook to organize the requests. The drawbacks of these custom solutions are many; for example, there is no way to measure the time spent with each support case. However, the biggest issue is the lack of a software mechanism that enforces the defined policies.</p>
<p><a href="http://bestpractical.com/rt/">Request Tracker</a> is Open Source software that supports the organization of the Service Desk. It is written in Perl so it runs on various platforms. For those who can’t or don’t want to install the software in house there is also the option to pay for a <a href="http://bestpractical.com/services/hosting.html">hosting service</a>. Once installed you can &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>According to ITIL, the Service Desk is the central hub and single point of contact for users. Due to high licensing fees for commercial ticketing software, however, Service Desk staff members sometimes have to live without a supporting software packet. Some of them get creative and develop their own ways of structuring the requests. Others just use the task list feature of Outlook to organize the requests. The drawbacks of these custom solutions are many; for example, there is no way to measure the time spent with each support case. However, the biggest issue is the lack of a software mechanism that enforces the defined policies.</p>
<p><a href="http://bestpractical.com/rt/">Request Tracker</a> is Open Source software that supports the organization of the Service Desk. It is written in Perl so it runs on various platforms. For those who can’t or don’t want to install the software in house there is also the option to pay for a <a href="http://bestpractical.com/services/hosting.html">hosting service</a>. Once installed you can adjust and configure the software via a web interface.</p>
<p>Request Tracker offers everything you need to build an ITIL compliant Service Desk. You can receive requests by email or via a web interface. Using the web interface, you can search for, prioritize, assign, escalate, and close the tickets. You can also define different queues for e.g. Problem and Incident Management.</p>
<p>The logon/home screen looks like this:</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/03/Request_Tracker_home_screen.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/03/Request_Tracker_home_screen.png','',event,300,75)"><img style="float: none; margin-left: auto; margin-right: auto; border: 0px;" src="http://4sysops.com/wp-content/uploads/2010/03/Request_Tracker_home_screen_thumb.png" border="0" alt="Request Tracker home screen" width="604" height="399" /></a> Here  you find an overview of your open tickets and of unassigned tickets. There is also a form to submit a new support case.</p>
<p>Another important page is the “Ticket metadata” page. This page shows the history of a support ticket such as the initial problem description and a list of the steps taken to solve the problem. The page also shows blocks of metadata about the ticket, including the ticket’s status, the involved people, the timeline, and a list of links connected with the ticket. Here is a picture of a typical ticket:</p>
<p><a href="http://4sysops.com/wp-content/uploads/2010/03/Request_Tracker_ticket_overview.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2010/03/Request_Tracker_ticket_overview.png','',event,300,75)"><img style="float: none; margin-left: auto; margin-right: auto; border: 0px;" src="http://4sysops.com/wp-content/uploads/2010/03/Request_Tracker_ticket_overview_thumb.png" border="0" alt="Request Tracker ticket overview" width="604" height="489" /></a></p>
<p>Request Track er also offers some reporting functions. For example, you can display the total numbers of tickets created or resolved and sort tickets by ticket owners. I miss at least one option here, though: It would be helpful for measuring helpdesk costs if the amount of time spent for resolving a ticket could be tracked.</p>
<p>All in all Request Tracker is a simple ticketing software that offers the most basic functions. This might sound a bit negative, but it isn’t meant to be. I highly value the credo “keep it simple,” especially if the software is used in a smaller environment and no resources are available to train users. Instead of irritating the user with thousands of possibilities, Request Tracker only offers the necessary functions. This keeps the user focused on the important tasks and reduces the time needed to learn the system. As a result the operating costs are low and users are happy. However, for bigger companies with a well-trained helpdesk staff the offered functions might not suffice and these companies might be better served with a more elaborate ticketing system.</p>
Author: Alexander Weiss
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/raffle-manageengine-desktop-central-part-2-features/" title="Raffle: ManageEngine Desktop Central &#8211; Part 2: Features (December 7, 2011)">Raffle: ManageEngine Desktop Central &#8211; Part 2: Features</a> (2)</li>
	<li><a href="http://4sysops.com/archives/raffle-manageengine-desktop-central-part-1-overview/" title="Raffle: ManageEngine Desktop Central &#8211; Part 1: Overview (November 30, 2011)">Raffle: ManageEngine Desktop Central &#8211; Part 1: Overview</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-workspace-manager-express-a-roaming-user-profiles-alternative/" title="FREE: Workspace Manager Express &#8211; A roaming user profiles alternative (November 25, 2011)">FREE: Workspace Manager Express &#8211; A roaming user profiles alternative</a> (0)</li>
	<li><a href="http://4sysops.com/archives/spiceworks-installation-guide/" title="Spiceworks installation guide (November 17, 2011)">Spiceworks installation guide</a> (1)</li>
	<li><a href="http://4sysops.com/archives/dedicated-administrator-connection-dac-in-sql-server-2008-r2/" title="Dedicated Administrator Connection (DAC) in SQL Server 2008 R2 (November 15, 2011)">Dedicated Administrator Connection (DAC) in SQL Server 2008 R2</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/free-request-tracker-itil-compliant-service-desk-software/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

