Forum Replies Created

Viewing 15 posts - 1,531 through 1,545 (of 3,221 total)

  • RE: Efficiency

    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...

    Gaz

    -- Stop your grinnin' and drop your linen...they're everywhere!!!

  • RE: Out-grid view data display

    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...

    Gaz

    -- Stop your grinnin' and drop your linen...they're everywhere!!!

  • RE: Mastery – Repetition, Variations, and Depth

    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...

    Gaz

    -- Stop your grinnin' and drop your linen...they're everywhere!!!

  • RE: The Worst Comments

    Too modest Jeff. 🙂

    Gaz

    -- Stop your grinnin' and drop your linen...they're everywhere!!!

  • RE: Mastery – Repetition, Variations, and Depth

    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...

    Gaz

    -- Stop your grinnin' and drop your linen...they're everywhere!!!

  • RE: Unable to read the encrypted password.

    You are most welcome. 🙂

    Gaz

    -- Stop your grinnin' and drop your linen...they're everywhere!!!

  • RE: How to add a comma in between two strings

    How about adding what the values retrieved are? Possibly in comments.

    Gaz

    -- Stop your grinnin' and drop your linen...they're everywhere!!!

  • RE: Unable to read the encrypted password.

    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

    Gaz

    -- Stop your grinnin' and drop your linen...they're everywhere!!!

  • RE: Unable to read the encrypted password.

    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

    Gaz

    -- Stop your grinnin' and drop your linen...they're everywhere!!!

  • RE: Are There That Many GUIDs?

    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...

    Gaz

    -- Stop your grinnin' and drop your linen...they're everywhere!!!

  • RE: Need double quote in between a variable (Stirng Operation)

    Now doesn't that look better!!!

    Gaz

    -- Stop your grinnin' and drop your linen...they're everywhere!!!

  • RE: Need double quote in between a variable (Stirng Operation)

    Well done.

    In my defence I was supporting with only my phone to hand 😉

    Gaz

    -- Stop your grinnin' and drop your linen...they're everywhere!!!

  • RE: First Episodes

    They don't make them like they used to. In a lot of cases...good!!!

    Gaz

    -- Stop your grinnin' and drop your linen...they're everywhere!!!

  • RE: First Episodes

    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...

    Gaz

    -- Stop your grinnin' and drop your linen...they're everywhere!!!

  • RE: Microservices, SOA and Service Broker

    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...

    Gaz

    -- Stop your grinnin' and drop your linen...they're everywhere!!!

Viewing 15 posts - 1,531 through 1,545 (of 3,221 total)