| 
                   User log files are stored for 7 days and then 
                    automatically removed. If you want to remove old log files 
                    manually, follow the instructions below: 
                  1. Go to the HSphere\scripts\ directory. 
                    In the conf.inc file find the directory where WWW 
                    and FTP logs are stored. 
                  // path to directory where websites logs are located 
                    logWebPath = "d:\\HSlogfiles\\www" 
                  // path to directory where ftpsites logs are located 
                    logFtpPath = "d:\\HSlogfiles\\ftp" 
                  2. Go to the respective directory (cd d:\hslogfiles\www) 
                    Here you will find directories containing web log files for 
                    each domain 
                    e.g.: W3SVC1, W3SVC2, W3SVC3 and 
                    so on. 
                    or 
                    directories containing ftp log files for each domain 
                    e.g.: MSFTP1, MSFTP2, MSFTP3 and so on. 
                  3. Enter "del /s /q <mask>" command 
                    in the command line where <mask> is the mask for the 
                    files to be removed. 
                    * You can use a wildcard in the mask. 
                  Names of the log files have the following appearance: 
                  exyymmddhh.log or just exyymmddhh 
                     
                    where 
                     
                    ex - the essential part of the name 
                    yy - two-digit year value 
                    mm - two-digit month value 
                    dd - two-digit day value 
                    hh - two-digit hour value 
                  Examples of how to use the del command: 
                  
                  ? - Any single character 
                    * - Zero or more characters  
                   
                                 |