this post was submitted on 25 Jun 2025
16 points (100.0% liked)

Sysadmin

10072 readers
125 users here now

A community dedicated to the profession of IT Systems Administration

No generic Lemmy issue posts please! Posts about Lemmy belong in one of these communities:
!lemmy@lemmy.ml
!lemmyworld@lemmy.world
!lemmy_support@lemmy.ml
!support@lemmy.world

founded 2 years ago
MODERATORS
 

I am trying to use powershell to setup a process that off boards users and doing the AD side of things is great but I am not sure how to use powershell to interact with our other software that only has a gui.

For example user management in studio3T where they only have a web UI or an application that you can download and run locally.

you are viewing a single comment's thread
view the rest of the comments
[–] mesamunefire@piefed.social 6 points 6 days ago

Python can do it quite well. Look for certain pixels, click if they have a certain value.

As others have said it's better to use other methods like apis where there is context but it's definitely doable.

If it's on the web, I've used selenium for years to get around apis and websites that don't support it.