Show/Hide Toolbars

Reporting Services CMD

Create Folder

 

The command to create a folder is MD

 

eg create folder called new folder in current folder.

 

 md "new folder"

 

 

Delete Folder

 

The command to delete a folder is RD

 

 eg remove the sales folder

 

 rd sales

 

 

Move Folder

 

 

The command to move a folder is REN

 

 

 ren <from folder> <to folder>

 

 eg rename folder sale to sales

 

         ren sale sales

 

 

Rename Folder

 

The command to rename a folder is REN

 

 

 ren <from folder> <to folder>

 

 eg rename folder sale to sales

 

         ren sale sales

 

 

Change Folder Description

 

The command to change the description is setprops

 

 eg set the sales folder description to be "local sales"

 

setprops \sales description "local sales"

 

 

 eg remove the description for the the sales folder  

 

setprops \sales description ""

 

 

Make Folder Hidden

 

The command to change the folder to be hidden is setprops

 

 eg set the sales folder to be hidden

 

setprops \sales hidden true

 

 

 eg set the sales folder to not be hidden

 

setprops \sales hidden false