mirror of
https://github.com/PowerShell/PSDscResources
synced 2026-06-21 13:45:29 +00:00
28 lines
755 B
PowerShell
28 lines
755 B
PowerShell
Configuration MSFT_ServiceResource_Edit_Config {
|
|
param
|
|
(
|
|
$ServiceName,
|
|
$ServicePath,
|
|
$ServiceDisplayName,
|
|
$ServiceDescription,
|
|
$ServiceDependsOn
|
|
)
|
|
|
|
Import-DscResource -ModuleName PSDscResources
|
|
|
|
node localhost {
|
|
Service EditService {
|
|
Name = $ServiceName
|
|
Ensure = 'Present'
|
|
Path = $ServicePath
|
|
StartupType = 'Manual'
|
|
BuiltInAccount = 'LocalService'
|
|
DesktopInteract = $false
|
|
State = 'Stopped'
|
|
DisplayName = $ServiceDisplayName
|
|
Description = $ServiceDescription
|
|
Dependencies = $ServiceDependsOn
|
|
}
|
|
}
|
|
}
|