A Developer in the ASCOM group posted a driver for the Digital Loggers Switch. It works great with MaximDL 6 and integrates easily into ACP. It greatly simplifies control the switch outlets, no longer is a separate program needed to execute the commands to the switch.

It is now as easy as:

var PWC=new ActiveObject("ASCOM.DigitalLoggers.Switch);
PWC.Connected=true;
var _mountPower PWC.GetSwitch(0);
var _switchName = PWC.GetSwitchName(0);
PWC.SetSwitch(0,true);

Check out the ASCOM switch driver spec for details.

This is the first release, so there may be bugs, but so far it has been working without issues.