![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Windows & DOS: Issues & Discussions All Windows and DOS questions should go here as well. Discuss UNIX to Windows (Desktop or Server) here! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Windows command shell equivalent in Unix | simonsimon | Shell Programming and Scripting | 10 | 04-30-2009 01:56 AM |
| command that is equivalent to TOPAZ in IBM. | oracle_rajesh_k | HP-UX | 2 | 11-15-2008 06:03 PM |
| Intel Unveils Seven New Intel(R) Itanium(R) Processors - WELT ONLINE | iBot | UNIX and Linux RSS News | 0 | 11-01-2007 07:30 PM |
| Equivalent command for setlocal in Unix | sonaluphale | UNIX for Advanced & Expert Users | 7 | 05-17-2007 07:10 AM |
| Equivalent unix command to minimize/maximize xterm window | icemocha75 | UNIX for Dummies Questions & Answers | 0 | 01-27-2006 01:15 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
in Powershell - supported by Windows 2003 server you can try things like this:
Code:
get-childitem –recurse | where-object {$_.lastwritetime -gt “8/13/2009”}
Code:
$DtToCompare = (Get-date).AddDays(-30)
Get-Childitem –recurse | where-object {$_.lastwritetime –gt $DtToCompare}
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|