The command to create a report is createRpt
eg create data source called data source in current folder.
md "new folder"
The command to delete a report is DEL
eg delete report sales
del sales
The command to move a report is MOVE
move <from item> <to folder>
eg move report sale to sales
move sale sales
The command to rename a report is REN
ren <from item> <to item>
eg rename report sale to sales
ren sale sales
The command to change the description is setprops
eg set the report description to be "local sales"
setprops \sales description "local sales"
eg remove the description for the the report
setprops \sales description ""
The command to change the report to be hidden is setprops
eg set the report to be hidden
setprops "\global sales" hidden true
eg set the report to not be hidden
setprops "\global sales" hidden false