User Scott Saad - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T09:22:50Zhttp://stackoverflow.com/feeds/user/4916http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/946221/stackoverflow-reputation-using-powershell/1144585#11445852Answer by Scott Saad for StackOverflow reputation using PowerShellScott Saad2009-07-17T17:10:29Z2009-12-08T06:08:09Z<p>This question looked very fun and I had to give it a try even though its already has an accepted answer. Plus, the accepted answer does not seem to properly work for reputations that are greater than 999 (i.e. <strong>1,000</strong> contains a <strong>comma</strong> which is being also being split). </p>
<p>Being that the format of Flair is in JSON, simply splitting on it does not always work and regex against JSON is almost impossible. While there are .NET JSON libraries out there I wanted to keep the solution all within PowerShell (including V1). </p>
<p>The following uses the 3.5 <a href="http://msdn.microsoft.com/en-us/library/system.web.script.serialization.javascriptserializer.aspx" rel="nofollow">JavaScriptSerializer</a> class, which requires us to load the assembly in our script.</p>
<h3>Update</h3>
<p>With PowerShell 2.0 it's a lot easier to create "custom objects" with hashes. </p>
<pre><code>function Get-StackOverflowReputation
{
param ( $UserId )
$assembly = [Reflection.Assembly]::LoadWithPartialName("System.Web.Extensions")
$client = New-Object System.Net.WebClient
$json = $client.DownloadString("http://stackoverflow.com/users/flair/$UserId.json")
$transmogrifer = New-Object System.Web.Script.Serialization.JavaScriptSerializer
$jsonFlair = $transmogrifer.DeserializeObject( $json )
$flair = New-Object PSObject -Property @{ user = $jsonFlair["displayName"]; rep = $jsonFlair["reputation"] }
$flair
}
1> Get-StackOverflowReputation -UserId 45571
user rep
---- ---
Andy Schneider 779
</code></pre>
http://stackoverflow.com/questions/183254/what-is-a-postback8What is a postback?Scott Saad2008-10-08T15:01:20Z2009-11-24T16:35:07Z
<p>I'm making my way into web development and have seen the word <strong><em>postback</em></strong> thrown around. Coming from a non-web based background, <strong>what does a new web developer have to know about postbacks? (i.e. what are they and when do they arise?)</strong> </p>
<p>Any more information you'd like to share to help a newbie in the web world be aware of postbacks would be most greatly appreciated.</p>
http://stackoverflow.com/questions/84058/is-net-a-write-once-run-anywhere-wora-platform-like-java-claims-to-be3Is .NET a write once, run anywhere (WORA) platform like Java claims to be?Scott Saad2008-09-17T14:50:52Z2009-11-22T06:26:35Z
<p>I remember Sun's slogan so vividly... <a href="http://en.wikipedia.org/wiki/Write_once,_run_anywhere" rel="nofollow">"Write Once, Run Anywhere"</a>. The idea being that since programs are compiled into standard byte codes, any device with a Java Virtual Machine could run it. Over the years, Java seems to have made it onto many platforms/devices. </p>
<p>Is this the intention or was it ever the intention of .NET. If so, what kind of efforts are being put forth to make this a reality?</p>
http://stackoverflow.com/questions/1689614/need-help-with-ini-file-in-powershell/1690073#16900730Answer by Scott Saad for Need help with INI file in PowershellScott Saad2009-11-06T20:11:38Z2009-11-06T20:22:23Z<p>I'm trying to reproduce the problem you're seeing but cannot do it. Here is a recreation of the code that I'm using to test with:</p>
<pre><code>("[Red]","[White]","[Blue]") | Out-File Test.ini -Encoding ASCII
$Path = (get-item Test.ini)
$arraylist = new-object System.Collections.ArrayList
$matches = @()
switch -regex -file $Path {
"^\[(.+)\]$" {
$arraylist.Add($matches[1])
}
}
$arrayList
</code></pre>
<p>When this is executed, I get the following output:</p>
<pre><code>Red
White
Blue
</code></pre>
<p>Is there something I'm missing that your code does not show?</p>
http://stackoverflow.com/questions/787811/how-do-i-create-a-custom-dialog-in-wix-for-user-input2How do I create a custom dialog in WiX for user input?Scott Saad2009-04-24T22:31:18Z2009-10-16T12:58:57Z
<p>I'm using WiX to create an installer for a windows service. It's desirable that the name of service that gets installed and displayed in Services is configurable at install time. </p>
<p>For example, this is what I'm thinking (wix xml snip):</p>
<pre><code><ServiceInstall
Id="MyServiceInstaller"
Name="NAME_PASSED_FROM_DIALOG"
Type="ownProcess"
Start="auto"
ErrorControl="normal"
Description="My Service"
Account="localsystem"/>
<ServiceControl
Id="StartMyServiceInstaller"
Name="NAME_PASSED_FROM_DIALOG"
Start="install"
Wait="no" />
<ServiceControl
Id="StopMyServiceInstaller"
Name="NAME_PASSED_FROM_DIALOG"
Remove="uninstall"
Stop="both"
Wait="yes" />
</code></pre>
<p>NAME_PASSED_FROM_DIALOG is something I would like to hook up to a custom dialog that gets created and gets displayed to the person installing the service so they can set/modify the service name. I think this is very similar to the WIXUI_INSTALLDIR property that gets set and passed to the WixUI_InstallDir Dialog Set. </p>
<p>My question is:</p>
<p>How do I create a custom UI dialog that can accept user input which gets passed into runtime of the installer?</p>
http://stackoverflow.com/questions/1531529/supressing-log-output-for-nant-delete-task/1575077#15750771Answer by Scott Saad for Supressing Log Output for NAnt Delete TaskScott Saad2009-10-15T21:06:30Z2009-10-15T21:06:30Z<p>I've looked into this before and it comes down to the internals of NAnt and the way the project's logging threshold cannot be properly controlled (arguably a bug). There has been good conversation around a non-intrusive <em>workaround</em> which is to create and consume a new task called <strong>LogLevel</strong>.</p>
<p>A use case would be the following:</p>
<pre><code><loglevel level="None">
<delete file="helloworld.txt"/>
</loglevel>
</code></pre>
<p>The first post discussing this was from <a href="http://jayflowers.com/WordPress/?p=133" rel="nofollow">Shh, Keep it Quiet</a>, by Jay Flowers. There was then a nice <a href="http://www.neovolve.com/post/2008/01/16/loglevel-nant-task.aspx" rel="nofollow">follow up</a> to this post by Rory Primrose. Be sure to check the comments as there is very useful information revealed.</p>
http://stackoverflow.com/questions/1539840/should-i-implement-the-ipropertycmdletprovider-interface-for-a-powershell-cmdlet0Should I implement the IPropertyCmdletProvider interface for a PowerShell Cmdlet?Scott Saad2009-10-08T19:08:01Z2009-10-08T19:57:58Z
<p>I'm writing a <a href="http://msdn.microsoft.com/en-us/library/system.management.automation.provider.navigationcmdletprovider%28VS.85%29.aspx" rel="nofollow">NavigationCmdletProvider</a> for PowerShell. Through the <a href="http://msdn.microsoft.com/en-us/library/system.management.automation.provider.itemcmdletprovider.getitem%28VS.85%29.aspx" rel="nofollow">GetItem</a> and <a href="http://msdn.microsoft.com/en-us/library/system.management.automation.provider.containercmdletprovider.getchilditems%28VS.85%29.aspx" rel="nofollow">GetChildItems</a> overrides, there are various types of objects that are written to the pipeline.</p>
<p>The docs for <a href="http://msdn.microsoft.com/en-us/library/system.management.automation.provider.ipropertycmdletprovider%28VS.85%29.aspx" rel="nofollow">IPropertyCmdletProvider</a> interface tell us the following:</p>
<blockquote>
<p>Developers should implement this
interface under the following
conditions:</p>
<ul>
<li>When users must use cmdlets such as the Get-Property and Set-Property
cmdlets.</li>
<li>For a providers that derive from the ItemCmdletProvider,
ContainerCmdletProvider, or
NavigationCmdletProvider classes.</li>
</ul>
</blockquote>
<h3>Confusion:</h3>
<p>Not a lot of useful information in my opinion because how would a user know if they <em>must</em> use the Get-Property and Set-Property cmdlet's? I would imagine that's up to the Cmdlet author. The big confusion (for me at least) is if the Cmdlet writes the objects to the pipeline; and those objects have properties exposed that are callable (i.e. get/set); what benefits does calling Get-Property/Set-Property have over manipulating the object(s) directly?</p>
<h3>Question:</h3>
<p>Under what circumstances should the IPropertyCmdletProvider interface be implemented?</p>
<p>I know I'm missing something here! Any insight would be greatly appreciated.</p>
http://stackoverflow.com/questions/1538230/powershell-cmdlet-parameter-validation/1538319#15383195Answer by Scott Saad for PowerShell cmdlet parameter validationScott Saad2009-10-08T14:50:36Z2009-10-08T15:23:29Z<p>If possible, it's preferred that the parameters be validated by the runtime by specifying <a href="http://msdn.microsoft.com/en-us/library/ms714432%28VS.85%29.aspx" rel="nofollow">Validation Attributes</a> on the parameter definition. </p>
<blockquote>
<p>Windows PowerShell can validate the arguments passed to cmdlet parameters in several ways. Windows PowerShell can validate the length, the range, and the pattern of the characters of the argument. It can validate the number of arguments available (the count).</p>
</blockquote>
http://stackoverflow.com/questions/1477994/how-to-check-if-powershell-snap-in-is-already-loaded-before-calling-add-pssnapin/1478221#14782211Answer by Scott Saad for How to check if PowerShell snap-in is already loaded before calling Add-PSSnapinScott Saad2009-09-25T16:09:40Z2009-09-25T16:09:40Z<p>You should be able to do it with something like this, where you query for the Snapin but tell PowerShell not to error out if it cannot find it:</p>
<pre><code>if ( (Get-PSSnapin -Name MySnapin -ErrorAction SilentlyContinue) -eq $null )
{
Add-PsSnapin MySnapin
}
</code></pre>
http://stackoverflow.com/questions/592948/how-to-build-an-application-on-top-of-powershell4How to build an application on top of PowerShell?Scott Saad2009-02-26T23:32:22Z2009-08-29T04:03:51Z
<p>Microsoft seems to be heavily pushing that their server applications (i.e SQL Server 2008, Exchange Server, etc) all have some type of PowerShell integration. The logic makes sense in that one can choose to manage the application from a GUI or CLI. </p>
<p>Therefore if one were to follow that trend and want to build an application that had a PowerShell interface, how would one even start? </p>
<p>Has anyone in the community done this type of thing? If so, what seems to be the best approach? </p>
<p><strong>Update</strong>:</p>
<p>The UI needs to have a certain look/feel. Therefore, PowerGUI does not lend itself in this situation. However, I've used PowerGUI and do agree that it can help bridge gaps. </p>
<p>Part of the confusion is really whether or not <strong>hosting</strong> PowerShell is <em>necessary</em> in order to build an application on top of it. From what I've found, it is not (i.e. Cmdlet's). However, I have not seen anyone really discuss this in the answers yet. </p>
http://stackoverflow.com/questions/1291221/going-from-solution-to-exec-programmsbuild-in-nant/1336169#13361691Answer by Scott Saad for Going from <solution> to <exec program=msbuild> in NAntScott Saad2009-08-26T16:58:13Z2009-08-26T16:58:13Z<p>I think it can be done with one of two options. Either by using <strong>AdditionalLibPaths</strong> or <strong>AssemblySearchPaths</strong>, which are described <a href="http://msdn.microsoft.com/en-us/library/bb629394.aspx" rel="nofollow">on MSDN</a>.</p>
<p>Something like the following:</p>
<pre><code><exec program="msbuild.exe">
<arg line="/p:Configuration=ServerDebug"/>
<arg line="/p:OutDir=bin\ServerDebug\" />
<arg line="/p:AssemblySearchPaths=Dependencies\Libs\bin\ServerDebug" />
<arg line="MyApp.sln" />
</exec>
</code></pre>
http://stackoverflow.com/questions/1309461/automated-msmq-setup-with-powershell/1312688#13126881Answer by Scott Saad for Automated MSMQ Setup with PowershellScott Saad2009-08-21T15:34:31Z2009-08-21T15:34:31Z<p>Maybe something like. It'a a little verbose but it's to help demonstrate that PowerShell can do this without a CmdLet.</p>
<pre><code># Loads the assembly into PowerShell (because it's not a pre-loaded one)
[Reflection.Assembly]::LoadWithPartialName( "System.Messaging" ) | Out-Null
# This is just an array which could also just be a file
$queueList = ( ".\q1", ".\q2", ".\q3", ".\q4" )
# Create the queues by piping the list into the creation function
# $_ refers to the current obect that the ForEach-Object is on
$queueList | ForEach-Object { [System.Messaging.MessageQueue]::Create( $_ ) }
</code></pre>
http://stackoverflow.com/questions/1303282/how-do-i-get-around-powershell-not-binding-pipeline-parameters-until-after-beginp1How do I get around PowerShell not binding pipeline parameters until after BeginProcessing is called?Scott Saad2009-08-20T00:06:01Z2009-08-20T18:23:40Z
<p>I'm writing a Cmdlet that can be called in the middle of a pipeline. With this Cmdlet, there are parameters that have the <a href="http://msdn.microsoft.com/en-us/library/system.management.automation.parameterattribute.valuefrompipelinebypropertyname%28VS.85%29.aspx" rel="nofollow">ValueFromPipelineByPropertyName</a> attribute defined so that the Cmdlet can use parameters with the same names that are defined earlier in the pipeline.</p>
<p>The paradox that I've run into is in the overridden <a href="http://msdn.microsoft.com/en-us/library/system.management.automation.cmdlet.beginprocessing%28VS.85%29.aspx" rel="nofollow">BeginProcessing()</a> method, I utilize one of the parameters that can get its value bound from the pipeline. According to the <a href="http://msdn.microsoft.com/en-us/library/ms714429%28VS.85%29.aspx" rel="nofollow">Cmdlet Processing Lifecycle</a>, the binding of pipeline parameters does not occur until <em>after</em> <a href="http://msdn.microsoft.com/en-us/library/system.management.automation.cmdlet.beginprocessing%28VS.85%29.aspx" rel="nofollow">BeginProcessing()</a> is called. Therefore, it seems that I'm unable to rely on pipeline bound parameters if they're attempting to be used in <a href="http://msdn.microsoft.com/en-us/library/system.management.automation.cmdlet.beginprocessing%28VS.85%29.aspx" rel="nofollow">BeginProcessing()</a>.</p>
<p>I've thought about moving things to the <a href="http://msdn.microsoft.com/en-us/library/system.management.automation.cmdlet.processrecord%28VS.85%29.aspx" rel="nofollow">ProcessRecord()</a> method. Unfortunately, there is a one time, relatively expensive operation that needs to occur. The best place for this to happen seems to be in the <a href="http://msdn.microsoft.com/en-us/library/system.management.automation.cmdlet.beginprocessing%28VS.85%29.aspx" rel="nofollow">BeginProcessing()</a> method to help ensure that it only happens once in the pipeline.</p>
<p>A <strike>few questions</strike> question surrounding this:</p>
<ol>
<li>Is there a <em>good</em> way around this?
<strike></li>
<li>These same parameters also have the <a href="http://msdn.microsoft.com/en-us/library/ms714348%28VS.85%29.aspx" rel="nofollow">Mandatory</a> attribute set on them. How can I even get this far without PowerShell complaining about not having these required parameters?</strike></li>
</ol>
<p>Thanks in advance for your thoughts.</p>
<p><hr /></p>
<h2>Update</h2>
<p>I took out the second part of the question as I realized I just didn't understand pipeline bound parameters well enough. I mistakingly thought that pipeline bound parameters came from the <em>previous</em> <strong>Cmdlet</strong> that executed in the pipeline. The actually come from the <strong>object</strong> being passed through the pipeline! I referenced a <a href="http://keithhill.spaces.live.com/Blog/cns!5A8D2641E0963A97!6130.entry" rel="nofollow">post by Keith Hill</a> to help understand this.</p>
http://stackoverflow.com/questions/442893/powershell-cmdlets-development-best-practices/1303295#13032950Answer by Scott Saad for Powershell cmdlets development best practicesScott Saad2009-08-20T00:11:53Z2009-08-20T00:11:53Z<p>MSDN has an amazing set of <a href="http://msdn.microsoft.com/en-us/library/ms714657%28VS.85%29.aspx" rel="nofollow">Cmdlet Development Guidelines</a> which I found extremely useful when developing my own. They are broken up into three different sections:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/dd878238%28VS.85%29.aspx" rel="nofollow">Required Development Guidelines</a> </li>
<li><a href="http://msdn.microsoft.com/en-us/library/dd878270%28VS.85%29.aspx" rel="nofollow">Strongly Encouraged Development Guidelines</a> </li>
<li><a href="http://msdn.microsoft.com/en-us/library/dd878291%28VS.85%29.aspx" rel="nofollow">Advisory Development Guidelines</a> </li>
</ul>
http://stackoverflow.com/questions/1294291/ideas-on-building-in-automation-in-an-application/1300849#13008492Answer by Scott Saad for Ideas on building in automation in an applicationScott Saad2009-08-19T15:44:22Z2009-08-19T15:44:22Z<p>PowerShell provides a very robust framework to have a CLI interface along with GUI. The great thing is that these two very different interfaces can have share the same code!</p>
<p>I've done this before and I can tell you the experience was a pleasant one. I cannot say enough positive things about the Cmdlet framework. The architecture of the whole system is quite exquisite and purposeful.</p>
<p>As it relates to your question, I think it always comes down to choosing the right tool for the right job. This cannot be overlooked as I think we as software engineers tend to always want to try the latest and greatest for our current problems. It's part of what makes our job fun! Given the limited insight I have into your project, it does seem like PowerShell could fit the bill from a design choice. However, as I'm sure you're aware, rewriting the GUI to use the PowerShell pipeline will most likely change a massive portion of the existing application (which might be a good thing if budget allows for it).</p>
<p>Overall, if you're wanting a scriptable interface into your application along with a GUI front end, and the added bonus of true code sharing... PowerShell is a good choice. Also, if you end up going this route you could even check out <a href="http://www.jameskovacs.com/blog/IntroducingPsake.aspx" rel="nofollow">psake</a> to help with your automation.</p>
http://stackoverflow.com/questions/1290158/i-need-to-rotate-an-image/1300706#13007061Answer by Scott Saad for I need to rotate an imageScott Saad2009-08-19T15:27:37Z2009-08-19T15:27:37Z<p>It seems that the error you're getting on the FromStream call might be because the image format is invalid. This could be for many reasons and since I'm not sure exactly how this Cmdlet is being used I will make an assumption:</p>
<p>I may be incorrect here, but since you're passing in an array of BitMapFrame's, I'm wondering if the <a href="http://msdn.microsoft.com/en-us/library/system.management.automation.cmdlet.processrecord%28VS.85%29.aspx" rel="nofollow">ProcessRecord</a> is being called once for each array element. The only way to truly tell is to see how you're Cmdlet is being invoked. For example, if your BitMap parameter is coming from the pipeline then there is a good chance that ProcessRecord is being called once for each BitMapFrame in the array.</p>
<p>Does that make sense?</p>
http://stackoverflow.com/questions/1267987/whats-a-good-way-to-consume-a-powershell-cmdlet-in-a-nant-build-system0What's a good way to consume a PowerShell Cmdlet in a NAnt build system?Scott Saad2009-08-12T18:44:44Z2009-08-13T12:39:24Z
<p>We use <a href="http://nant.sourceforge.net/" rel="nofollow">NAnt</a> extensively for our build system. Recently, I've written a couple <a href="http://stackoverflow.com/questions/1111654/what-is-a-powershell-cmdlet">PowerShell Cmdlets</a> to perform a few database related things. At first, the intent of these Cmdlets was <strong>not</strong> to necessarily run within our build process. However, this has recently become a need and we would like to run a few of these Cmdlets from our NAnt based build process.</p>
<p>These Cmdlets are written in C# and we have a SnapIn for them (if that matters at all).</p>
<p>A few ideas:</p>
<ul>
<li>Use the <a href="http://nant.sourceforge.net/release/latest/help/tasks/exec.html" rel="nofollow">exec</a> task to call PowerShell? (not sure how this would work though)</li>
<li>Write a custom NAnt task that references and uses the Cmdlet?</li>
</ul>
<p>What might be a good way to do this? </p>
http://stackoverflow.com/questions/375909/nant-nantcontrib-vb6-failed-to-start-on-remote-build/378280#3782801Answer by Scott Saad for NAnt/NAntContrib 'VB6' failed to start on remote buildScott Saad2008-12-18T15:53:50Z2009-08-10T15:30:11Z<p>I might be misinterpreting your question so please bare with me. CCNet's <strong>nant</strong> task operatates on the local machine (the machine running CCNet). </p>
<p>If ToolBox is running CCNet but BuildMaster is running all tools (i.e. VB6, etc), I'm fairly sure there no way to do what's being attempted. Generally, CCNet needs to be running on the machine actually performing the builds. <strong>Therefore, the fact that VB6 cannot be found is because VB6 is not installed on ToolBox.</strong></p>
<p>However, CCNet does have a way to monitor/control multiple build servers from one. So in your case you could configure ToolBox to control BuildMaster's builds, but <strong>CCNet would need to be installed on both</strong>. For a reference on something like this you can check out <a href="http://confluence.public.thoughtworks.org/display/CCNET/Splitting+the+build" rel="nofollow">Splitting the build</a> on CCNet's site.</p>
http://stackoverflow.com/questions/1227655/problem-with-net-xml-importnode/1234261#12342612Answer by Scott Saad for problem with .Net xml importnodeScott Saad2009-08-05T16:16:05Z2009-08-05T16:21:16Z<p>As you've indicated, there are pieces of XML that have been left out of the question so I've constructed my own rendition that hopefully adapts to the <em>real world</em> version.</p>
<p>First off...</p>
<pre><code>$newNumber.value
</code></pre>
<p>... is of type string. <a href="http://msdn.microsoft.com/en-us/library/system.xml.xmldocument.importnode%28VS.80%29.aspx" rel="nofollow">ImportNode(</a>) expects a <strong>XmlNode</strong> type as the first parameter. To get this, you can probably call a function like <a href="http://msdn.microsoft.com/en-us/library/system.xml.xmldocument.documentelement%28VS.80%29.aspx" rel="nofollow">get_DocumentElement()</a> and/or <a href="http://msdn.microsoft.com/en-us/library/fb63z0tw%28VS.80%29.aspx" rel="nofollow">SelectSingleNode()</a>.</p>
<p>For example:</p>
<pre><code>$Request2 = [xml]'<root><emailAddresses/></root>'
$newNumber = [xml]'<value>555-1215</value>'
$newNode = $Request2.ImportNode( $newNumber.get_DocumentElement(), $true )
$Request2.get_DocumentElement().SelectSingleNode( './emailAddresses' ).AppendChild( $newNode )
</code></pre>
<p>This should render the results that you're looking for. </p>
http://stackoverflow.com/questions/80112/whats-the-difference-between-xml-rpc-and-soap7What's the difference between XML-RPC and SOAP?Scott Saad2008-09-17T04:52:16Z2009-07-31T03:50:25Z
<p>I've never really understand why a web service implementer would choose one over the other. Is XML-RPC generally found in older systems? Any help in understanding this would be greatly appreciated.</p>
http://stackoverflow.com/questions/1095198/it-making-contact-with-software-dev-where-to-find-good-programmers/1095373#10953731Answer by Scott Saad for IT Making Contact with Software Dev - Where to find good programmersScott Saad2009-07-07T23:33:25Z2009-07-07T23:40:48Z<p>I like the links others have provided on where to find programmers but your question on how to evaluate is a bit different. </p>
<p>It can be somewhat of a subjective answer because if one is happy with the product the developer(s) are putting out what else matters? </p>
<p>It's hard to answer that question unless one has some experience and knowledge of software development principles, best practices, etc. In the end, I think you're going to need somebody on the <em>inside</em> doing the evaluations of others on the <em>outside</em>. </p>
<p>You will never really know if somebody is truly doing work that is worthy of pay unless you have an eye for it. One could read the following question/answers to gage whether they're able to evaluate or need somebody else to do it for them:</p>
<p><a href="http://stackoverflow.com/questions/453529/what-are-the-signs-of-talent-in-programming">What are the signs of talent in programming</a></p>
http://stackoverflow.com/questions/1058688/msbuild-vs-nant/1058732#10587322Answer by Scott Saad for MSBuild vs nant Scott Saad2009-06-29T14:45:06Z2009-06-29T14:45:06Z<p>Here are a few similar questions that will help answer yours:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/476163/nant-or-msbuild-which-one-to-choose-and-when">Nant or MSBuild, which one to choose
and when?</a></li>
<li><a href="http://stackoverflow.com/questions/1300/is-nant-still-supported-and-suitable-for-net-3-5-vs2008">Is nAnt still supported and suitable for .net 3.5/VS2008?</a></li>
</ul>
http://stackoverflow.com/questions/956727/why-is-codegear-cbuilder-failing-to-create-pre-compiled-headers1Why is CodeGear C++Builder failing to create pre-compiled headers?Scott Saad2009-06-05T16:06:55Z2009-06-24T21:09:16Z
<h2>Problem</h2>
<p>In CodeGear C++Builder 2009 we are using the pre-compiled header injection to greatly reduce our compile times. We have the same header file being injected into multiple projects. When compiling <em>some</em> projects, the compiler kicks out the following warning: </p>
<pre><code>[BCC32 Warning] Dateutils.hpp(43): W8058 Cannot create pre-compiled header: initialized data in header
</code></pre>
<p>In this example, the <strong>Dateutils.hpp</strong> is the file it's complaining about (CodeGear's header). I've seen this happen with <strong>other headers</strong> as well. What makes this interesting is that this only happens with some projects (same header being injected).</p>
<p>In the past, I've had to just find the header who ultimately included this errant file and remove it from my pre-compiled header file. Does anyone know what's going on here and the best way to fix it?</p>
<h2>Update</h2>
<p>I ended up performing a process of elimination approach to the header file and came up with an interesting finding that I cannot explain. Out of the 50+ headers that get included, when I removed <strong>vcl.h</strong> I no longer get the W8058 warnings. I do not understand this as I would imagine that this header file in particular is a prime candidate for pre-compiliation. Can anyone explain that? </p>
http://stackoverflow.com/questions/952352/including-characters-in-text-nodes-of-xml-input-to-an-xslt-transformation/952419#9524190Answer by Scott Saad for Including "<" characters in text nodes of XML input to an XSLT transformationScott Saad2009-06-04T18:52:58Z2009-06-04T18:52:58Z<p>If it's <em>properly</em> formatted XML, the < character should already be escaped with a <strong>&lt</strong>; entity. There are pre-defined entities that all xml processors should properly declare. Check out the <a href="http://www.w3.org/TR/REC-xml/#dt-escape" rel="nofollow">recommendation</a>: </p>
<blockquote>
<p>All XML processors must recognize
these entities whether they are
declared or not. For interoperability,
valid XML documents should declare
these entities, like any others,
before using them.</p>
</blockquote>
<p>This should all be transparent to XSLT and it very well might be the case that whatever/whoever is generating the XML is not doing it according to the recommended standards. </p>
http://stackoverflow.com/questions/946316/what-happened-to-codegears-tbitbtn-and-tbutton-inheritence-chain1What happened to CodeGear's TBitBtn and TButton inheritence chain? Scott Saad2009-06-03T18:15:36Z2009-06-03T21:31:25Z
<p>I've recently began to upgrade my RAD Studio 2007 project to RAD Studio 2009. One thing I noticed is when seemingly simple code all of a sudden failed to compile. </p>
<p>Example Code:</p>
<pre><code>class CButtonPopupMenu
{
// Snip
public:
void Init( TButton* SrcButton )
{
SrcButton->OnClick = OnButtonClick;
}
private:
void __fastcall OnButtonClick( TObject* Sender )
{
// Do some button click stuff
}
};
// Snip
TButton button = new TButton( this );
TBitBtn bitBtn = new TBitBtn( this );
CButtonPopupMenu popupButton = new CButtonPopupMenu( button );
CButtonPopupMenu popupBitBtn = new CButtonPopupMenu( bitBtn );
</code></pre>
<p>This all use to compile, but with 2009 its failing. Looking at the inheritance chain for 2007 <strong>TBitBtn</strong> used to derive from <strong>TButton</strong>. Therefore, events that are expected on any button control (i.e. OnClick) were shared by the <strong>TButton</strong> class. Therefore, I was able to treat my <strong>TBitBtn</strong> class as a <strong>TButton</strong>. </p>
<p><strong>2007 inheritance chain:</strong> </p>
<ul>
<li>TBitBtn : TButton</li>
</ul>
<p><strong>2009 inheritance chain:</strong> </p>
<ul>
<li>TBitBtn : TCustomButton</li>
<li>TButton : TCustomButton</li>
</ul>
<p>In 2009, both <strong>TButton</strong> and <strong>TBitButton</strong> derive from <strong>TCustomButton</strong>, which would be fine I suppose if the button like attributes were held there. If this were the case, I could just change the code to deal with a <strong>TCustomButton</strong> instead. Unfortunately, <strong>TCustomButton</strong> does not hold things like <strong>OnClick</strong>. Therefore, I can no longer treat a <strong>TBitBtn</strong> like a <strong>TButton</strong>. Both of these classes, now have their own separate button like attributes (i.e. they both have their own OnClick event declared). I mean, at least provide an interface or something, like <strong>IButton</strong> that both <strong>TButton</strong> and <strong>TBitBtn</strong> implement.</p>
<p>It seems that these types of seemingly innocent changes are the ones that can wreak unnecessary havoc. This seems odd and am wondering if anyone knows why CodeGear (or any Framework author for that matter) would do this type of thing?</p>
<p>More importantly, given this fragmented inheritance, is there and <em>elegant</em> solution to treat a <strong>TBitBtn</strong> like a <strong>TButton</strong>?</p>
http://stackoverflow.com/questions/851203/nant-vault-windows-integrated-authentication/883864#8838642Answer by Scott Saad for Nant, Vault & Windows Integrated AuthenticationScott Saad2009-05-19T16:44:59Z2009-06-03T18:49:24Z<p>I'm unfamiliar with Vault so please forgive the potential vagueness of this answer. I've worked with NAnt a lot and anything that gets executed (tasks, execs, etc) have the inherent potential to be running in integrated authenticated mode.</p>
<p>In the end, authentication gets passed along to whichever user happens to be running the parent NAnt process. That being said, this could be a sign that Vault's NAnt tasks don't <em>support</em> integrated authentication? Meaning, if the <strong>vaultsetloginoptions</strong> task <em>requires</em> the user and password arguments, then there is no good way to pass along credentials (as you pointed out). </p>
<p>If there happens to be no <em>workarounds</em> for the potential lacking in Vault's NAnt tasks it might be possible to use the <a href="http://nant.sourceforge.net/release/latest/help/tasks/exec.html" rel="nofollow"><code><exec</code>></a> task to call a command line version of their client side tool (not even sure if they have one). If this is an option, integrated authentication will automatically kick in as long as the user running the NAnt process is the same as the one needing to connect to Vault.</p>
<p>We've had to do this for a few things we integrate with in our build process. We've either exec'd out to the command line version or have written our own Task(s) by extending the NAnt framework. Either way, this should be possible.</p>
<h3>Update</h3>
<p>Did some looking around on the Vault forums and it seems that the <em>AD integration</em> is merely a way to have Vault Client prompt the user and pass along to server. <a href="http://support2.sourcegear.com/viewtopic.php?f=5&t=8231&p=33617#wrap" rel="nofollow">From the forum</a>:</p>
<blockquote>
<p>The Vault client will always prompt
for the username/password. Our AD
integration is limited to the server
verifying that the password entered
matches the password in Active
Directory.</p>
</blockquote>
<p>Therefore, there is no <em>true</em> way for the client to pass along windows authentication information in a built-in way. The Vault client program requires one to input the username and password when running in AD mode. Sadly, it would seem without storing the username/password, the chances of <em>seamless</em> NAnt integration is a far shot. </p>
http://stackoverflow.com/questions/916170/how-do-i-send-an-email-to-an-exchange-distribution-list-using-c/916274#9162742Answer by Scott Saad for How do I send an email to an Exchange Distribution list using c#Scott Saad2009-05-27T15:03:44Z2009-05-27T16:04:50Z<p>Exchange server runs SMTP so one can use the <a href="http://msdn.microsoft.com/en-us/library/system.net.mail.smtpclient.aspx" rel="nofollow">SmtpClient</a> to send an email.</p>
<p>One can lookup the SMTP address of the distribution list (manually) and use that as the "to" address on the <a href="http://msdn.microsoft.com/en-us/library/system.net.mail.mailmessage.aspx" rel="nofollow">MailMessage</a> constructor. The constructor call will fail if you just pass in the name of the distribution list as it doesn't <em>look</em> like a <em>real</em> email address.</p>
<pre><code>public void Send(string server, string from, string to)
{
// Client to Exchange server
SmtpClient client = new SmtpClient(server);
// Message
MailMessage message = new MailMessage(from, to);
message.Body = "This is a test e-mail message sent by an application. ";
message.Subject = "test message 1";
// Credentials are necessary if the server requires the client
// to authenticate before it will send e-mail on the client's behalf.
client.Credentials = CredentialCache.DefaultNetworkCredentials;
// Send
client.Send(message);
}
</code></pre>
http://stackoverflow.com/questions/911132/revert-file-not-in-a-workspace-in-perforce/911162#9111621Answer by Scott Saad for Revert File not in a workspace in perforceScott Saad2009-05-26T15:01:25Z2009-05-26T15:01:25Z<p>It would indeed be strange if the following to commands produced zero results:</p>
<ol>
<li><p>p4 clients -u auser</p></li>
<li><p>p4 changes -s pending -u auser</p></li>
</ol>
<p>Can you confirm this?</p>
http://stackoverflow.com/questions/893167/how-to-remove-readonly-attribute-on-file-using-powershell/898587#8985870Answer by Scott Saad for How to Remove ReadOnly Attribute on File Using PowerShell?Scott Saad2009-05-22T15:49:21Z2009-05-22T15:49:21Z<p>Even though it's not <em>Native</em> PowerShell, one can still use the simple <a href="http://technet.microsoft.com/en-us/library/bb490868.aspx" rel="nofollow">Attrib</a> command for this:</p>
<pre><code>attrib -R file.txt
</code></pre>
http://stackoverflow.com/questions/881851/deploying-biztalk-on-developer-build-machines/891445#8914451Answer by Scott Saad for Deploying biztalk on developer/build machinesScott Saad2009-05-21T05:02:40Z2009-05-21T05:02:40Z<p>We use NAnt as well for our BizTalk deployment. Specifically, we use a combination of calling the <a href="http://nantcontrib.sourceforge.net/release/latest/help/tasks/" rel="nofollow">BizTalk related NAntContrib tasks</a> (which all begin with <strong>bts</strong>) and using the <a href="http://nant.sourceforge.net/release/latest/help/tasks/exec.html" rel="nofollow"><code><exec</code>></a> task to call the command line <a href="http://technet.microsoft.com/en-us/library/aa559686.aspx" rel="nofollow">btstask.exe</a> directly.</p>
<p>At some level, they are all using the same underlying technology to talk to the BizTalk server, so it's hard to say whether NAnt is faster than something like VB. </p>
<p>I will say that in my experience BizTalk appears to be a resource <em>hog</em>. Since it's hard to change that, the only thing we do have control over is the amount of resources we give it. Therefore, if builds are taking too long, and one has the time/money to do so, throw <strong>bigger and badder</strong> hardware at it. This is generally the cheapest way as the amount of time us developers put into making sub-marginal improvements to build times can end up costing way more than hardware. For example, we've noticed that moving to 8GB of memory can make all the difference, literally transforming the entire experience.</p>
http://stackoverflow.com/questions/946221/stackoverflow-reputation-using-powershell/1144585#1144585Comment by Scott Saad on StackOverflow reputation using PowerShellScott Saad2009-12-08T06:10:01Z2009-12-08T06:10:01ZWith PowerShell 2.0's easier and more elegant way of creating custom objects, I updated the code to take advantage and produce an actual object.http://stackoverflow.com/questions/1539840/should-i-implement-the-ipropertycmdletprovider-interface-for-a-powershell-cmdlet/1539943#1539943Comment by Scott Saad on Should I implement the IPropertyCmdletProvider interface for a PowerShell Cmdlet?Scott Saad2009-10-08T22:08:27Z2009-10-08T22:08:27ZYou're right! Those docs do seem old as I look at them closer. I like your explanation and I think I see where you're coming from. Is it safe to say that if there is not a .NET object being written to the pipeline, (i.e. Registry Keys), then the IPropertyCmdletProvider would still allow for the manipulation of these items? Otherwise, using the objects directly (in their native .NET form) is the "best" way to go?
I hope that makes sense. :)http://stackoverflow.com/questions/293142/whats-your-biggest-visual-studio-2008-annoyance/484883#484883Comment by Scott Saad on What's Your Biggest Visual Studio 2008 Annoyance?Scott Saad2009-09-12T17:25:50Z2009-09-12T17:25:50ZYes, this is ultimately what one has to do. Shouldn't it just be defaulted?http://stackoverflow.com/questions/1343749/get-log4net-log-file-in-cComment by Scott Saad on Get log4net log file in C#Scott Saad2009-08-27T21:28:36Z2009-08-27T21:28:36ZAre you saying that you're trying to parse the log4net config file in an attempt to get the file name you're logging to? The question doesn't make that clear. What exactly are you trying to do, and what's the problem?http://stackoverflow.com/questions/1324263/xml-schema-validationComment by Scott Saad on XML Schema validationScott Saad2009-08-24T19:43:22Z2009-08-24T19:43:22ZAlso, there are spaces in this schema file that probably don't need to be there. For example: tag should read <xs:schema> instead of < xs:schema >. Was that a copy/paste problem in the question?http://stackoverflow.com/questions/1324263/xml-schema-validationComment by Scott Saad on XML Schema validationScott Saad2009-08-24T19:40:39Z2009-08-24T19:40:39ZIt would be helpful to see the source xml you're trying to validate with this schema.http://stackoverflow.com/questions/1309461/automated-msmq-setup-with-powershell/1309505#1309505Comment by Scott Saad on Automated MSMQ Setup with PowershellScott Saad2009-08-21T15:37:00Z2009-08-21T15:37:00ZA Cmdlet seems a bit overkill for this particular task. A few lines of script and there is no reason to compile anything or install anything (which you have to do with a Cmdlet).http://stackoverflow.com/questions/1303282/how-do-i-get-around-powershell-not-binding-pipeline-parameters-until-after-beginp/1303603#1303603Comment by Scott Saad on How do I get around PowerShell not binding pipeline parameters until after BeginProcessing is called?Scott Saad2009-08-20T17:46:37Z2009-08-20T17:46:37ZThanks Keith. In hoping to avoid having to "special case" the ProcessRecord() with a one time run of the expensive code, I was hoping there was some other magical way to keep things "clean" in BeginProcessing(). I guess there doesn't seem to be.
Thanks for your advice and also, thanks for your blog entry on on pipeline bound parameters by name. I'll link it in the question.http://stackoverflow.com/questions/1290158/i-need-to-rotate-an-image/1300706#1300706Comment by Scott Saad on I need to rotate an imageScott Saad2009-08-19T16:31:55Z2009-08-19T16:31:55ZJust to make sure, can you validate that when you run the command like you've indicated above that your ConvertTo-Rotate90 Cmdlet is being called ONLY once? It seems that there is a very good chance that it's being called once for each element in the array that the Import-Image passes to it.http://stackoverflow.com/questions/1290158/i-need-to-rotate-an-image/1300706#1300706Comment by Scott Saad on I need to rotate an imageScott Saad2009-08-19T16:00:53Z2009-08-19T16:00:53ZI was just curious how the Cmdlet is being called because if it's part of the pipeline and foreach-object is also being used then ProcessRecord gets called every time. If this were the case, the image format would be wrong and it would make since why FromStream is failing (i.e. it only has part of the BitMapFrame).http://stackoverflow.com/questions/375909/nant-nantcontrib-vb6-failed-to-start-on-remote-build/378280#378280Comment by Scott Saad on NAnt/NAntContrib 'VB6' failed to start on remote buildScott Saad2009-08-10T15:28:32Z2009-08-10T15:28:32ZAccording to the documentation for the VB6 task, it uses vb6.exe. You'll probably need the minimum version of the environment installed, but I'm not sure what specific files are required for vb6.exe to operate properly.http://stackoverflow.com/questions/260526/nantcontrib-nant-mkiisdir-fails-on-iis-7-0-windows-2008/263806#263806Comment by Scott Saad on NAntContrib/NAnt mkiisdir fails on IIS 7.0 / windows 2008Scott Saad2009-08-07T17:33:30Z2009-08-07T17:33:30ZHave you found this to work when it's not localhost? Meaning the machine your targeting mkiisdir with is not the one running the NAnt process?http://stackoverflow.com/questions/1000084/powershell-calling-remote-wmi-objects-rpc-error-hresult-0x800706ba-rpc-serComment by Scott Saad on Powershell - calling remote WMI objects - RPC error HRESULT: 0x800706BA (RPC server not available)Scott Saad2009-07-28T17:44:57Z2009-07-28T17:44:57ZTo clarify, you can successfully get the $class and $object variables and write them to output, but performing calling a method on them gives you this error? Can you be more specific into what method(s) you're attempting to call? http://stackoverflow.com/questions/1095198/it-making-contact-with-software-dev-where-to-find-good-programmers/1095373#1095373Comment by Scott Saad on IT Making Contact with Software Dev - Where to find good programmersScott Saad2009-07-08T00:13:46Z2009-07-08T00:13:46ZDepending on situations (not sure if it's yours), the code produced is the only asset the company may have. Who do you want protecting this asset? In my opinion loyalty rules and finding a really good programmer, hiring them, and letting them thrive might be a good option.
The jobs.stackoverflow.com is a good place to post and find really good talent to bootstrap the process.
Chances are, (assuming you find somebody) the good programmer that gets hired will try to convince you NOT to "rent" anyone but to build a team internally. Again, ensuring that the asset is being cared for properly.http://stackoverflow.com/questions/321910/powershell-remoting-with-v1/365988#365988Comment by Scott Saad on Powershell remoting with V1Scott Saad2009-07-03T14:58:51Z2009-07-03T14:58:51ZIMO, this is the best native way. However, I think it only works with machines where WinRS is installed and running. i.e. limited to Vista and Server 2008. XP will not work as far as I know.