|
|
|
|
| Finding YYYYMMDD_YYYYMMDD files with regexp |
| Hi,
I have several hundred files here which accidently got renamed after the
following pattern:
YYYYMMDD_YYYYMMDD-something
where the first date does not match the second date. How can I get the... on 20-Nov-09 |
| |
|
| Windows update |
| Hi all,
I have been combining two of the scripts I have found relating to windows
update services, basically I have come to a stop with passing a target group to
the computer scope section of the fo... on 20-Nov-09 |
| |
|
| typed variables |
| I just now noticed there is a big difference in coding
$i = [int] 9.99
and
[int] $i = 9.99
PS C:> $i = [int] 9.99
PS C:> $i
10
PS C:> $i = 9.99
PS C:> $i
9.99
PS C:> [int] $i = 9.99
PS C:> $i
10
P... on 19-Nov-09 |
| |
|
| Script with FileTransfer as scheduled task on Win2008 |
| Hello,
I am struggling to get a PowerShell script that uses the FileTransfer
module to function correctly when run as a scheduled task on Windows
Server 2008.
Consider this piece of test code:
---... on 19-Nov-09 |
| |
|
|
|
| Invalid performance counter path |
| Hi there, I have some problems when measuring performance of w3wp
process.
I use something like
while(condition) {
Get-Counter -computer c 'asp.net\request wait time',.....,`
'.NET CLR Memory(w3wp)\... on 19-Nov-09 |
| |
|
|
|