<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 Forums - Coffeehouse - Real quick help needed</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Forums/rss"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 Forums - Coffeehouse - Real quick help needed</title>
		<link>http://channel9.msdn.com/Forums</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Forums</link>
	<language>en</language>
	<pubDate>Wed, 22 May 2013 06:34:27 GMT</pubDate>
	<lastBuildDate>Wed, 22 May 2013 06:34:27 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>30</c9:totalResults>
	<c9:pageCount>-30</c9:pageCount>
	<c9:pageSize>-1</c9:pageSize>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p>I inherited a .NET ASP 4.0 MVC site and I need to deploy assembly changes from bin I made in visual studio.</p><p>While I am able to deploy these locally on a Windows Server/IIS 7 running on VBox through the network mapped file system, I am unsure which files to deploy to the RDP server running the live site. So far I have only changed .aspx visualization files, but now I need to deploy changes to the database model and controllers I tested.</p><p>Web Deploy is not an option and neither is FTP. I need to manually copy over the files. I do not see assemblies in the IIS website folder on the remote so I assume they are somewhere else.</p><p>Also do I need to restart the site after deploying assemblies for .NET MVC deployment?</p><p>I am asking because when I rebuild the site in visual studio, the changes are instant on the local VBox server. Will the running IIS site pick up the new data schema, ect... w/o a restart?</p><p>This is the equivalent of deploying a .war file on Tomcat. Except it's not Tomcat and that's why I am having problems.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/b89dfa2dd34c4bd591f5a04000fc484e#b89dfa2dd34c4bd591f5a04000fc484e</link>
		<pubDate>Fri, 27 Apr 2012 15:18:31 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/b89dfa2dd34c4bd591f5a04000fc484e#b89dfa2dd34c4bd591f5a04000fc484e</guid>
		<dc:creator>01001001</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/01001001/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p>Copy the .dll file with the name of your project and the .aspx files. If you changed anything in your database schema then you need to apply those changes to the production db.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/ea0ce84c89ae48c8963da04000ffe794#ea0ce84c89ae48c8963da04000ffe794</link>
		<pubDate>Fri, 27 Apr 2012 15:31:43 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/ea0ce84c89ae48c8963da04000ffe794#ea0ce84c89ae48c8963da04000ffe794</guid>
		<dc:creator>ZippyV</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/ZippyV/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Real-quick-help-needed/b89dfa2dd34c4bd591f5a04000fc484e">14 minutes&nbsp;ago</a>, <a href="/Niners/01001001">01001001</a> wrote</p><p>Web Deploy is not an option and neither is FTP. I need to manually copy over the files. I do not see assemblies in the IIS website folder on the remote so I assume they are somewhere else.</p><p></p></div></blockquote><p></p><p>They're usually in bin directory. It's very rare they'd be elsewhere, as that would indicate they're GACed and that is a daft idea.</p><p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Real-quick-help-needed/b89dfa2dd34c4bd591f5a04000fc484e">14 minutes&nbsp;ago</a>, <a href="/Niners/01001001">01001001</a> wrote</p><p>Also do I need to restart the site after deploying assemblies for .NET MVC deployment?</p><p></p></div></blockquote><p></p><p>No, but you should create an <a href="http://weblogs.asp.net/scottgu/archive/2005/10/06/426755.aspx">app_offline.htm</a> file first, before you copy, then delete it after. That'll ensure no-one can connect.</p><p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Real-quick-help-needed/b89dfa2dd34c4bd591f5a04000fc484e">14 minutes&nbsp;ago</a>, <a href="/Niners/01001001">01001001</a> wrote</p><p>I am asking because when I rebuild the site in visual studio, the changes are instant on the local VBox server. Will the running IIS site pick up the new data schema, ect... w/o a restart?</p><p></p></div></blockquote><p></p><p>That's because the app root in IIS is pointing to the development project folder. You won't need to reboot, the app pool should restart automatically for you.</p><p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/1bc0ef69d83b44a29d89a040010160d9#1bc0ef69d83b44a29d89a040010160d9</link>
		<pubDate>Fri, 27 Apr 2012 15:37:05 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/1bc0ef69d83b44a29d89a040010160d9#1bc0ef69d83b44a29d89a040010160d9</guid>
		<dc:creator>blowdart</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/blowdart/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p>I'm trying to figure out how this is going to end up becoming a &quot;Micro$haft sux0r&quot; thread.</p><p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/f0bdf1ff01214a78935ba0400109ceb9#f0bdf1ff01214a78935ba0400109ceb9</link>
		<pubDate>Fri, 27 Apr 2012 16:07:46 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/f0bdf1ff01214a78935ba0400109ceb9#f0bdf1ff01214a78935ba0400109ceb9</guid>
		<dc:creator>cbae</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/cbae/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p>Thanks for the suggestions, I was able to do it. I would like to transcode this into Java, but the project is too big at this point so I am stuck maintaining it.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/451a16d888524391b52fa040014b89ed#451a16d888524391b52fa040014b89ed</link>
		<pubDate>Fri, 27 Apr 2012 20:07:05 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/451a16d888524391b52fa040014b89ed#451a16d888524391b52fa040014b89ed</guid>
		<dc:creator>01001001</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/01001001/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Real-quick-help-needed/451a16d888524391b52fa040014b89ed">3 hours&nbsp;ago</a>, <a href="/Niners/01001001">01001001</a> wrote</p><p>I would like to transcode this into Java,</p><p></p></div></blockquote><p></p><p>Ah, there it is. I was almost disappointed.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/55b071c47f61436bbb38a040017da1cd#55b071c47f61436bbb38a040017da1cd</link>
		<pubDate>Fri, 27 Apr 2012 23:09:28 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/55b071c47f61436bbb38a040017da1cd#55b071c47f61436bbb38a040017da1cd</guid>
		<dc:creator>ZippyV</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/ZippyV/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p>I am still having problems with a controller which is reading from something called the&nbsp;HttpRuntime.Cache. Is that like memcached, and do I need to restart IIS to clear that?</p><p>When I swap out the new .dll file and use this one controller it throws a server error with a custom page. Regardless of HttpRuntime.Cache, I would like to print a stack trace on production.</p><p>The error only happens on the production environment and not on the staging server, so I have to debug this in production.</p><p>Normally, I would use either log4j and log the exception in a try ... catch block. - e.printstacktrace()</p><p>Or I would more likely System.out.println(&quot;searchme&quot;); e.printStackTrace();&nbsp;and then tail -f catalina.out</p><p>And look at the exception in real time.&nbsp;</p><p>The logs in inetpub/.../logs don't really have any stack trace information.</p><p>Is it possible for Windows technology to silently print a stack trace on a production server or am I asking too much from Microsoft?</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/fb5d7455e58c47e6bd11a041001b6d98#fb5d7455e58c47e6bd11a041001b6d98</link>
		<pubDate>Sat, 28 Apr 2012 01:39:51 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/fb5d7455e58c47e6bd11a041001b6d98#fb5d7455e58c47e6bd11a041001b6d98</guid>
		<dc:creator>01001001</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/01001001/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Real-quick-help-needed/fb5d7455e58c47e6bd11a041001b6d98">1 hour&nbsp;ago</a>, <a href="/Niners/01001001">01001001</a> wrote</p><p>I am still having problems with a controller which is reading from something called the&nbsp;HttpRuntime.Cache. Is that like memcached, and do I need to restart IIS to clear that?</p><p>When I swap out the new .dll file and use this one controller it throws a server error with a custom page. Regardless of HttpRuntime.Cache, I would like to print a stack trace on production.</p><p>The error only happens on the production environment and not on the staging server, so I have to debug this in production.</p><p>Normally, I would use either log4j and log the exception in a try ... catch block. - e.printstacktrace()</p><p>Or I would more likely System.out.println(&quot;searchme&quot;); e.printStackTrace();&nbsp;and then tail -f catalina.out</p><p>And look at the exception in real time.&nbsp;</p><p>The logs in inetpub/.../logs don't really have any stack trace information.</p><p>Is it possible for Windows technology to silently print a stack trace on a production server or am I asking too much from Microsoft?</p><p></p></div></blockquote><p></p><p>Strange now of the solutions for your other platforms are dumping stack traces on a production server. Its seems too much to ask for those too.</p><p>You can get a runtime stack under three conditions, the DLLs are debug compiled, you have debug turned on in the web.config and you disable the custom error page, use the default and set it to show to all IPs (or local, and RDP to the web server and load the page)</p><p>Of course there's log4net too, and things like Elmah to catch unhandled exceptions and log them into a database with no changes to source.</p><p>If you'd looked at the documentation for the Cache class you'd have seen it is linked to the app domain, so recycling the app domain will clear it.</p><p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/14b2ed65552a4a04b88ea041002e091c#14b2ed65552a4a04b88ea041002e091c</link>
		<pubDate>Sat, 28 Apr 2012 02:47:36 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/14b2ed65552a4a04b88ea041002e091c#14b2ed65552a4a04b88ea041002e091c</guid>
		<dc:creator>blowdart</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/blowdart/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p>Unhandled exceptions are also logged in the Event Viewer under Applications.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/b74b15f2a3a440d8bfb4a04100d2a9f7#b74b15f2a3a440d8bfb4a04100d2a9f7</link>
		<pubDate>Sat, 28 Apr 2012 12:47:00 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/b74b15f2a3a440d8bfb4a04100d2a9f7#b74b15f2a3a440d8bfb4a04100d2a9f7</guid>
		<dc:creator>ZippyV</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/ZippyV/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Real-quick-help-needed#c14b2ed65552a4a04b88ea041002e091c">blowdart</a>:</p><p></p><blockquote><div class="quoteText"><span>You can get a runtime stack under three conditions, the DLLs are debug compiled, you have debug turned on in the web.config and you disable the custom error page, use the default and set it to show to all IPs (or local, and RDP to the web server and load the page)</div></blockquote></span><p></p><p><span>The default solution for .NET web apps is to show the stack trace to HTTP clients in the browser?</span></p><p>Even PHP logs errors in /var/log</p><p>Why does a server even need to be running a display manager anyway? Why would you RDP to a production server and start surfing the web?</p><p>This seems extremely backwards.&nbsp;</p><p>Lets say for an instant that this is a very high traffic website where if you enable a debug build it will slow it down enough to cause a problem and if you show stack traces in the browser people will get scared just like they did on MySpace and never come back.</p><p>What now? Can't I just silently log errors to a log file without using another library?</p><p>Is there an&nbsp;equivalent&nbsp;of catalina.out or not?</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/5914a663d4314eb3a5a5a04100e64b84#5914a663d4314eb3a5a5a04100e64b84</link>
		<pubDate>Sat, 28 Apr 2012 13:58:28 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/5914a663d4314eb3a5a5a04100e64b84#5914a663d4314eb3a5a5a04100e64b84</guid>
		<dc:creator>01001001</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/01001001/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Real-quick-help-needed#cb74b15f2a3a440d8bfb4a04100d2a9f7">ZippyV</a>: Thanks for the info.</p><p>I guess you have to export all the messages and search through them with grep on another machine.</p><p>Wow, this sucks.</p><p>.... and only 15MB of event data to grep through after a slow RDP file copy, that's WAY easier than hitting the controller and running</p><p>tail -f catalina.out | grep anchorText</p><p>Thanks Microsoft.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/86c175fbf02643249fb4a04100eab7f1#86c175fbf02643249fb4a04100eab7f1</link>
		<pubDate>Sat, 28 Apr 2012 14:14:35 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/86c175fbf02643249fb4a04100eab7f1#86c175fbf02643249fb4a04100eab7f1</guid>
		<dc:creator>01001001</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/01001001/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Real-quick-help-needed/5914a663d4314eb3a5a5a04100e64b84">23 minutes&nbsp;ago</a>, <a href="/Niners/01001001">01001001</a> wrote</p><p>@<a href="/Forums/Coffeehouse/Real-quick-help-needed#c14b2ed65552a4a04b88ea041002e091c">blowdart</a>:</p><p>*snip*</p><p><span>The default solution for .NET web apps is to show the stack trace to HTTP clients in the browser?</span></p><p>*snip*</p><p></p></div></blockquote><p></p><p>Actually, no. That's the exact opposite of what he said.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/cb8b92d9d729444087b1a04100ed58e2#cb8b92d9d729444087b1a04100ed58e2</link>
		<pubDate>Sat, 28 Apr 2012 14:24:09 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/cb8b92d9d729444087b1a04100ed58e2#cb8b92d9d729444087b1a04100ed58e2</guid>
		<dc:creator>cbae</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/cbae/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Real-quick-help-needed#c86c175fbf02643249fb4a04100eab7f1">1001001</a>: One word: PowerShell.</p><p><pre class="brush: ps">Get-EventLog Application -Source &quot;ASP.NET 4.0.30319.0&quot; |? { $_.Message -like &quot;*exception*&quot; }</pre></p><p>Which actually allows for more complex queries with greater ease than anything bash provides.</p><p>Just because you suck at using the system doesn't mean the system sucks.</p><p>You can also implement custom error logging in Global.asax, using log4net, NLog, or anything you want. My website sends me an e-mail whenever an error occurs.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/49817c752e0b4b0aa1b5a04100f039f9#49817c752e0b4b0aa1b5a04100f039f9</link>
		<pubDate>Sat, 28 Apr 2012 14:34:38 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/49817c752e0b4b0aa1b5a04100f039f9#49817c752e0b4b0aa1b5a04100f039f9</guid>
		<dc:creator>Sven Groot</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Sven Groot/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Real-quick-help-needed#c49817c752e0b4b0aa1b5a04100f039f9">Sven Groot</a>: Thanks but no dice.</p><p><span></p><pre class="brush: ps">Get-EventLogApplication |? { $_.Source.StartsWith(&quot;ASP.NET&quot;) } &gt; asp.log</pre></span><p></p><p></p><blockquote><div class="quoteText">XXXXXXXX Apr 27 04:46 &nbsp;Warning &nbsp; &nbsp; ASP.NET 4.0.30319.0 &nbsp; &nbsp;XXXX4849XX Event code: 3005...</div></blockquote><p></p><p>Entries are truncated and no stack trace information is available. ZippyV's method works with a CSV export, except now I am searching through megabytes of mixed logs for Application.</p><p>I think in this case, the system really does&nbsp;suck, but I can't do anything about it. As is typical for Windows, some little sh1t company probably has a logging solution they sell for 1 million dollars because they only have 2 customers.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/4bfdeb28c53c4b6b9e42a04100f3e691#4bfdeb28c53c4b6b9e42a04100f3e691</link>
		<pubDate>Sat, 28 Apr 2012 14:48:00 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/4bfdeb28c53c4b6b9e42a04100f3e691#4bfdeb28c53c4b6b9e42a04100f3e691</guid>
		<dc:creator>01001001</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/01001001/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Real-quick-help-needed/4bfdeb28c53c4b6b9e42a04100f3e691">26 seconds&nbsp;ago</a>, <a href="/Niners/01001001">01001001</a> wrote</p><p>Entries are truncated and no stack trace information is available. ZippyV's method works with a CSV export, except now I am searching through megabytes of mixed logs for Application.</p></div></blockquote><p></p><p>Then modify the&nbsp;PowerShell to custom-format the results. Or export to CSV from there. These things are trivial, even a beginner at PowerShell knows how. If you actually knew how to use the system, you wouldn't have this problem.</p><p>For example:</p><pre>$log = Get-EventLog Application -Source &quot;ASP.NET 4.0.30319.0&quot; |? { $_.Message -like &quot;*exception*&quot; }<br>$log | Format-List<br>$log | Export-Csv log.csv<br>($log | ConvertTo-Xml).Save(&quot;log.xml&quot;)</pre><p>EDIT: What does suck is the damn code block on this site.</p><p></p><blockquote><div class="quoteText">I think in this case, the system does really suck</div></blockquote><p></p><p>No, you just don't know how to use it, and you're unwilling to learn because you've decided a priori that since MS made it it must automatically suck.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/d30fa1d18e6249978c65a04100f57589#d30fa1d18e6249978c65a04100f57589</link>
		<pubDate>Sat, 28 Apr 2012 14:53:41 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/d30fa1d18e6249978c65a04100f57589#d30fa1d18e6249978c65a04100f57589</guid>
		<dc:creator>Sven Groot</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Sven Groot/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Real-quick-help-needed#cd30fa1d18e6249978c65a04100f57589">Sven Groot</a>:</p><p><pre class="brush: ps">$log = Get-EventLog Application -Source &quot;ASP.NET 4.0.30319.0&quot; |? { $_.Message -like &quot;*exception*&quot; }
