Excel remove document recovery pane?

1

I tried a few registery tweaks but that doesnt seem to work. I use a batch script that switches between 2 excel sheets, but it forces closure of the excelsheet. This makes it so the Document recovery panel shows up.

Is there a way to remove the Document recovery panel in excel?

enter image description here

For anyone interested this is the batch script.

@ECHO OFF
:TOP
START excel.exe /r "\test1.xlsx"
ping 127.0.0.1 -n 20
TASKKILL /F /IM excel.exe
START excel.exe /r "\test2.xlsx"
ping 127.0.0.1 -n 20
TASKKILL /F /IM excel.exe
GOTO TOP

Dylan Rz

Posted 2016-09-16T14:01:08.947

Reputation: 658

Answers

0

This all depends on what version of Excel you are using.

In Excel 2016 goto File then Options. Under Save there is a spot turn off AutoRecover "Save AutoRecover information every 10 minutes". If you uncheck that it will no longer function like you want. Or you can go further down and turn it off for just that document. enter image description here

Unfundednut

Posted 2016-09-16T14:01:08.947

Reputation: 6 650

I tried this by disabling pretty much everything but it still shows the autorecover panel. – Dylan Rz – 2016-09-19T06:18:12.110