Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions doc/31-Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ documentation before upgrading to a new release.

Released closed milestones can be found on [GitHub](https://github.com/Icinga/icinga-powershell-iis/milestones?state=closed).

## 1.1.0 (2025-09-02)

[Issue and PRs](https://github.com/Icinga/icinga-powershell-iis/milestone/2)

### Bugfixes

* [#3](https://github.com/Icinga/icinga-powershell-iis/pull/3) Fixes detection if IIS installed by using `W3SVC` as service name instead

## 1.0.0 (2025-01-31)

[Issue and PRs](https://github.com/Icinga/icinga-powershell-iis/milestone/1)
Expand Down
2 changes: 1 addition & 1 deletion provider/public/New-IcingaProviderFilterDataIIS.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function New-IcingaProviderFilterDataIIS()
);

$IISData = New-IcingaProviderObject -Name 'IIS';
$IISService = Get-Service -Name 'IISADMIN' -ErrorAction SilentlyContinue;
$IISService = Get-Service -Name 'W3SVC' -ErrorAction SilentlyContinue;
$IISToolsPresent = Get-Command -Name 'Get-IISConfigSection' -ErrorAction SilentlyContinue;

$IISData.Metadata | Add-Member -MemberType NoteProperty -Name 'IISHost' -Value (Get-IcingaHostname);
Expand Down