Search found 1789 matches

by jhicks
Thu Dec 14, 2006 11:04 pm
Forum: PrimalScript
Topic: Can I View Folders in Left Nexus Window
Replies: 3
Views: 3183

Can I View Folders in Left Nexus Window

If I understand your Nexus question, under Tools - Options - Environment - Nexus Windows, you should be able to select File Browser and check the Nexus area where you want it to be displayed. You may need to restart PrimalScript for the change to take effect.
by jhicks
Fri Dec 08, 2006 11:27 pm
Forum: PrimalScript
Topic: Powershell Output in Output Window
Replies: 4
Views: 3638

Powershell Output in Output Window

This is because of the way PowerShell handles console output. I know Alex would like to find a way to do this, but I believe he's battling some PowerShell limitations.
by jhicks
Wed Nov 22, 2006 3:30 am
Forum: PrimalScript
Topic: 4.1 behaviors and memory leak
Replies: 37
Views: 28258

4.1 behaviors and memory leak

abell,I take it when you hibernate you don't get an error about not enough system resources to complete the task. There was a problem for the longest time on XP with system with over 1GB of RAM. I have 1.5GB. It was related to a Windows memory frag problem or something like that. Eventually MS came ...
by jhicks
Wed Nov 22, 2006 2:28 am
Forum: PrimalScript
Topic: 4.1 behaviors and memory leak
Replies: 37
Views: 28258

4.1 behaviors and memory leak

I'm also using Process Explorer. I have 6 tabs open with file sizes ranging from 10 lines to a couple hundred to a couple thousand. Files are a mix of vbs, hta and wsf. It's actually been open for a while. I get a virtual memory size of 310MB and a working set of 7.8MB. Private bytes is almost 80MB....
by jhicks
Wed Nov 22, 2006 12:58 am
Forum: PrimalScript
Topic: 4.1 behaviors and memory leak
Replies: 37
Views: 28258

4.1 behaviors and memory leak

I've used PrimalScript for a long time and always have many files open. I've never noticed a memory problem. I'll do some more detailed testing and tracking. You may get more troubleshooting detail by using something like Process Monitor or Process Explorer from Sysinternals.
by jhicks
Wed Nov 22, 2006 12:41 am
Forum: PrimalScript
Topic: Opening multiple files to edit at one time
Replies: 3
Views: 3871

Opening multiple files to edit at one time

I get the same result, even if "use single instance" is checked under options.
by jhicks
Fri Nov 17, 2006 3:43 am
Forum: PrimalScript
Topic: PowerShell host cannot be instantiated...
Replies: 8
Views: 9807

PowerShell host cannot be instantiated...

PowerShell appears to be installed properly, but you already knew that. The issue is Primal Script "finding" PowerShell on your system. I ran into this with earlier release candidate and I'm trying to remember how we fixed it. You didn't do a custom install of PowerShell did you or change ...
by jhicks
Fri Nov 17, 2006 3:06 am
Forum: PrimalScript
Topic: Powershell Script - No Output
Replies: 4
Views: 6148

Powershell Script - No Output

A workaround if you want to have a record of the console session is to use Start-Transcript and Stop-Transcript in your script.

Code: Select all

Start-Transcript -path e:temptranscript.txt
Get-Date -DisplayHint date | Tee-Object date.txt
Stop-Transcript
by jhicks
Fri Nov 17, 2006 2:53 am
Forum: PrimalScript
Topic: PowerShell host cannot be instantiated...
Replies: 8
Views: 9807

PowerShell host cannot be instantiated...

Put these two lines in a ps1 file in Primal Script. Save the file. Press f7 to run.$Var=Get-WmiObject "win32_operatingsystem"$Var.captionDoes PowerShell run or do you get the same error? If you right click on the cmdlet name in a PowerShell script, you should get help. What OS are you runn...