# Enable Managed Storage service Source: [https://docs.qualcomm.com/doc/80-41102-1/topic/enable_managed_storage_service.html](https://docs.qualcomm.com/doc/80-41102-1/topic/enable_managed_storage_service.html) To enable the TelAF Managed Storage service, run the following command to compile the TelAF simulation image under the TelAF root directory. # In Dev PC Host make simulac TELAF_SIMULATION_ENABLE_MNGD_STRG = yCopy to clipboard # In Dev Container cat >> simulation/.simulation.build << EOF export TELAF_SIMULATION_ENABLE_MNGD_STRG = y EOF echo "make simula-c" > simulation/workstation/.simula.dev.action.sh make simula-xCopy to clipboard #Steps to add json file from host to container #from host copy the configuration ex. configuration1.json file to simulation_env/telaf/simulation/workstation # inside container mkdir -p /data/ManagedServices/MSS/update/ cp /root/simulation/configuration1.json /data/ManagedServices/MSS/update/ Copy to clipboard #To build and install tafPiCfgStor.so plugin for simulation cd telaf # In Host source set_af_env.sh simulation bin/legs cd apps/sample/plugin/configStorage mkcomp -t simulation \ ${MKTOOLS_X_C_FLAGS} \ -X "-O2" -C "-O2" \ -X "-fPIC" \ -X "-shared" \ -X "-std=c++11" \ -o simulation/tafPiCfgStor.so \ . # from host copy plugin to simulation_env/telaf/simulation/workstation #Inside container cp /root/simulation/tafPiCfgStor.so /tmp/legato/devManager/drivers/ tafmodule install /tmp/legato/devManager/drivers/tafPiCfgStor.so app restart tafMngdStorageSvcCopy to clipboard **Parent Topic:** [Features supported by simulation](https://docs.qualcomm.com/doc/80-41102-1/topic/features-supported-by-simulation.html) Last Published: Aug 06, 2026 [Previous Topic Enable TelAF RPC](https://docs.qualcomm.com/bundle/publicresource/80-41102-1/topics/enable-telaf-rpc.md) [Next Topic Enable Diagnostic services](https://docs.qualcomm.com/bundle/publicresource/80-41102-1/topics/enable-diagnostic-services.md)