mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-12 13:27:23 +00:00
1.3 KiB
1.3 KiB
title, description, ms.assetid, ms.reviewer, manager, ms.author, ms.topic, ms.prod, ms.technology, author, ms.date
title | description | ms.assetid | ms.reviewer | manager | ms.author | ms.topic | ms.prod | ms.technology | author | ms.date |
---|---|---|---|---|---|---|---|---|---|---|
ICSPNode Execute | ICSPNode Execute | 5916e7b7-256d-49fd-82b6-db0547a215ec | dansimp | manikadhiman | article | w10 | windows | manikadhiman | 06/26/2017 |
ICSPNode::Execute
This method runs a task on an internally-transactioned configuration service provider node by passing in the specified user data and returning a result. The exact meaning of Execute and whether it is even supported depends on the purpose of the node. For example, Execute called on a node that represents a file should probably ShellExecute the file, whereas calling Execute on a registry node generally does not make sense.
Syntax
HRESULT Execute([in] VARIANT varUserData);
Parameters
varUserData
Data to pass into the execution.
Return Value
A value of S_OK indicates that the operation was performed successfully on the node. E_NOTIMPL should be returned if this method is not implemented.
Remarks
Externally–transactioned nodes do not support this method.
Requirements
Header: None
Related topics
Create a custom configuration service provider