Changes a UPS_ID value.
object.Write(
UPS_ID As Integer,
Value As String)
The ID of the APC parameter.
The value to be written.
Integer. If successful, returns the passed value.
This example changes the FIRMWARE_REVISION identifier to Revision 1.1 and reads it.
Const FIRMWARE_REVISION = 4
set APC = CreateObject("UCX:APC.PowerSupply")
Apc.Write(FIRMWARE_REVISION, "Revision 1.1")
Value=Apc.Read(FIRMWARE_REVISION)
print Value