cCleaner return code using command line

I have created a batch file that executes ccleaner64.exe /Auto

I want to run other programs after cCleaner finishes but it appears that once cCleaner is started, it exits before it is done working. In other words,

it doesn't wait until it finishes to return to the command line. Based on the command line help, /Auto tells cCleaner to exit when it is done.

You must use the START command for this, for example:

START "CCleaner64" /WAIT "%ProgramFiles%\CCleaner\CCleaner64.exe" /AUTO

Help: https://ss64.com/nt/start.html

Thanks APMichael. I will give this a try.