Szolgáltatás létrehozása
Description
Ez a példa bemutatja, hogyan használhatja az Service
erőforrást egy szolgáltatás meglétének és futásának ellenőrzésére.
With Ensure set to Present
, Name set to Service1
, and Path set to C:\FilePath\MyServiceExecutable.exe
, the resource creates Service1
if it doesn't exist with MyServiceExecutable.exe
as the executable file and starts it.
Ha Service1
létezik, de nem fut, az erőforrás elindítja.
A Invoke-DscResource
Ez a szkript bemutatja, hogyan használhatja az Service
erőforrást a Invoke-DscResource
parancsmaggal annak biztosítására, hogy a Service1
szolgáltatás végrehajthatóként létezik MyServiceExecutable.exe
és fut.
[CmdletBinding()]
param()
begin {
$SharedParameters = @{
Name = 'Service'
ModuleName = 'PSDscResource'
Properties = @{
Name = 'Service1'
Ensure = 'Present'
Path = 'C:\FilePath\MyServiceExecutable.exe'
}
}
$NonGetProperties = @(
'Ensure'
'Path'
)
}
process {
$TestResult = Invoke-DscResource -Method Test @SharedParameters
if ($TestResult.InDesiredState) {
$QueryParameters = $SharedParameters.Clone()
foreach ($Property in $NonGetProperties) {
$QueryParameters.Properties.Remove($Property)
}
Invoke-DscResource -Method Get @QueryParameters
} else {
Invoke-DscResource -Method Set @SharedParameters
}
}
Konfigurációval
Ez a kódrészlet bemutatja, hogyan definiálhat egy Configuration
erőforrásblokkot Service
annak érdekében, hogy a Service1
szolgáltatás végrehajthatóként és futva legyen MyServiceExecutable.exe
.
Configuration Create {
Import-DscResource -ModuleName 'PSDscResources'
Node localhost {
Service ExampleService {
Name = 'Service1'
Ensure = 'Present'
Path = 'C:\FilePath\MyServiceExecutable.exe'
}
}
}