Need to restart OneDrive if CCleaner closed it during a cleaning cycle.

I recently moved to a new windows 11 PC and this PC does not hide the OneDrive Icon in the system tray whereas my old Windows 10 PC did hide the icon. One thing that I noticed on this new PC is that if I run CCleaner and check the box to clean OneDrive it prompts me indicating that to continue, I most close OneDrive. That works but there's nothing setup in the application to open OneDrive backup. Can you please add that capability to the application to reopen OneDrive if CCleaner closed it? Thanks.

I have automated the closing of OneDrive and loading of CCleaner with a batch, as follows...

echo "Stopping OneDrive"
"C:\Program Files\Microsoft OneDrive\OneDrive.exe" /shutdown
echo "Starting CCleaner"
"C:\Program Files\CCleaner\CCleaner64.exe"
exit

Once I've done my clean, I run the following batch to restart OneDrive, again, silently.

start "OneDrive" /B "C:\Program Files\Microsoft OneDrive\OneDrive.exe" /background
exit

Ensure the paths in the above are correct for your system.

Hope this helps.