Hi everyone,
First post here, so go easy on me :)
I'm working on a project that requires to pull information from IIS.
With powershell this is easy with Get-WebApplication
This lists all web applications, Associated Application Pools and Physical Path.
I am really only interested in the "Name" element really as its the Virtual Directory structure I need specifically to progress.
So, my question is, can I get this info using GoLang - ideally don't want to shell off to PowerShell to get this and keep it native to Golang
Thanks in advance :)
Pete