File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,14 @@ documentation before upgrading to a new release.
7
7
8
8
Released closed milestones can be found on [ GitHub] ( https://github.com/Icinga/icinga-powershell-iis/milestones?state=closed ) .
9
9
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
+
10
18
## 1.0.0 (2025-01-31)
11
19
12
20
[ Issue and PRs] ( https://github.com/Icinga/icinga-powershell-iis/milestone/1 )
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ function New-IcingaProviderFilterDataIIS()
12
12
);
13
13
14
14
$IISData = New-IcingaProviderObject - Name ' IIS' ;
15
- $IISService = Get-Service - Name ' IISADMIN ' - ErrorAction SilentlyContinue;
15
+ $IISService = Get-Service - Name ' W3SVC ' - ErrorAction SilentlyContinue;
16
16
$IISToolsPresent = Get-Command - Name ' Get-IISConfigSection' - ErrorAction SilentlyContinue;
17
17
18
18
$IISData.Metadata | Add-Member - MemberType NoteProperty - Name ' IISHost' - Value (Get-IcingaHostname );
You can’t perform that action at this time.
0 commit comments