...
Add key to FileMover config file if it does not exist: <add key="TempFilePath" value="C:\TempFiles" />
start Starting from EIP 9.3.9, the file mover supports GCP, sample config
Code Block <!-- Sample GCP Setting, upload to GCP --> <!-- <add ConfigUniqueIdentifier="57" SourceMoveType="Folder" SourceFolder="C:\\temp\\Src" SourceFileRegexFilter=".+csv" RenameFileOnMove="false" DestinationMoveType="GCP" DestinationBucket="bucketName" CompressionType="Zip" DestinationKeyLocation="C:\\path\\to\\key.json" DestinationFolder="folderName" /> --> <!-- download from GCP --> <!-- <add ConfigUniqueIdentifier="58" SourceMoveType="GCP" SourceFolder="folderName" SourceFileRegexFilter=".+csv" SourceBucket="bucketName" SourceKeyLocation="C:\\path\\to\\key.json" RenameFileOnMove="false" RemoveFromRemote="true" DestinationMoveType="Folder" DestinationFolder="C:\\temp\\Dst" /> -->
Install the GenericFileMoverSettingsCustomCode custom code provided below
Go to admin user and add the FileMoverSettings component
Start FileMover service in services list on APP server
...