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.
…
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 …
3
votes
How to capture a Powershell CmdLet’s verbose output when the CmdLet is programmatically Invoked from C#
Verbose output is not actually output unless $VerbosePreference is set at least to "Continue."
Use the PowerShell type to run your cmdlet, and read Ve …
3
votes
Can you set an object’s DefaultDisplayPropertySet in a PowerShell v2 script?
Can you give an example of your non-working code? This should work perfectly in v2, if not, you've found a bug.
UPDATE:
(removed comments about quoting)
I've confirmed with …
1
vote
powershell v2 remoting - How do you enable unecrypted traffic
AllowEncrypted is defined on the client end, via the WSMAN: drive. You must be running powershell.exe (or powershell_ise.exe) as an elevated process.
ps> cd WSMan:\localhost\Clie …
2
votes
Does PowerShell STA mode eliminate SharePoint memory leak issue?
Ultimately, -STA mode should be enough provided you are using Powershell 2.0. The reason for this is that in STA mode, the default runspace reuses a single thread for all interactive commands (and …
2
votes
How to build a WPF application with Add-Type C# code
Several problems:
$a = @'
using System;
using System.Windows;
public class Program
{
[STAThread()]
public static void Main(string[] args)
{
Application app = …
1
vote
Start-job vs. Invoke-command -asjob
The first example using start-job does not use HTTP for the call and instead uses an IPC channel with WinRM to run; it does not require administrative privileges this way. The second example with i …
