ここで確認できるサービスの回復タブのプロパティについて:
次のプロパティ値を取得する API はありますか。
- 値の例の最初の失敗: 「何もしない」
- 二度目の失敗
- その後の失敗
- 失敗回数をリセット
私は PowerShell でこれを行う方法を好みますが、他のオプションについても知りたいです。
ここで確認できるサービスの回復タブのプロパティについて:
次のプロパティ値を取得する API はありますか。
私は PowerShell でこれを行う方法を好みますが、他のオプションについても知りたいです。
私は PowerShell に詳しくありませんが、利用可能な Win32 API があります: QueryServiceConfig2()。dwInfoLevel
パラメーターをに設定し、構造体を受け取るのに十分な大きさSERVICE_CONFIG_FAILURE_ACTIONS
のバッファーへのポインターをパラメーターに渡します。lpBuffer
SERVICE_FAILURE_ACTIONS
One needs to modify the services reg key, under
HKLM\System\CurrentControlSet\services\<service name>\
Adding a value of type binary
with the name FailureActions
. I don't know how it's structured you'd have to play around with that, but as it relates to powershell it would simply be grabbing to real name of the service (maybe using get-service
if all you have is the display name), and navigating to that regkey and creating a new value, for example:
PS C:\Users\*\Desktop> $ByteArray = 0,0,0,144,10,23,253,33
PS C:\Users\*\Desktop> Set-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\services\AdobeARMservice -Name FailureActions -Type Binary -Value $ByteArray -Force
PS C:\Users\*\Desktop> Get-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\services\AdobeARMservice -Name FailureActions
FailureActions : {0, 0, 0, 144...}
PSPath : Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\AdobeARMservice
PSParentPath : Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services
PSChildName : AdobeARMservice
PSDrive : HKLM
PSProvider : Microsoft.PowerShell.Core\Registry
Adding a byte[ ], but like I mentioned you'd have to either reverse engineer the meaning of the array, or just copy an existing one or something similar.