Viewing 15 posts - 2,506 through 2,520 (of 3,221 total)
calhorg (3/11/2014)
March 11, 2014 at 11:19 am
Jeff Moden (3/11/2014)
Gary Varga (3/11/2014)
Jeff has a great point and it shouldn't be an issue but please note:Applies To: Windows 8, Windows Server 2008, Windows Server 2012, Windows Vista
That's what...
March 11, 2014 at 9:52 am
Jeff has a great point and it shouldn't be an issue but please note:
Applies To: Windows 8, Windows Server 2008, Windows Server 2012, Windows Vista
March 11, 2014 at 9:20 am
bruce 1565 (3/11/2014)
Get-ChildItem "D:\Solomon\Solomon IV\EventLog\DD500*.log"| Where-Object {$_.CreationTime -gt (Get-Date).Date} | Copy-Item -Destination "C:\Temp\Emailogs"
There you go. Bruce 1565 has provided a far more elegant solution.
I still prefer "_.CreationTime.Date -eq" over ".CreationTime...
March 11, 2014 at 9:00 am
Tobar (3/11/2014)
While most of this audience aren't in the development space, some may be
I am certainly one of those. I am quite enamored with sqlservercentral, and I am sure this...
March 11, 2014 at 6:53 am
IceDread (3/11/2014)
March 11, 2014 at 5:53 am
I am still waiting for a demand for the development of mobile line of business (LOB) applications in the enterprise market. I believe it is occurring in some sectors and...
March 11, 2014 at 5:26 am
Here is how I built it up:
#Loop through each file displaying it's creation time
Foreach($f in Get-ChildItem "D:\Solomon\Solomon IV\EventLog\DD500*.log")
{
Write-Host $f.CreationTime
}
#Loop through each file displaying it's creation time (only...
March 11, 2014 at 4:38 am
I agree that a key concept of Continuous Delivery (CD) is that CD <> Continuous Release.
Not all development deliveries are suitable releases and the criteria for a development delivery is...
March 10, 2014 at 3:38 am
I find it frustrating that, from the software development side, when attempting to engage the DevOps (under whatever moniker) to find out how the development team can deliver in a...
March 10, 2014 at 3:25 am
A lot of this discussion appears to be based upon a single application utilising a single database. It often starts that way, however, that can easily change.
This leads neatly to...
March 7, 2014 at 5:27 am
chris.puncher (3/7/2014)
Jennifer Levy (3/5/2014)
And (I know there has been talk about this for years, but...) they REALLY need to do Good Omens by Terry Pratchett and Neil Gaiman. But...
March 7, 2014 at 3:32 am
calhorg (3/5/2014)
March 7, 2014 at 3:27 am
I am inclined to disagree with everyone and yet I feel that I agree too. I guess I am in a contrary mood today.
Was it a success? Yes.
Was it a...
March 5, 2014 at 2:02 am
Viewing 15 posts - 2,506 through 2,520 (of 3,221 total)