- Aug
- 2,267
- 108
Hi,
Here's a little item that I've added to my TCMD startup file;
The days2dec25.ps1 Microsoft Powershell script is as follows;
I can now see at a glance how many days until date x, in this case, December 25 2009.
Joe
Here's a little item that I've added to my TCMD startup file;
Code:
statusbar %@execstr[powershell days2dec25.ps1]
Code:
"There are " + (([system.datetime]"25 december 2009").DayOfYear - `
(get-date).DayOfYear) + " days until " + "25 December 2009"
Joe