forked from dsccommunity/xPSDesiredStateConfiguration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xService_RemoveServiceConfig.ps1
56 lines (48 loc) · 1.33 KB
/
xService_RemoveServiceConfig.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<#PSScriptInfo
.VERSION 1.0.1
.GUID 6e48f4f6-5b67-4868-ba72-9732dc40ee98
.AUTHOR Microsoft Corporation
.COMPANYNAME Microsoft Corporation
.COPYRIGHT
.TAGS DSCConfiguration
.LICENSEURI https://github.com/dsccommunity/xPSDesiredStateConfiguration/blob/main/LICENSE
.PROJECTURI https://github.com/dsccommunity/xPSDesiredStateConfiguration
.ICONURI
.EXTERNALMODULEDEPENDENCIES
.REQUIREDSCRIPTS
.EXTERNALSCRIPTDEPENDENCIES
.RELEASENOTES First version.
.PRIVATEDATA 2016-Datacenter,2016-Datacenter-Server-Core
#>
#Requires -module 'xPSDesiredStateConfiguration'
<#
.SYNOPSIS
Configuration that stops and then removes a Windows service.
.DESCRIPTION
Configuration that stops and then removes a Windows service.
.PARAMETER Name
The name of the Windows service to be removed.
.EXAMPLE
xService_RemoveServiceConfig -Name 'Service1'
Compiles a configuration that stops and then removes the service with the
name Service1.
#>
Configuration xService_RemoveServiceConfig
{
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[System.String]
$Name
)
Import-DscResource -ModuleName 'xPSDesiredStateConfiguration'
Node localhost
{
xService 'RemoveService'
{
Name = $Name
Ensure = 'Absent'
}
}
}