Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Updates an existing instance in the server represented by the session.
Namespace: Microsoft.Management.Infrastructure
Assembly: Microsoft.Management.Infrastructure (in Microsoft.Management.Infrastructure.dll)
Syntax
public CimInstance ModifyInstance(
string namespaceName,
CimInstance instance
)
public:
CimInstance^ ModifyInstance(
String^ namespaceName,
CimInstance^ instance
)
member ModifyInstance :
namespaceName:string *
instance:CimInstance -> CimInstance
Public Function ModifyInstance (
namespaceName As String,
instance As CimInstance
) As CimInstance
Parameters
namespaceName
Type: System.StringA null-terminated string that contains the optional namespace name to carry out the operation. If none is specified, the server will pick a default. The namespace cannot include a computer name. It can only be in the form of a namespace name separated by a slash mark character (/). For example, the following would be a valid namespaceName value: root/cimv2.
instance
Type: Microsoft.Management.Infrastructure.CimInstanceA CimInstance object that represents the class name and key of the instance to be modified on the server.
Return Value
Type: Microsoft.Management.Infrastructure.CimInstance
The modified CimInstance object.
See Also
ModifyInstance Overload
CimSession Class
Microsoft.Management.Infrastructure Namespace
Return to top