lordmilko / PrtgAPI

C#/PowerShell interface for PRTG Network Monitor
MIT License
301 stars 37 forks source link

Group Creation #158

Closed igorgcampos closed 4 years ago

igorgcampos commented 4 years ago

Hello, How can i create a group a set them to active directory integration? Can i set this properties in Ad-Group creation ? Capturar

Thank you

lordmilko commented 4 years ago

Hi @igorgcampos,

PrtgAPI does not natively support the creation of User Group objects in PRTG

You can potentially manually do this yourself however by creating the group in PRTG and observing the API request that is made using Fiddler. You can then construct this URL yourself in your own program

e.g.

https://prtg.example.com/editsettings?name_=Group&isadmingroup_=0&etc=etc&username=myusername&password=mypassword

I'm not sure how many groups you need to automate but if it's not actually that many it would probably be easier to just do it manually

Regards, lordmilko

igorgcampos commented 4 years ago

Hi there, Is possible to remove device from a specific group?

Em seg., 20 de jul. de 2020 às 23:05, lordmilko notifications@github.com escreveu:

Hi @igorgcampos https://github.com/igorgcampos,

PrtgAPI does not natively support the creation of User Group objects in PRTG

You can potentially manually do this yourself however by creating the group in PRTG and observing the API request that is made using [Fiddler](Susan Mikula ). You can then construct this URL yourself in your own program

e.g.

https://prtg.example.com/editsettings?name_=Group&isadmingroup_=0&etc=etc&username=myusername&password=mypassword

I'm not sure how many groups you need to automate but if it's not actually that many it would probably be easier to just do it manually

Regards, lordmilko

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/lordmilko/PrtgAPI/issues/158#issuecomment-661559472, or unsubscribe https://github.com/notifications/unsubscribe-auth/AHQHC5R3UTEDG6YYIGY3ZQDR4TZV7ANCNFSM4PC2762A .

lordmilko commented 4 years ago

Hi @igorgcampos,

Are you able to clarify what you mean exactly? Are you referring to groups as in organizational groups in the PRTG UI? (devices, groups, probes). You can delete objects in PrtgAPI using the Remove-Object cmdlet and move them using the Move-Object cmdlet

noaboa97 commented 3 years ago

Hi guys,

@igorgcampos

Today I wrote a PowerShell to add a PRTG usergroup. I tested it in my lab and it worked fine.

Probably not the nicest code but it gets the job done.

https://github.com/noaboa97/PrtgAPI-Scripts/blob/main/Functions/New-PrtgUsergroup.ps1