停止进程
说明
此示例演示如何使用 WindowsProcess
资源来确保进程未运行。
将 “确保 设置为 Absent
”、“ 路径 设置为 C:\Windows\System32\gpresult.exe
”和 “参数 ”设置为空字符串时,资源将停止任何正在运行 gpresult.exe
的进程。
使用 Invoke-DscResource
此脚本演示如何将 WindowsProcess
资源与 cmdlet 配合使用 Invoke-DscResource
,以确保 gpresult.exe
未运行。
[CmdletBinding()]
param()
begin {
$SharedParameters = @{
Name = 'WindowsFeatureSet'
ModuleName = 'PSDscResource'
Properties = @{
Path = 'C:\Windows\System32\gpresult.exe'
Arguments = ''
Ensure = 'Absent'
}
}
$NonGetProperties = @(
'Ensure'
)
}
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
}
}
使用配置
此代码片段演示如何使用WindowsProcess
资源块定义,Configuration
以确保gpresult.exe
未运行。
Configuration Stop {
Import-DSCResource -ModuleName 'PSDscResources'
Node localhost {
WindowsProcess ExampleWindowsProcess {
Path = 'C:\Windows\System32\gpresult.exe'
Arguments = ''
Ensure = 'Absent'
}
}
}