mirror of
https://github.com/PowerShell/PSDscResources
synced 2026-06-21 13:45:29 +00:00
16 lines
299 B
PowerShell
16 lines
299 B
PowerShell
Configuration MSFT_ServiceResource_Remove_Config {
|
|
param
|
|
(
|
|
$ServiceName
|
|
)
|
|
|
|
Import-DscResource -ModuleName PSDscResources
|
|
|
|
node localhost {
|
|
Service RemoveService {
|
|
Name = $ServiceName
|
|
Ensure = 'Absent'
|
|
}
|
|
}
|
|
}
|