This message was deleted.
# microsoft-fslogix
s
This message was deleted.
👍 1
d
do you mind sharing the script or details
s
Just simple batch files to xcopy the contents. This runs at logoff: REM Backup auth token to resolve issue with FSLogix 2210 if not exist %USERPROFILE%\backup md %USERPROFILE%\backup xcopy %USERPROFILE%\AppData\Local\Microsoft\TokenBroker %USERPROFILE%\backup\TokenBroker /c /e /h /i /q /s /y xcopy %USERPROFILE%\AppData\Local\Packages\Microsoft.AAD.BrokerPlugin_cw5n1h2txyewy %USERPROFILE%\backup\Microsoft.AAD.BrokerPlugin_cw5n1h2txyewy /c /e /h /i /q /s /y xcopy %USERPROFILE%\AppData\Local\Packages\Microsoft.Windows.CloudExperienceHost_cw5n1h2txyewy %USERPROFILE%\backup\Microsoft.Windows.CloudExperienceHost_cw5n1h2txyewy /c /e /h /i /q /s /y This runs at logon: REM Restore auth token to resolve issue with FSLogix 2210 if not exist %USERPROFILE%\backup goto :eof xcopy %USERPROFILE%\backup\TokenBroker %USERPROFILE%\AppData\Local\Microsoft\TokenBroker /c /e /h /i /q /s /y xcopy %USERPROFILE%\backup\Microsoft.AAD.BrokerPlugin_cw5n1h2txyewy %USERPROFILE%\AppData\Local\Packages\Microsoft.AAD.BrokerPlugin_cw5n1h2txyewy /c /e /h /i /q /s /y xcopy %USERPROFILE%\backup\Microsoft.Windows.CloudExperienceHost_cw5n1h2txyewy %USERPROFILE%\AppData\Local\Packages\Microsoft.Windows.CloudExperienceHost_cw5n1h2txyewy /c /e /h /i /q /s /y
d
ty
@Scott Knights do you use persistent or non persistent machines?
s
In this case, they are persistent. Most other places I use MCS.