Scott Saad

3,699
Reputation
235 views

Registered User

name Scott Saad
member for 1 year
seen 1 hour ago
website
location Grand Junction, Colorado
age 32
twitter feed here
18h
comment StackOverflow reputation using PowerShell
With 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.
18h
revised StackOverflow reputation using PowerShell
changed code to use powershell custom objects v2.0
Nov
23
accepted Continuous Integration with Nant
Nov
13
awarded  Popular Question
Nov
6
revised Need help with INI file in Powershell
fixed grammar
Nov
6
answered Need help with INI file in Powershell
Oct
27
accepted Graphical open source text editor for large text files (> 200 MBytes)
Oct
24
revised Powershell Script not accepting $ (Dollar) sign
improved tags
Oct
19
accepted Supressing Log Output for NAnt Delete Task
Oct
15
answered Supressing Log Output for NAnt Delete Task
Oct
8
comment Should I implement the IPropertyCmdletProvider interface for a PowerShell Cmdlet?
You'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. :)
Oct
8
asked Should I implement the IPropertyCmdletProvider interface for a PowerShell Cmdlet?
Oct
8
revised PowerShell cmdlet parameter validation
fixed grammar
Oct
8
accepted PowerShell cmdlet parameter validation
Oct
8
answered PowerShell cmdlet parameter validation
Oct
6
awarded  Popular Question
Sep
25
accepted How to check if PowerShell snap-in is already loaded before calling Add-PSSnapin
Sep
25
answered How to check if PowerShell snap-in is already loaded before calling Add-PSSnapin
Sep
12
comment What’s Your Biggest Visual Studio 2008 Annoyance?
Yes, this is ultimately what one has to do. Shouldn't it just be defaulted?
Sep
7
awarded  Yearling
Sep
2
awarded  Popular Question
Aug
27
comment Get log4net log file in C#
Are 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?
Aug
26
accepted Going from <solution> to <exec program=msbuild> in NAnt
Aug
26
answered Going from <solution> to <exec program=msbuild> in NAnt
Aug
25
revised Update configSource of XML element in web.config using Powershell by passing in Parameters
improved formatting
Aug
24
comment XML Schema validation
Also, 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?
Aug
24
comment XML Schema validation
It would be helpful to see the source xml you're trying to validate with this schema.
Aug
24
accepted problem with .Net xml importnode
Aug
21
comment Automated MSMQ Setup with Powershell
A 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).
Aug
21
answered Automated MSMQ Setup with Powershell
Aug
20
revised How do I get around PowerShell not binding pipeline parameters until after BeginProcessing is called?
added link to refernce
Aug
20
comment How do I get around PowerShell not binding pipeline parameters until after BeginProcessing is called?
Thanks 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.
Aug
20
revised How do I get around PowerShell not binding pipeline parameters until after BeginProcessing is called?
updated question with new findings
Aug
20
answered Powershell cmdlets development best practices
Aug
20
asked How do I get around PowerShell not binding pipeline parameters until after BeginProcessing is called?
Aug
19
comment I need to rotate an image
Just 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.
Aug
19
comment I need to rotate an image
I 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).
Aug
19
answered Ideas on building in automation in an application
Aug
19
answered I need to rotate an image
Aug
12
asked What’s a good way to consume a PowerShell Cmdlet in a NAnt build system?
Aug
11
accepted XML validation with Schematron/XSD in C#
Aug
10
revised NAnt/NAntContrib ‘VB6’ failed to start on remote build
fixed formatting
Aug
10
comment NAnt/NAntContrib ‘VB6’ failed to start on remote build
According 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.
Aug
7
revised Determining Value-Based Fees for Software Projects
improved formatting
Aug
7
comment NAntContrib/NAnt mkiisdir fails on IIS 7.0 / windows 2008
Have 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?
Aug
5
revised problem with .Net xml importnode
added links to msdn ref
Aug
5
answered problem with .Net xml importnode
Aug
3
awarded  Necromancer
Jul
29
revised Testing Powershell scripts for correctness
fixed link
Jul
28
revised Powershell - calling remote WMI objects - RPC error HRESULT: 0x800706BA (RPC server not available)
corrected spelling of Wmi32_Process to Win32-Process