$log | Format-List
$log | Export-Csv log.csv
($log | ConvertTo-Xml).Save(&quot;log.xml&quot;)</pre></p><p>So if I put that in a file, what's the command to run it?</p><p>sh file.sh</p><p>!#/bin/sh at the top of the file, then ./file.sh</p><p>or do I have to call it file.bat and then click on it and open as powershell ???</p><p>This is for future reference since right now I am just going to grep through the CSV file I exported in the Event Viewer in CentOS, after I go to Dennys that is.&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/8a6ba57eb4e84459840aa04100f9f8dc#8a6ba57eb4e84459840aa04100f9f8dc</link>
		<pubDate>Sat, 28 Apr 2012 15:10:07 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/8a6ba57eb4e84459840aa04100f9f8dc#8a6ba57eb4e84459840aa04100f9f8dc</guid>
		<dc:creator>01001001</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/01001001/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Real-quick-help-needed#c8a6ba57eb4e84459840aa04100f9f8dc">1001001</a>: You can just&nbsp;type those commands into PowerShell, since it's three ways to output the same data it makes little sense as a script.</p><p>But FYI, the extension for powershell scripts is .ps1, you run them from a PowerShell prompt with .\script.ps1. Note that you need to enable execution of unsigned scripts (run as admin: Set-ExecutionPolicy RemoteSigned) before that works; it's secure by default.</p><p>But I've got better things to do than to teach you PowerShell. I suggest you look up a tutorial; PowerShell is an amazingly powerful shell scripting environment that puts bash to shame (and yes, I'm an expert in both; I use bash probably more often than PSH because I use a Linux cluster for my research). Not that you'd ever admit it.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/88de898b81d74d3f98d8a04100fb7e23#88de898b81d74d3f98d8a04100fb7e23</link>
		<pubDate>Sat, 28 Apr 2012 15:15:39 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/88de898b81d74d3f98d8a04100fb7e23#88de898b81d74d3f98d8a04100fb7e23</guid>
		<dc:creator>Sven Groot</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Sven Groot/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Real-quick-help-needed/86c175fbf02643249fb4a04100eab7f1">1 hour&nbsp;ago</a>, <a href="/Niners/01001001">01001001</a> wrote</p><p>@<a href="/Forums/Coffeehouse/Real-quick-help-needed#cb74b15f2a3a440d8bfb4a04100d2a9f7">ZippyV</a>: Thanks for the info.</p><p>I guess you have to export all the messages and search through them with grep on another machine.</p><p></p></div></blockquote><p></p><p>Or, if you knew what you were doing, you'd be using the filtering capabilities, you know, the one that says &quot;Filter event log&quot; in the event log viewer, after all, you say you're RDPing in.</p><p>Don't complain about the way Windows does things when you appear to be limited to expecting it to work like *nix, and not actually going looking for another solution.</p><p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/b906d853de2c4a37bc6ea04100fcdc55#b906d853de2c4a37bc6ea04100fcdc55</link>
		<pubDate>Sat, 28 Apr 2012 15:20:38 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/b906d853de2c4a37bc6ea04100fcdc55#b906d853de2c4a37bc6ea04100fcdc55</guid>
		<dc:creator>blowdart</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/blowdart/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Real-quick-help-needed/5914a663d4314eb3a5a5a04100e64b84">1 hour&nbsp;ago</a>, <a href="/Niners/01001001">01001001</a> wrote</p><p>@<a href="/Forums/Coffeehouse/Real-quick-help-needed#c14b2ed65552a4a04b88ea041002e091c">blowdart</a>:</p><p>*snip*</p><p><span>The default solution for .NET web apps is to show the stack trace to HTTP clients in the browser?</span></p><p></p></div></blockquote><p></p><p>No, try again, that's the exact opposite of what I said.</p><p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Real-quick-help-needed/5914a663d4314eb3a5a5a04100e64b84">1 hour&nbsp;ago</a>, <a href="/Niners/01001001">01001001</a> wrote</p><p>Even PHP logs errors in /var/log</p><p></p></div></blockquote><p></p><p>Not by default. You have to turn that on,</p><p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Real-quick-help-needed/5914a663d4314eb3a5a5a04100e64b84">1 hour&nbsp;ago</a>, <a href="/Niners/01001001">01001001</a> wrote</p><p>Why does a server even need to be running a display manager anyway? Why would you RDP to a production server and start surfing the web?</p><p>This seems extremely backwards.&nbsp;</p><p></p></div></blockquote><p></p><p>That's nice dear. Wrong, but nice.</p><ol><li>You can run the admin tools remotely and connect by retargetting them to the server you want to admin. </li><li>Server Core has no GUI, so it's perfectly possible to run a Windows server instance without the things you think are not needed </li></ol><p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Real-quick-help-needed/5914a663d4314eb3a5a5a04100e64b84">1 hour&nbsp;ago</a>, <a href="/Niners/01001001">01001001</a> wrote</p><p>Lets say for an instant that this is a very high traffic website where if you enable a debug build it will slow it down enough to cause a problem and if you show stack traces in the browser people will get scared just like they did on MySpace and never come back.</p><p>What now? Can't I just silently log errors to a log file without using another library?</p><p></p></div></blockquote><p></p><p>That's what the event log is for. And unlike PHP you don't even have to turn that on, ASP.NET will log there by default.</p><p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/d4bb399c01d348959182a04100fe095c#d4bb399c01d348959182a04100fe095c</link>
		<pubDate>Sat, 28 Apr 2012 15:24:55 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/d4bb399c01d348959182a04100fe095c#d4bb399c01d348959182a04100fe095c</guid>
		<dc:creator>blowdart</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/blowdart/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Real-quick-help-needed/d4bb399c01d348959182a04100fe095c">3 minutes&nbsp;ago</a>, <a href="/Niners/blowdart">blowdart</a> wrote</p><p>You can run the admin tools remotely and connect by retargetting them to the server you want to admin.</p></div></blockquote><p></p><p>And just to add to that: PowerShell can also do that. You can run a remote PowerShell session,&nbsp;and many of the commands (including Get-EventLog)&nbsp;have a ComputerName argument.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/569deaf593a14e48ae0ca04100ff652d#569deaf593a14e48ae0ca04100ff652d</link>
		<pubDate>Sat, 28 Apr 2012 15:29:51 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/569deaf593a14e48ae0ca04100ff652d#569deaf593a14e48ae0ca04100ff652d</guid>
		<dc:creator>Sven Groot</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Sven Groot/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p>Did I call it or what? I ran out of goodwill to offer him a long time ago. I commend you guys for even trying.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/8af405fa5d134b46b2a3a0410109df2d#8af405fa5d134b46b2a3a0410109df2d</link>
		<pubDate>Sat, 28 Apr 2012 16:08:00 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/8af405fa5d134b46b2a3a0410109df2d#8af405fa5d134b46b2a3a0410109df2d</guid>
		<dc:creator>cbae</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/cbae/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Real-quick-help-needed#c8af405fa5d134b46b2a3a0410109df2d">cbae</a>: I'm more doing it for the benefit anyone else who might read this thread later. Beer is obviously not actually interested in learning how to do any of this, he just wants to do things the stupid way and then complain it was not exactly like GNU.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/2dc6c1fa866e437faa3fa041010b250e#2dc6c1fa866e437faa3fa041010b250e</link>
		<pubDate>Sat, 28 Apr 2012 16:12:38 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/2dc6c1fa866e437faa3fa041010b250e#2dc6c1fa866e437faa3fa041010b250e</guid>
		<dc:creator>Sven Groot</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Sven Groot/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Real-quick-help-needed/2dc6c1fa866e437faa3fa041010b250e">2 minutes&nbsp;ago</a>, <a href="/Niners/Sven%20Groot">Sven&nbsp;Groot</a> wrote</p><p>@<a href="/Forums/Coffeehouse/Real-quick-help-needed#c8af405fa5d134b46b2a3a0410109df2d">cbae</a>: I'm more doing it for the benefit anyone else who might read this thread later.</p><p></p></div></blockquote><p></p><p>This. Plus, you know what, no matter how big a troll/asshat someone is, if I can answer their questions I will. Stupid NI upbringing.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/d0d5543ffa844715943ca041010c05f9#d0d5543ffa844715943ca041010c05f9</link>
		<pubDate>Sat, 28 Apr 2012 16:15:50 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/d0d5543ffa844715943ca041010c05f9#d0d5543ffa844715943ca041010c05f9</guid>
		<dc:creator>blowdart</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/blowdart/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Real-quick-help-needed#c2dc6c1fa866e437faa3fa041010b250e">Sven Groot</a>:</p><p>Back from Dennys:</p><p></p><blockquote><div class="quoteText"><span>is obviously not actually interested in learning how to do any of this</div></blockquote></span><p></p><p><span>You are correct. I more want to take your powershell code, and throw it into a .ps1 file and run it when I need a stack trace.</span></p><p><span></p><blockquote><div class="quoteText"><span>I use bash probably more often than PSH because I use a Linux cluster for my research). Not that you'd ever admit it</div></blockquote></span></span><p></p><p><span><span>You use Linux, because Windows has no viable alternative to Zookeeper/HDFS and you know it.</span></span></p><p>I don't want to learn Powershell because I am a programmer, not a systems admin, and knowing bash is good enough 99% of the time as Cygwin runs on Windows. For that 1% where I would have to export a binary event log from Windows's cumbersome proprietary binary log formats, it's not worth the months of learning.</p><p>Windows has a huge learning curve for a 1% case use return. Not worth it.&nbsp;</p><p>Thanks for the info on how to get the stack trace. No thanks to your &quot;but Windows is actually superior&quot; nonsense.</p><p>If it was MySpace would still be #1 on the internet, not the PHP/MySQL/Java(Cassandra) driven Facebook. If it was Sven would not be forced to use Linux to run key/value pairing in parallel.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/c607cb064fec4fafb275a04101137b71#c607cb064fec4fafb275a04101137b71</link>
		<pubDate>Sat, 28 Apr 2012 16:42:59 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/c607cb064fec4fafb275a04101137b71#c607cb064fec4fafb275a04101137b71</guid>
		<dc:creator>01001001</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/01001001/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p>But still, the sheer ignorance displayed here is something to behold. And, before Beer deletes all his posts to hide his embarassment (as he did before), here's a &quot;stack trace&quot; of his inanity:</p><p></p><blockquote><div class="quoteText"><p></p><p>1 day ago</p><p>I inherited a .NET ASP 4.0 MVC site and I need to deploy assembly changes from bin I made in visual studio.</p><p>While I am able to deploy these locally on a Windows Server/IIS 7 running on VBox through the network mapped file system, I am unsure which files to deploy to the RDP server running the live site. So far I have only changed .aspx visualization files, but now I need to deploy changes to the database model and controllers I tested.</p><p>Web Deploy is not an option and neither is FTP. I need to manually copy over the files. I do not see assemblies in the IIS website folder on the remote so I assume they are somewhere else.</p><p>Also do I need to restart the site after deploying assemblies for .NET MVC deployment?</p><p>I am asking because when I rebuild the site in visual studio, the changes are instant on the local VBox server. Will the running IIS site pick up the new data schema, ect... w/o a restart?</p><p>This is the equivalent of deploying a .war file on Tomcat. Except it's not Tomcat and that's why I am having problems.</p><p>20 hours ago</p><p>Thanks for the suggestions, I was able to do it. I would like to transcode this into Java, but the project is too big at this point so I am stuck maintaining it.</p><p>15 hours ago</p><p>I am still having problems with a controller which is reading from something called the HttpRuntime.Cache. Is that like memcached, and do I need to restart IIS to clear that?</p><p>When I swap out the new .dll file and use this one controller it throws a server error with a custom page. Regardless of HttpRuntime.Cache, I would like to print a stack trace on production.</p><p>The error only happens on the production environment and not on the staging server, so I have to debug this in production.</p><p>Normally, I would use either log4j and log the exception in a try ... catch block. - e.printstacktrace()</p><p>Or I would more likely System.out.println(&quot;searchme&quot;); e.printStackTrace(); and then tail -f catalina.out</p><p>And look at the exception in real time.</p><p>The logs in inetpub/.../logs don't really have any stack trace information.</p><p>Is it possible for Windows technology to silently print a stack trace on a production server or am I asking too much from Microsoft?</p><p>2 hours ago</p><p>@blowdart:</p><p>You can get a runtime stack under three conditions, the DLLs are debug compiled, you have debug turned on in the web.config and you disable the custom error page, use the default and set it to show to all IPs (or local, and RDP to the web server and load the page)</p><p>The default solution for .NET web apps is to show the stack trace to HTTP clients in the browser?</p><p>Even PHP logs errors in /var/log</p><p>Why does a server even need to be running a display manager anyway? Why would you RDP to a production server and start surfing the web?</p><p>This seems extremely backwards.</p><p>Lets say for an instant that this is a very high traffic website where if you enable a debug build it will slow it down enough to cause a problem and if you show stack traces in the browser people will get scared just like they did on MySpace and never come back.</p><p>What now? Can't I just silently log errors to a log file without using another library?</p><p>Is there an equivalent of catalina.out or not?</p><p>2 hours ago</p><p>@ZippyV: Thanks for the info.</p><p>I guess you have to export all the messages and search through them with grep on another machine.</p><p>Wow, this sucks.</p><p>.... and only 15MB of event data to grep through after a slow RDP file copy, that's WAY easier than hitting the controller and running</p><p>tail -f catalina.out | grep anchorText</p><p>Thanks Microsoft.</p><p>1 hour ago</p><p>@Sven Groot: Thanks but no dice.</p><p>1 Get-EventLogApplication |? { $_.Source.StartsWith(&quot;ASP.NET&quot;) } &gt; asp.log</p><p>XXXXXXXX Apr 27 04:46&nbsp; Warning&nbsp;&nbsp;&nbsp;&nbsp; ASP.NET 4.0.30319.0&nbsp;&nbsp;&nbsp; XXXX4849XX Event code: 3005...</p><p>Entries are truncated and no stack trace information is available. ZippyV's method works with a CSV export, except now I am searching through megabytes of mixed logs for Application.</p><p>I think in this case, the system really does suck, but I can't do anything about it. As is typical for Windows, some little sh1t company probably has a logging solution they sell for 1 million dollars because they only have 2 customers.</p><p>1 hour ago</p><p>@Sven Groot:</p><p>$log = Get-EventLog Application -Source &quot;ASP.NET 4.0.30319.0&quot; |? { $_.Message -like &quot;*exception*&quot; } $log | Format-List $log | Export-Csv log.csv ($log | ConvertTo-Xml).Save(&quot;log.xml&quot;)</p><p>So if I put that in a file, what's the command to run it?</p><p>sh file.sh</p><p>!#/bin/sh at the top of the file, then ./file.sh</p><p>or do I have to call it file.bat and then click on it and open as powershell ???</p><p>This is for future reference since right now I am just going to grep through the CSV file I exported in the Event Viewer in CentOS, after I go to Dennys that is.</p><p>2 minutes ago</p><p>@Sven Groot:</p><p>Back from Dennys:</p><p>is obviously not actually interested in learning how to do any of this</p><p>You are correct. I more want to take your powershell code, and throw it into a .ps1 file and run it when I need a stack trace.</p><p>I use bash probably more often than PSH because I use a Linux cluster for my research). Not that you'd ever admit it</p><p>You use Linux, because Windows has no viable alternative to Zookeeper/HDFS and you know it.</p><p>I don't want to learn Powershell because I am a programmer, not a systems admin, and knowing bash is good enough 99% of the time as Cygwin runs on Windows. For that 1% where I would have to export a binary event log from Windows's cumbersome proprietary binary log formats, it's not worth the months of learning.</p><p>Windows has a huge learning curve for a 1% case use return. Not worth it.</p><p>Thanks for the info on how to get the stack trace. No thanks to your &quot;but Windows is actually superior nonsense&quot;. If it was MySpace would still be #1 on the internet, not the PHP/MySQL/Java(Cassandra) driven Facebook. If it was Sven would not be forced to use Linux to run key/value pairing in parallel.</p></div></blockquote><p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/f74df66423b742f1ac0da04101149ffd#f74df66423b742f1ac0da04101149ffd</link>
		<pubDate>Sat, 28 Apr 2012 16:47:09 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/f74df66423b742f1ac0da04101149ffd#f74df66423b742f1ac0da04101149ffd</guid>
		<dc:creator>PaoloM</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/PaoloM/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Real-quick-help-needed/c607cb064fec4fafb275a04101137b71">15 minutes&nbsp;ago</a>, <a href="/Niners/01001001">01001001</a> wrote</p><p>&nbsp;No thanks to your &quot;but Windows is actually superior&quot; nonsense.</p><p></p></div></blockquote><p></p><p>I think other readers will realise no-one said any such thing.</p><p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/925ec587e44d49aaadada0410117ff67#925ec587e44d49aaadada0410117ff67</link>
		<pubDate>Sat, 28 Apr 2012 16:59:26 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/925ec587e44d49aaadada0410117ff67#925ec587e44d49aaadada0410117ff67</guid>
		<dc:creator>blowdart</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/blowdart/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p>15 minutes&nbsp;ago, blowdart wrote</p><p>*snip*</p><p>I think other readers will realise no-one said any such thing.</p><p></p></div></blockquote><p></p><p>This thread has an overwhelming pool of examples of that, but let's just pick 2 from the &quot;top posters&quot;.</p><p></p><blockquote><div class="quoteText"><span>PowerShell is an amazingly powerful shell scripting environment that puts bash to shame</span></div></blockquote><p></p><p></p><blockquote><div class="quoteText"><span>Strange now of the solutions for your other platforms are dumping stack traces on a production server. Its seems too much to ask for those too.</span></div></blockquote><p></p><p>None of this really matters to me. This IIS web app is just a PITA, and I want to put it to rest where I can just make a new controller and update without getting unexpected errors. The Linq stuff on test is dramatically different because production has a crazy amount of MSSQL data and RAM to match, so I need to grab the production stack traces silently in a non-MySpace scare-off-a-billion-people style way.</p><p>That's all. You all didn't have to make this some sort of Windows Server crying game.&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/24fc3204a1ef4c72afafa041011ca297#24fc3204a1ef4c72afafa041011ca297</link>
		<pubDate>Sat, 28 Apr 2012 17:16:19 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/24fc3204a1ef4c72afafa041011ca297#24fc3204a1ef4c72afafa041011ca297</guid>
		<dc:creator>01001001</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/01001001/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p>For posterity:</p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Real-quick-help-needed/24fc3204a1ef4c72afafa041011ca297">12 minutes ago</a></p><div class="post-content"><p>&nbsp;15 minutes ago, blowdart wrote</p><blockquote><div class="quoteText"><p>*snip*</p><p>I think other readers will realise no-one said any such thing.&nbsp;</p></div></blockquote><p>This thread has an overwhelming pool of examples of that, but let's just pick 2 from the &quot;top posters&quot;.</p><blockquote><div class="quoteText"><span>PowerShell is an amazingly powerful shell scripting environment that puts bash to shame</span></div></blockquote><blockquote><div class="quoteText"><span>Strange now of the solutions for your other platforms are dumping stack traces on a production server. Its seems too much to ask for those too.</span></div></blockquote><p>None of this really matters to me. This IIS web app is just a PITA, and I want to put it to rest where I can just make a new controller and update without getting unexpected errors. The Linq stuff on test is dramatically different because production has a crazy amount of MSSQL data and RAM to match, so I need to grab the production stack traces silently in a non-MySpace scare-off-a-billion-people style way.</p><p>That's all. You all didn't have to make this some sort of Windows Server crying game.</p></div>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/d3eb87ff01f145e99193a0410120811b#d3eb87ff01f145e99193a0410120811b</link>
		<pubDate>Sat, 28 Apr 2012 17:30:24 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/d3eb87ff01f145e99193a0410120811b#d3eb87ff01f145e99193a0410120811b</guid>
		<dc:creator>PaoloM</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/PaoloM/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p>Maybe you can get the ASP.NET app to run on Linux via Mono. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif?v=c9' alt='Smiley' /></p><p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/3de8970b93e44cd9bd97a041012359ab#3de8970b93e44cd9bd97a041012359ab</link>
		<pubDate>Sat, 28 Apr 2012 17:40:46 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/3de8970b93e44cd9bd97a041012359ab#3de8970b93e44cd9bd97a041012359ab</guid>
		<dc:creator>Bass</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Bass/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Real quick help needed</title>
		<description><![CDATA[<p>And once again a beer thread reaches its end of usefulness.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/be7569b6d88e4f65b6fda041012848bf#be7569b6d88e4f65b6fda041012848bf</link>
		<pubDate>Sat, 28 Apr 2012 17:58:44 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Real-quick-help-needed/be7569b6d88e4f65b6fda041012848bf#be7569b6d88e4f65b6fda041012848bf</guid>
		<dc:creator>blowdart</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/blowdart/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>