Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
161 views

How can I get the PowerShell ISE to do syntax highlighting on files with a custom extension?

I'd like to start using a custom extension for some of my Powershell scripts, but when I drag them into the PowerShell ISE, they are treated as plaintext, and I don't get any syntax highlighting. Is ...
5
votes
1answer
195 views

Windows Forms look different in Powershell and Powershell ISE. Why?

I have written a script which is basically a small wysiwyg signature generator for Outlook. We want our signatures to be in corporate colours, and semi-standardised - hence the requirement for this. ...
4
votes
1answer
136 views

Is it possible to reset the runspace in Powershell ISE?

One of the features of PowerGUI is the ability to reset the Powershell Runspace as demonstrated in this article and this article. Is it possible to do this in PowerShell ISE?
3
votes
2answers
231 views

How can I change the WindowTitle of the Read-Host prompt in the PowerShell ISE?

I know how to change the title of the main ISE window using something like $Host.UI.RawUI.WindowTitle = "My Awesome New Window Title" but I'm wondering how to get access to the title of the window ...
3
votes
2answers
269 views

Powershell editor with intellisense that I can embed into my program?

I have a C# application and want to allow people to write powershell code within my app. Does anyone know of a powershell editor with intellisense that fits the bill??
2
votes
4answers
163 views

Why and when to use 32 or 64-bit PowerShell or ISE?

I just got my first 64-bit Windows notebook. Now I'm looking for information when and why to use the 32 or the 64-bit versions of PowerShell or ISE. My first impression is that I better stay with 32 ...
2
votes
2answers
203 views

Powershell ISE cannot start after (foolishly) deleting all variables

In my eagerness to find out what variables were protected or constants, I decided to just see what ones could be removed - assuming those mentioned above would be left alone. What I didn't realize is ...
2
votes
1answer
837 views

How to pass needed parameters to script in Powershell ISE?

See Title. I specified needed parameters in the head of a script: param ($G_ARCHIVE = $(throw "Need file to upload!"), $G_LOGFILE = $(throw "Need logfile!")) When I want to debug the script ...
2
votes
0answers
95 views

Powershell 2 ISE, not stopping on breakpoints in imported modules

When we set breakpoints within a Module we've imported the debugger ignores the breakpoint. Has anybody else seen this behaviour? This is driving me nuts, we use PowerShell Modules extensively. The ...
2
votes
3answers
1k views

Custom read-host dialog for PowerShell 2 CTP3 ISE

Is it possible to hook a custom dialog into the new PowerShell ISE (Integrated Scripting Environment) that replaces the existing .NET WinForms dialog. I am talking about the dialog that the Read-Host ...
1
vote
1answer
45 views

Powershell_ise doesn't refresh modification done outside

How to refresh Powershell_ise for contents modified outside the IDE. Most of the time i would have opened both Powershell_ise and notepad++ If i does changes in Powershell_ise , notepad++ asks for ...
1
vote
3answers
76 views

Powershell ISE “Illegal characters in path” when piping paths to test-path?

I have the following script in Powershell ISE. cd E:\Data @" xxxx.zip yyyy.zip "@ -split "`n" | % { echo "'$_'"; test-path -path "$_" -EA Stop } However it always raises error. 'xxxx.ZIP' False ...
1
vote
3answers
654 views

PowerShell script to display Notification balloon and take action only works in ISE gui, not from commandline

I've seen a bunch of closely related posts so I know i'm not alone, but none have given me the answer I'm looking for. Apologies if this has been asked and answered and I couldn't find it. this ...
0
votes
1answer
105 views

Why can't I create shortcuts Ctrl+U and Ctrl+Shift+U in PowerShell ISE?

I am trying to assign CTRL+U CTRL+SHIFT+U to some PowerShell ISE Addonmenu functions, but say seem to be assigned to some Windows function. I didn't find them in current online shortcut lists ...
0
votes
2answers
167 views

Why won't PowerShell ISE let me set breakpoints when running as Administrator?

Having failed to get PowerGUI to work properly I've fallen back on PowerShell ISE. However if I run this as Administrator it won't let me set any breakpoints. If I launch as normal (my login is a ...
0
votes
1answer
395 views

Applying a custom webtemplate to a sitecollection works on powershell ise and not on powershell console

I'm working on a automated script for deploying sharepoint projects. I'm using a sandbox level webtemplate that must be applied when de site is created. I had a lot of troubles doing that because it ...
0
votes
2answers
208 views

How to get Powershell-ISE to release Cmdlet DLL

I'm development a Cmdlet and using Powershell-ISE to test. ISE is keeping my DLL locked and preventing from rebuilding and then reloading. I've tried call remove ps-snappin, but the DLL remains ...
0
votes
1answer
77 views

$psise object in the console Powershell

is possible to load the $psise object in the console? I want to open several files in ISE but doing >ise filename >ise filename2 just open the first one. Inside ISE i don't have that problem ...
0
votes
1answer
155 views

Tabexpansion function Does Not Resolve Variable

I'm attempting to override and implement my own TabExpansion. In the function I want to parse the contents of $psise.CurrentFile.Editor.Text when a certain $lastword criteria is matched. The issue I ...
0
votes
2answers
1k views

Why is XDocument.Descendants() returning IEnumerator in PowerShell ISE?

I'm writing a PowerShell script to manipulate some Windows Installer XML (WiX). I'm using the new XML APIs in .NET 3.5 to do this, as I find it an easier API to work with than the DOM. The ...