I currently have a custom config application that I install with a batch script to set the ConfigurationFolder to a network share drive that my worldwide users can access if they indeed do have that drive mapped. But since everyone is working remotely, this has become an issue. This runs in an install batch file, so users always have latest version
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\ESRI\ArcGISPro\Settings" /v "ConfigurationFolder" /t REG_SZ /d "V:\NetworkDriveExample\NetworkDriveExample" /f
echo Configuration Registry Path Set
I think this works most of the time, but I would like to move this to a URL that our users can access instead. That URL would be accessable on our network and not make me do this step. Alternatively, I would also like users to be able to manually reload the .proconfigx file from an "About" page if their version is out of date.