Viewing 15 posts - 1,531 through 1,545 (of 3,221 total)
I have to confess that I think that I have slowed down a bit...at least at work.
Having said that, my role has changed over time and I find that I...
March 26, 2015 at 1:01 am
PowerShell 3.0 works this way:
# Create an array.
$features = @()
# Add a value to display.
$features += [PsCustomObject]@{
Property = "Example"
Value = "1.0"
}
# Add a value...
March 25, 2015 at 8:13 am
Andy Warren (3/25/2015)
Gary - added your blog to my list, had missed it. Maybe add it to your signature?
Thanks Andy. As for my signature, I thought that adding a link...
March 25, 2015 at 7:03 am
I totally agree with this editorial. My blog (don't rush it is not exciting at all ;-)) is comprised of one vendor issue and a handful, at most, of solutions...
March 25, 2015 at 3:06 am
How about adding what the values retrieved are? Possibly in comments.
March 24, 2015 at 10:37 am
Sorry but I had copied your typo. Try this:
$SQLServiceAGTPassword = read-host "Enter a Password for SQL Agent AC:" -assecurestring
$BSTR = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($SQLServiceAGTPassword)
$RetrievePassword = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR)
Write-Host "Password is: " $RetrievePassword
March 24, 2015 at 10:33 am
Eirikur is correct. The following is your own code adjusted:
$SQLServiceAGTPassword = read-host "Enter a Password for SQL Agent AC:" -assecurestring
$BSTR = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($SQLServiceAGTPassword)
$RetrievePassword = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR)
Write-Host "Password is: " $SQLServiceAGTPassword
March 24, 2015 at 1:13 am
For a short time a long time ago I had used GUIDs as keys but due to the flaws/cons highlighted in the numerous pages of posts I have moved away...
March 24, 2015 at 1:08 am
Now doesn't that look better!!!
March 23, 2015 at 11:40 am
Well done.
In my defence I was supporting with only my phone to hand 😉
March 23, 2015 at 10:34 am
They don't make them like they used to. In a lot of cases...good!!!
March 23, 2015 at 10:13 am
I recall that in 1998 a colleague blurted out without being prompted that he wasn't going to watch Space 1999 the next year (see Wikipedia if this is new to...
March 23, 2015 at 1:16 am
I have used MSMQ in the past and if you configure it properly and understand it then it is a fine technology. Like many technologies, if implementing MSMQ following the...
March 23, 2015 at 1:05 am
Viewing 15 posts - 1,531 through 1,545 (of 3,221 total)