Search Results

3
votes

What’s in your Powershell profile.ps1file?

I keep a little bit of everything. Mostly, my profile sets up all the environment (including calling scripts to set up my .NET/VS and Java development environment). I also redefine the prom …
3
votes

Powershell script to download file, having trouble setting up a secure connection

Brad is correct, but notice that PowerShell V1 doesn't really have native support for delegates, which you'll need in this specific case. I believe this should …
14
votes

Powershell: Run a program in a foreach.

If you still need quotes around the command path (say, if you've got spaces), just do it like this: ls | % { &"C:\Working\tools\custom-tool.exe" $_.FullName } …
5
votes

Powershell Generic Collections

Dictionary is not defined in the same assembly as SortedDictionary. One is in mscorlib and the other in system.dll. Therein lies the problem. The current behavior in powershell is that whe …
3
votes

What’s the best way to automate secure FTP in PowerShell?

As far as PowerShell goes, the /n Software NetCmdlets package includes FTP cmdlets (including support for both secure FTP types) that y …
3
votes

Is it possible to open an explorer window from powershell

Just use the invoke-item cmdlet. For example, if you want to open a explorer window on the current directory you can do: invoke-item . …
1
vote

Setting permissions on a MSMQ queue in script

There's nothing built into powershell for this, but you can use the .NET framework classes. Just load System.Messaging.dll and use MessageQueue.SetPermissions() to change the ACL on the queue. …
7
votes

Referencing system.management.automation.dll in Visual Studio

A copy of System.Management.Automation.dll is installed when you install the windows SDK (a suitable, recent version of it, anyway). It should be in C:\Program Files\Reference Assemblies\Microsoft\ …
2
votes

What’s a good way to consume a PowerShell Cmdlet in a NAnt build system?

You could certainly use the exec task, setting the program attribute to powershell.exe and passing in the commandline something like "-Command { }". Alternatively, you could certainly crea …
0
votes

Automated MSMQ Setup with Powershell

There's no reason you can't use System.Messaging from within PowerShell. Just load the right assembly and you can create/delete/hook your queues to your heart's content. Creating a custom cmdlet is …
1
vote

Custom PowerShell prompts

Here's mine: http://winterdom.com/2008/08/mypowershellprompt …
0
votes

Is there a guide to the (somewhat) convoluted PowerShell syntax? Example with Biztalk

Regarding the Map() error, sometimes with WMI you need to drop back and instead do $objServerHost.psbase.Invoke("Map"). Other than that, I've got a …
0
votes

Powershell: How do i get credentials from C# code?

Are you writing a custom PSHost? If so, then your custom host would be required to provide your own implementation of PSHostUserInterface and then implement PromptForCredential() in it. If …
3
votes

Powershell: using redirection within the script produces a unicode output. How to emit single-byte ASCII text?

You could change the $OutputEncoding variable before writing to the file. The othe …