Search found 373 matches

by Ferdinand Rios
Mon Oct 05, 2015 8:40 am
Forum: iPowerShell
Topic: iPowerShell Pro Crashes on connection
Replies: 3
Views: 23467

Re: iPowerShell Pro Crashes on connection

Can you send a screen shot of the settings panel for that PSWA connection to frios@sapien.com?

Thanks.
by Ferdinand Rios
Fri Oct 02, 2015 8:40 am
Forum: iPowerShell
Topic: iPowerShell Pro Crashes on connection
Replies: 3
Views: 23467

Re: iPowerShell Pro Crashes on connection

Can you supply the above posted information?

Thank you.
by Ferdinand Rios
Tue Sep 01, 2015 10:27 am
Forum: PowerShell Studio
Topic: Combobox for countries
Replies: 2
Views: 2040

Re: Combobox for countries

I just did this: 1) search web for list of countries. I found one at https://www.countries-ofthe-world.com/all-countries.html 2) select all the countries in the list and copy to clipboard 3) place a dropdown on a form in PowerShell Studio 4) Open the Dropdown's ITEMS property 5) Paste the clipboard ...
by Ferdinand Rios
Wed Jul 08, 2015 1:18 pm
Forum: Customer Service
Topic: License Question
Replies: 2
Views: 2614

Re: License Question

Hello,

Unfortunately no. Since you are paying a discounted price for an Upgrade, we invalidate the old license. The only way you could pass the old license along is if you purchase a new license at full price.

thank you.
by Ferdinand Rios
Wed Jul 01, 2015 2:07 pm
Forum: Customer Service
Topic: Cannot Logon with iPowershell Pro
Replies: 1
Views: 2169

Re: Cannot Logon with iPowershell Pro

Responded to here:

https://www.sapien.com/forums/viewtopic.php?f=17&t=8990&p=48459&hilit=ipowershell#p48459

Please try not to post the same question in multiple forums.
by Ferdinand Rios
Wed Jul 01, 2015 1:37 pm
Forum: iPowerShell
Topic: I canot Logon to my web powershell sever
Replies: 1
Views: 16783

Re: I canot Logon to my web powershell sever

Hello, Here is a link that describes the process. The screen shots are for an earlier version but the fields are still the same and take the same values. https://www.sapien.com/blog/2014/07/30/connecting-to-powershell-web-access-with-ipowershell-pro/ Please let us know if you continue to have any is...
by Ferdinand Rios
Tue May 26, 2015 10:06 am
Forum: PowerShell GUIs
Topic: Text Box clear Error
Replies: 5
Views: 5724

Re: Text Box clear Error

As Jim said, $textbox.Clear() is the standard way of deleting text from a Textbox control, but setting the value of the Text property to $null works, too. I just tested it. I think there's a different problem. The error indicates that the control object doesn't have a Text property (ERROR: The prope...
by Ferdinand Rios
Mon Mar 16, 2015 8:52 am
Forum: iPowerShell
Topic: iPowerShell Pro crashes when accessing a cmdlet
Replies: 4
Views: 19387

Re: iPowerShell Pro crashes when accessing a cmdlet

If this ever happens again, just download the cmdlet set through the app. This will install a clean set of cmdlets.
by Ferdinand Rios
Thu Feb 26, 2015 1:31 pm
Forum: iPowerShell
Topic: Can the default be made for an admin console?
Replies: 4
Views: 18953

Re: Can the default be made for an admin console?

Since this is a PowerShell Web Access window, the security and access is handled on the server side. You can look at Technet and see if you can setup your remote login to give you that access. There really is nothing that can be done on the iPowerShell Pro side. https://technet.microsoft.com/en-us/l...
by Ferdinand Rios
Tue Jan 13, 2015 2:51 pm
Forum: PowerShell Studio
Topic: using variables
Replies: 7
Views: 3871

Re: using variables

When you wrote "PowerGUI" did you mean PowerShell Studio?

Are you running get-WMIObject against $GetPC or against $GetPC.text? $GetPC is the TextBox object. if you need to pass the computer name to the Get-WMIObject you need to use $GetPC.text as I stated in the previous posting.