Search found 71 matches

by juneblender
Tue Nov 29, 2016 9:30 am
Forum: PowerShell HelpWriter
Topic: Does not recognize ActiveDirectory module objects
Replies: 11
Views: 64191

Re: Does not recognize ActiveDirectory module objects

Okay, I suspect we're missing a library somewhere. Please upload your module to: https://www.sapien.com/support/upload
by juneblender
Mon Nov 28, 2016 1:07 pm
Forum: PowerShell HelpWriter
Topic: Does not recognize ActiveDirectory module objects
Replies: 11
Views: 64191

Re: Does not recognize ActiveDirectory module objects

Oh, sorry! A dll-help.xml file is a PowerShell help file. I thought you were trying to create a help file for the official ActiveDirectory module. Now I realize that this is your own module. Before I look at your module, please run this command and let me know if it runs without error: (Get-Command ...
by juneblender
Mon Nov 28, 2016 11:53 am
Forum: PowerShell HelpWriter
Topic: Does not recognize ActiveDirectory module objects
Replies: 11
Views: 64191

Re: Does not recognize ActiveDirectory module objects

I've tried to repro this issue with ActiveDirectory 1.0.0.0 and HelpWriter 1.1.20 on Server 2016 and Windows 10 Pro with RSAT. No luck. It generates the help file for all exported commands. Not sure which difference is causing my setup to respond differently. I can share the dll-help.xml file if tha...
by juneblender
Wed Sep 21, 2016 12:46 pm
Forum: PowerShell
Topic: Appending to a sring in a XML file
Replies: 6
Views: 3378

Re: Appending to a sring in a XML file

The System.Xml.Document class has AppendChild and PrependChild methods. If you're looking for a cmdlet, try Select-Xml (the help is really detailed). But, you might be able to use the Replace method of strings to find the XML element and replace it with a concatenation of the preceding XML element a...
by juneblender
Tue Sep 13, 2016 10:01 am
Forum: PowerShell
Topic: Catching Error Output
Replies: 4
Views: 3052

Re: Catching Error Output

Great. So much easier here than Twitter and other people can see and benefit from your question. :)
by juneblender
Tue Sep 13, 2016 9:53 am
Forum: PowerShell
Topic: Catching Error Output
Replies: 4
Views: 3052

Re: Catching Error Output

Hi! The problem is that errors go to the error stream in PowerShell, so you need to redirect the error stream. I think this will help: https://www.sapien.com/blog/2015/01/15/ ... plication/
by juneblender
Thu Jul 21, 2016 7:57 am
Forum: Former and Future Customers - Questions
Topic: Number of Activations
Replies: 1
Views: 6415

Re: Number of Activations

Hi, Ken, You'll find the licensing details on our FAQ: https://www.sapien.com/support/faqs#5 . If you have a special situation or need help with a sales questions, email our sales specialist at sales@sapien.com. -- juneb June Blender Technology Evangelist SAPIEN Technologies, Inc. @juneb_get_help
by juneblender
Sat Jul 16, 2016 11:19 am
Forum: Former and Future Customers - Questions
Topic: Rename hotkey (shift-ctrl-J) doesn't work
Replies: 4
Views: 7009

Re: Rename hotkey (shift-ctrl-J) doesn't work

LOL! If there was a bug hunter trophy, I'd have so many they'd fill my office. Bugs hunt me down. :) I have some cool PowerShell Studio stickers/pens if you'd like some. Email me at juneb at SAPIEN. And, we really do appreciate the bug report. That bug is already fixed and ready for the next service...
by juneblender
Fri Jul 15, 2016 7:26 am
Forum: Former and Future Customers - Questions
Topic: Rename hotkey (shift-ctrl-J) doesn't work
Replies: 4
Views: 7009

Re: Rename hotkey (shift-ctrl-J) doesn't work

Thanks! I've filed an internal bug to fix this. Sorry for any inconvenience.

-- juneb

June Blender
Technology Evangelist
SAPIEN Technologies, Inc.
by juneblender
Wed Jun 22, 2016 2:55 pm
Forum: PowerShell
Topic: Suppressing undesired output that appears in generated EXE
Replies: 23
Views: 17362

Re: Suppressing undesired output that appears in generated EXE

The best practice is to pipe the selected output to Out-Null or assign it to the $null variable. ... | Out-Null $null = ... But, I bet you can be more selective. If these are truly informational messages, i.e. in the Information stream, you can use the InformationAction common parameter to suppress ...