Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
373 views

Error when calling 3rd party executable from Powershell when using an IDE

I have a PowerShell script that uses du.exe (Disk Usage originally from Sysinternals) to calculate the size of directories. If I run du c:\Backup in the console, it works as expected, but the same ...
2
votes
4answers
631 views

Can't get powershell script to run inside PowerGUI

When I run my script directly from the Powershell console it works. When I run my script in PowerGUI and try instantiate an object, I get an error: Exception calling ".ctor" with "3" argument(s): ...
1
vote
1answer
109 views

Prevent PowerGUI from truncating the output

I'm trying to get an output from a powershell command. However The output is truncated. [PS] >Get-QADGroup "admins" Name Type DN ---- ...
1
vote
2answers
153 views

dot-source failing oin powergui

I'im trying to dot-source a script file in PpowerGui 3.0 , but all i get is ; The term '.\PowerShell.Common.ps1' is not recognized as the name of a cmdlet, function, script file, or operable ...
1
vote
2answers
46 views

How to determin CaretColumn in PowerGUI Script editor?

I found the following [Quest.PowerGUI.SDK.ScriptEditorFactory]::CurrentInstance.CurrentDocumentWindow.Document.CaretLine to determine the line of the cursor in PowerGui 2.4 Script editor. But I ...
1
vote
3answers
390 views

How do I run PowerShell scripts in debug mode in PowerGUI under .NET 4 Framework?

I've read the whole thread about running PowerShell under .NET 4.0, including the warnings about what happens when using the registry keys to make the scripts run under that framework. So far, I ...
1
vote
4answers
2k views

$MyInvocation.MyCommand.Path is $null in PowerGUI script editor

When trying to debug my powershell script in the powerGUI script editor (2.0.0.1082) the $MyInvocation.MyCommand.Path is $null. It works when running the script via powershell. Running it in ...
0
votes
2answers
228 views

How to Prevent PowerGUI from Running Script on Open?

When I open any .ps1 via "Open with PowerGUI Script Editor" in Windows Explorer's context menu, PowerGUI first runs the script, then lets me edit it. Is this behaviour by design? If I run the ...
0
votes
1answer
167 views

Why does “F5 - Start Debugging” ignore breakpoints in PowerGUI?

I'm not sure if I'm being a bit thick, but I have a simple script with three lines: $iis = 90000 $name = "somesite" Write-Host("Values are: $iis and $name") If I set a breakpoint on any of these ...
0
votes
1answer
1k views

Error when running powershell script to import users from csv using Import-Csv and New-QADUser into Active Directory

My script looks like this: $Users = Import-Csv "C:\users.csv" foreach ($User in $Users) { New-QADUser -Name $User.Name ` -ParentContainer $User.OU ` -FirstName $User.FirstName ` ...
0
votes
2answers
341 views

I cannot debug in PowerGui

I have PS V2 and PowerGUI (1.9.6.1027). I set a debug point in my script in PowerGUI, but I cannot get debug workin when I start debug from tool bar or menu item. I got a dialog of "Continue with this ...
0
votes
1answer
398 views

Debug PowerShell using PowerGUI

I use PowerGUI to edit my script. In Visual Studio, I can add command line argument from project properties. However, I cannot find a way to set parameters to the UI to debug my codes with specified ...
0
votes
1answer
159 views

Can't start debugger in PowerGUI

I am using the PowerGUI Script Editor 1.7.1.702, and trying to start debugger, but I get such error message: Cannot find a provider with name 'Remove-PSBreakPoint -BreakPoint ...