RSTUDIO_DISABLE_WHATS_NEW not working RStudio Desktop 2026.05.1+255

Hi,

In a Horizon VDI non-persistent Windows 10 vm I can't stop the Whats New page from displaying each time a new virtual machine is created and Rstudio first start.

I have an R/R -.5.3/etc/Renviron.site file and have there put:

RSTUDIO_DISABLE_WHATS_NEW=1

In the same file I have also:

RSTUDIO_DISABLE_POSIT_ASSISTANT=1
RSTUDIO_DISABLE_CHECK_FOR_UPDATES=1

Both those are honored but not the whats new page. Doesn't matter if I put it in user .Renviron file, same result. The only way to stop it seems to be a file called whats-new-state.json that is created in the users roaming profile after first start, however we start it over and over again as first start.

I have checked How to disable Post assistant during installation of RStudio 2026.04.0 and Document how to disable/hide Posit Assistant and the What's New dialog · Issue #17518 · rstudio/rstudio · GitHub but I can't solve the problem.

Any clues and help appreciated.

Best Regards,
Gunnar Petersson

1 Like

Hi,

Still haven't got the environment variable RSTUDIO_DISABLE_WHATS_NEW=1 to work, however I have found a workaround.

  • Start and close RStudio
  • Copy %Userprofile"/Appdata/Roaming/RStudio/whats-new-state.json to c:\program files\rstudio
  • Create a GPO that copies c:\program files\rstudio\whats-new-state.json to %Userprofile"/Appdata/Roaming/RStudio each time a new session is started
  • Problem solved, No whats new page

Regards,

Gunnar

1 Like

Hi, I've been out so sorry for delayed response.

The RSTUDIO_DISABLE_WHATS_NEW env var can't be set in ~.Renviron, that gets processed too late in the application startup. Showing "What's New" is done entirely in the Electron code that runs before the R session itself has been created, and it's the R session that processes .Renviron.

So, this particular variable must already be set before starting RStudio, e.g. in either user or system environment variables.

1 Like

Also, I just opened a feature request (to myself) to add a user preference for this so there's a more obvious way to turn this off. Too late to get into the 2026.07 release, but will target 2026.08.

1 Like

Hi,

Thank you for your answer.

For now I have a workaround and good to be fixed in a later release.

Regards,

Gunnar

1 Like