Viewing 15 posts - 3,151 through 3,165 (of 3,220 total)
1) I find some people suffer from feeling inferior.
2) Some people also struggle to find the time.
3) Many suffer from knowing that they could do with knowing more on a...
February 19, 2010 at 4:23 am
GilaMonster (2/9/2010)
Gary Varga Old (2/9/2010)
February 9, 2010 at 7:04 am
I have a mixed opinion on the MVP award. I have discussed with, received help from, assisted and read postings by MVP's. The level of quality appears to vary greatly....
February 9, 2010 at 6:32 am
Context is key here and so is ambiguity or rather ambiguity is a result of using the flexible generic communication form of language.
I have read (and probably written) technical documents...
January 8, 2010 at 3:33 am
The Open-Closed principle is key on all levels of abstraction coupled with only doing as much as you need at the time. The number of times I have worked on...
January 8, 2010 at 2:26 am
Later still.
I think it is more helpful to think of the Developers' and DBAs' duties as tasks. Many places they are performed by the same person, many places it is...
January 8, 2010 at 1:58 am
Hi \\K,
I think this is down to debugging now. At this point you have all that you need to know. Try adding the constant string and the filename together and...
December 18, 2009 at 12:27 am
Some of the opinions expressed here I hear businesses take umbridge at all the time. "IT knows the data better than the business", "End users do not know what they...
December 17, 2009 at 12:57 am
The file not found is the simplest.
The following line uses only the file name:
$attachment = new-object Net.Mail.Attachment($message)
I can assume from the error message that you are running your script from...
December 17, 2009 at 12:32 am
Next...
I was being silly with arrays (been a while since I've done serious PowerShell).
Instead of
$attachments = new-object Net.Mail.Attachment[] $messages.Length
and
$attachments[count] = new-object Net.Mail.Attachment($messages[count])
$msg.Attachments.Add($attachments[count])
try
$attachments = @()
and
$attachment = new-object Net.Mail.Attachment($messages[count])
$attachments = $attachments +...
December 16, 2009 at 12:04 am
Removed duplicate post (browser issue).
December 15, 2009 at 11:51 pm
Sorry. In my haste I have been a complete and utter Muppet.
When I wrote:
Foreach ($count -eq 0; $count -lt $messages.Length; $count++)
it should have been:
For ($count -eq 0; $count -lt $messages.Length;...
December 15, 2009 at 11:25 pm
Remember that $messages is an array of strings comprised of absolute path filenames. What you are trying to do is add an array as an attachment. You want to do...
December 15, 2009 at 12:18 am
I think that when users reach the limit of their understanding that these so called data "mash-ups" will provide an excellent way of communicating understanding of the business to IT...
December 14, 2009 at 5:49 am
Viewing 15 posts - 3,151 through 3,165 (of 3,220 total)