/
GEODI DCC Reference

GEODI DCC Reference

GEODI has its command language in *.DCC files. DCC commands may start/end a discovery, start a repair, etc. These files can be run with a double click or used in GEODI Workflows.

The following link lists the available DCC commands. You should replace GEODI URL with your own GEODI Server.

 


DCC Referansı

The following link lists all DCC commands in your environment. You should change the GEODI URL.

https://servis2.dece.com.tr//GUI/DeceSystemInfoWebHandler?op=ObjectInfo&Name=GEODI.TestHelper.DCCCommandExecuter, GEODI

 

 

Details

You can Pause and Continue Discovery for all or specific WorkSpaces. The “d” object here is the DCCCommandExecuter type, which you can see in the documentation.

d.PauseAllWorkspace() d.ContinueAllWorkspace() d.PauseWorkspace("<ws-name>") d.ContinueWorkspace("<ws-name>")

 

You may use other objects as well; the context for “c,” for example, gives you a lot of features.

Any exception will prevent the rest of DCC from running. To handle exceptions, use TryRunLine

d.TryRunLine(d.PauseAllWorkspace())

 

You may use c# in any place.

d.ShowMessage(d.GetTotalRAM().ToString())

 

If you need loops or more complicated constructs, start with “/” and write your code as usual

/for (int i = 0; i < 5; i++) { d.ShowMessage(i.ToString()) }

 

Variables

d.SetVariable(..), or d.GetVariable(..) you can set and reuse values.

d.SetVariable("TOKEN";@"abc......") .. d.CallService(string.Concat(".... ",d.GetVariable("TOKEN"),"...") ..

Batch Files

You may run a DCC in a batch file or a BAT file in a DCC.

some batch commands .. start a.dcc ..

 

.. d.ShellExecute(...) ..

 

Errors

If the DCC has a syntax error or is terminated with an error, A txt file named <dccname>-error.txt is created. Always check the error file.

Related content