Search found 18 matches

by A. Hohl
Wed Nov 08, 2017 7:44 am
Forum: PowerShell GUIs
Topic: Blank Window Opening when running .exe
Replies: 4
Views: 1988

Re: Blank Window Opening when running .exe

That was the problem. Thank you!
by A. Hohl
Wed Nov 08, 2017 7:27 am
Forum: PowerShell GUIs
Topic: Blank Window Opening when running .exe
Replies: 4
Views: 1988

Re: Blank Window Opening when running .exe

I'm not 100% sure what you are asking, When I build the package I am selecting Sapien PowerShell V3 Host (Windows Application)
by A. Hohl
Wed Nov 08, 2017 6:32 am
Forum: PowerShell GUIs
Topic: Checked List Box Import from CSV
Replies: 7
Views: 4265

Re: Checked List Box Import from CSV

Worked perfectly. Thank you!
by A. Hohl
Wed Nov 08, 2017 6:31 am
Forum: PowerShell GUIs
Topic: Blank Window Opening when running .exe
Replies: 4
Views: 1988

Blank Window Opening when running .exe

I have a script that I have packaged as an executable. When I run it, I get a white window that opens that appears to log any errors. Can this be set not to open?

Thanks,
Austin
by A. Hohl
Fri Nov 03, 2017 9:15 am
Forum: PowerShell GUIs
Topic: Checked List Box Import from CSV
Replies: 7
Views: 4265

Re: Checked List Box Import from CSV

The site has a lot of helpful information, I am having a hard time specifically finding the command to import the CSV to the check list though...

Thanks,
Austin
by A. Hohl
Fri Nov 03, 2017 7:47 am
Forum: PowerShell GUIs
Topic: Checked List Box Import from CSV
Replies: 7
Views: 4265

Checked List Box Import from CSV

Hello,

I am trying to design a CheckedListBox that will import a list of computer names from a CSV and allow me to later do a "foreach" command to "mass enable" computers that have been disabled in AD. any pointers on how to accomplish this?

Thanks,
Austin
by A. Hohl
Thu Aug 24, 2017 12:23 pm
Forum: PowerShell
Topic: Query Active Directory
Replies: 1
Views: 1521

Query Active Directory

Hello, I am trying to find a way to query all of my Groups that I have in Active Directory and export the results to a CSV. Here is what I have so far: $Report = @() $GroupCollection = Get-ADGroup -Filter * | select Name,MemberOf,ObjectClass,SAMAccountName Foreach($Group in $GroupCollection){ $Membe...
by A. Hohl
Thu Jul 06, 2017 3:45 pm
Forum: PowerShell
Topic: Or statements
Replies: 4
Views: 2055

Re: Or statements

Worked perfectly thank you for your help!
by A. Hohl
Thu Jul 06, 2017 3:01 pm
Forum: PowerShell
Topic: Or statements
Replies: 4
Views: 2055

Re: Or statements

Can you give any details? If I say USER1 or USER2 it works fine it’s when I add the third user and so it it does not work. The ** are showing where I am having the problem. Not actually in the script.

Thanks.
by A. Hohl
Thu Jul 06, 2017 10:50 am
Forum: PowerShell
Topic: Or statements
Replies: 4
Views: 2055

Or statements

Hello, I am trying to create a script that will validate AD credentials and only allow certain users to access the form that this script will open. So I have it prompting to enter login information and that is working great. The problem is where the ** are when I do the or statement it then allows e...