GEORGE TRIFONOV Home Developer Corner Contact Resume 
Theme
Login
 
 
Russia Wins !!! RUS (3)-NED(1)

Ole-Ole-ole - Россия Вперед

"Dmitri Torbinski and Andrei Arshavin struck in the last eight minutes of extra time to take Russia into the UEFA EURO 2008™ semi-finals at the expense of the Netherlands as Guus Hiddink eliminated the nation of his birth." - from Euro2008

image

image

Share this post: email it! | bookmark it! | digg it! | kick it! | live it!
Posted: Sat, 21 Jun 2008 14:39:52 GMT By: Gtrifonov
Powershell If statement example

Powershell if statement syntax:

   1: If (condition) {statement}

Example 1 - Checking file or directory existence and copying file if it is exists

   1: $iis ="C:\logs\test.log"
   2: $file = "\\netshare\destination.log"
   3: if(Test-Path $iis){ Copy-Item $iis $file -force}
Share this post: email it! | bookmark it! | digg it! | kick it! | live it!
Posted: Mon, 16 Jun 2008 15:59:18 GMT By: Gtrifonov