Tomamos como ejemplo el servicio Themes de Windows XP.
1. Consultar si el servicio Themes se esta ejecutando:
oShell = CREATEOBJECT("Shell.Application") ? oShell.IsServiceRunning("Themes") oShell = Null2. Consultar si se puede iniciar o detener el servicio Themes:
oShell = CREATEOBJECT("Shell.Application") ? oShell.CanStartStopService("Themes") oShell = Null3. Iniciar el servicio Themes:
oShell = CREATEOBJECT("Shell.Application") ? oShell.ServiceStart("Themes", .F.) oShell = Null4. Detener el servicio Themes:
oShell = CREATEOBJECT("Shell.Application") ? oShell.ServiceStop("Themes", .T.) oShell = Null
Luis María Guayán
No me funciona con Windows 12, alguien sabe porque?
ResponderBorrar