Search found 3 matches

by kiidstuuff123
Mon Jan 18, 2021 12:40 am
Forum: PowerShell
Topic: Disable/Enable AD user account from CSV
Replies: 1
Views: 2812

Disable/Enable AD user account from CSV

How can I enable or disable an AD user account from a csv based on an entry. If the status for both say Active, only one account gets enabled instead of both. Same for the disabled status. CSV file: Samaccountname,Status john.doe,Active jane.doe,Disabled What I have so far: $User = Import-Csv -Path ...
by kiidstuuff123
Sun Dec 13, 2020 2:28 pm
Forum: PowerShell
Topic: How can I capitalize first letter in a textbox?
Replies: 2
Views: 2758

How can I capitalize first letter in a textbox?

How would I be able to capitalize the first letter in a textbox?

For example:
textboxFirstname.text = 'john' -> 'John'

textboxLastname.text = 'doe' -> 'Doe'