Search found 48 matches

by bhnuser
Thu Jul 26, 2018 5:53 am
Forum: PowerShell
Topic: SMTP-Addresses Exchange
Replies: 9
Views: 3268

Re: SMTP-Addresses Exchange

Yes it's possible. But i dont know which code you use... If you use my last posted code you will recive the EmailAddresses with "," separated instand of "|" Use this: Get-Mailbox $selectedUser.SamAccountName | select PrimarySmtpAddress, @{Name='EmailAddresses'; Expression={$_.Ema...
by bhnuser
Wed Jul 25, 2018 6:02 am
Forum: PowerShell
Topic: SMTP-Addresses Exchange
Replies: 9
Views: 3268

Re: SMTP-Addresses Exchange

I thank you very much.
Just some little modifies on my code:

Code: Select all

Get-Mailbox $selectedUser.SamAccountName | select PrimarySmtpAddress, @{Name='EmailAddresses'; Expression={$_.EmailAddresses.Where({$_ -like 'smtp:*' }) -replace "smtp:",""}}
by bhnuser
Wed Jul 25, 2018 1:53 am
Forum: PowerShell
Topic: SMTP-Addresses Exchange
Replies: 9
Views: 3268

Re: SMTP-Addresses Exchange

That sounds very good. Now i get all information like x500, MRS and SMTP.
Can you tell me how i can filter only the SMTP-Address?
by bhnuser
Mon Jul 23, 2018 6:38 am
Forum: PowerShell
Topic: SMTP-Addresses Exchange
Replies: 9
Views: 3268

SMTP-Addresses Exchange

Hallo everybody, i have an issue with my Admin-Tool. For your information: the script was already running on my system but after few weeks i get some problems. I start a session with our Exchange-Server and collect from there some information about the user. Now i want to get all Smtp adresses, spli...
by bhnuser
Thu Jun 21, 2018 10:58 pm
Forum: PowerShell
Topic: Automatically resize of images
Replies: 3
Views: 1811

Re: Automatically resize of images

Thank you very much for the fast answer. What I can say is that this script looks very nice and i can find a use in it. But i have one more question: Can i set a fixedlength of 100 KB and let the script scale the image automatically to the right size of 100 KB? If yes, how i need to modify the script?
by bhnuser
Thu Jun 21, 2018 6:18 am
Forum: PowerShell
Topic: Automatically resize of images
Replies: 3
Views: 1811

Automatically resize of images

Hello everybody, i am looking for a "simple" script to resize images for our ActiveDirectory. The feature is, that the imported picture should be resized to a bytesize of 100 KB and scale automatically. Width and higth is not possible and can have a higher resolution. Does a script exist o...
by bhnuser
Wed Apr 18, 2018 12:15 am
Forum: PowerShell GUIs
Topic: Management Groups in Listview
Replies: 3
Views: 1780

Re: Management Groups in Listview

I'm so sorry for the bad description! I will attach a picture of my scenario. Yeah, I know it's a little bit unmanageable. So, what i want is that there are no duplicate groups appear in the listview, and that I can filter the entries in two arrays, once in an adding-array and once in a deleting-arr...
by bhnuser
Tue Apr 17, 2018 7:14 am
Forum: PowerShell GUIs
Topic: Management Groups in Listview
Replies: 3
Views: 1780

Management Groups in Listview

Hello everybody, i want to create a PowerShell GUI to manage AD User and their Groups. In the attachement you find the .psf. My question is: How i can edit the Listview that it show me the clicked groups in the right Listview-Group "Add" or "Removed"? Furthermore i need a way to ...