1
vote
How do I get PowerShell to grab a logfile when it overflows?
There is a particular event that occurs in the application or system eventlogs when they are considered "full" (according to the OverflowAction configured):
…
0
votes
exchange powershell : get-user has no Description property? (solved)
get-user? do you mean get-qaduser from the quest cmdlet suite?
if so, I believe not all properties are retrieved by default. There's an -Include parameter that lets you specify additional p …
1
vote
How can I change features in Windows Vista programatically?
The way to do this in Vista and Windows 2008 is with the PKGMGR command line tool. Search MSDN for this tool to find a list of features/packages.
…
2
votes
Using PowerShell with .NET 3.5 runtime/libraries
3.5 is effectively an ADD-ON for 2.0. That is to say, there are no superceded classes in 3.5; it is not a replacement. The CLR (common language runtime) is still v2.0.
…
8
votes
Passing an associative array from c# to Powershell
Creating a pipeline through c# and creating a pipeline with native powershell script have one major difference that is actually quite subtle: the parameter binder.
if I write a version of y …
0
votes
How can I add multiple ServerBindings to IIS6 using powershell?
You'll have a way easier time of it if you install the IIS powershell provider from www.iis.net ( http://www.iis.net/1664/ItemPer …
2
votes
How can I call explicitly implemented interface method from PowerShell?
I wrote something for PowerShell v2.0 that makes it easy to call explicit interfaces in a natural fashion:
PS> $foo = get-interface $bar ([ifoo])
PS> $foo.Foo()
…
2
votes
Weird Powershell performance issue
First and foremost, PowerShell is an interpreted language (not jitted, nor compiled). That's always going to hurt. ;-)
Secondly, there are some language constructs that you may use that can …
2
votes
Why does Powershell’s “return” keyword cause type errors?
Depending on the context, functions may return an array (of length 1) where your expected result is at index 0 in the array. To ensure you always get a scalar if a single element is returned wrappe …
0
votes
Use -notlike to filter out multiple strings in powershell
Hey Pascal,
Yep, but you have to put the array first in the expression:
... | where { @("user1","user2") -notlike $_.username }
-Oisin
…
1
vote
Setting the start dir when calling Powershell from .NET?
Anything wrong with doing:
pipeline.Commands.AddScript(@"set-location c:\scripts;.\foo.ps1")
?
-Oisin
…
2
votes
Powershell error when using CloudDrive Azure sample
Are you using Windows 7 RC? If so, there are a couple of bugs in the version of powershell on that system that may prevent samples working correctly. I have used the blob provider successfully on V …
0
votes
Calling powershell cmdlets from Windows batch file
Try this syntax instead:
cd %SystemRoot%\system32\WindowsPowerShell\v1.0
powershell {Set-ExecutionPolicy Unrestricted}
powershell "& C:\convert-utf8-to-utf16.ps1 C:\test.txt"
po …
0
votes
Automate Virtual PC 2007 with PowerShell?
Hey Dennis,
Is this what you're looking for? I'm on Windows 7 that has the "virtual windows xp" feature installed (which is effectively vpc 2007).
[E] PS> $vpc = new-obje …
0
votes
powershell / runspace in a thread
Can you give us the full stacktrace for the ObjectDisposedException?
…
