Skip to content

Commit 9fe4b7f

Browse files
Fixes IIS installation detection by using W3SVC as service name
* Correct monitored service name: IISADMIN -> W3SVC * Add changelog entry for version 1.1.0 --------- Co-authored-by: Lord Hepipud <[email protected]>
1 parent 6e6a587 commit 9fe4b7f

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

doc/31-Changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ documentation before upgrading to a new release.
77

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

10+
## 1.1.0 (2025-09-02)
11+
12+
[Issue and PRs](https://github.com/Icinga/icinga-powershell-iis/milestone/2)
13+
14+
### Bugfixes
15+
16+
* [#3](https://github.com/Icinga/icinga-powershell-iis/pull/3) Fixes detection if IIS installed by using `W3SVC` as service name instead
17+
1018
## 1.0.0 (2025-01-31)
1119

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

provider/public/New-IcingaProviderFilterDataIIS.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function New-IcingaProviderFilterDataIIS()
1212
);
1313

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

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

0 commit comments

Comments
 (0)