Hi.
I have been looking all over the web for how to set values with the use of
WMI, but cannot find much information.

I am using the PUT_ method but it generates the following message "provider
is not capable of the attempted operation"

Can anyone tell me why I receive this message?? Or even better.. How to use
wmi to set values.

My script looks like this:

strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\citrix")
Set colapps = objWMIService.ExecQuery _
("Select * from MetaFrame_Application")
For Each objApp in colApps
'Display the metaframe application im trying to disable
Msgbox objApp.Name
'disable applic|ation
objApp.EnableApp = False
'Save the data
objApp.Put_

Next