Cross-Device Resume – Hidden Productivity Feature
“resume work Windows 11 phone”, “cross device resume not showing”
his feature allows resuming mobile work on PC but is buried in settings and poorly documented .
powershell
Copy
# Enable Cross-Device Resume
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Resume" /v Enabled /t REG_DWORD /d 1 /f
# Configure supported apps (Word, Excel, PowerPoint, OneNote, PDF)
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Resume\AppList" /v "Applications" /t REG_MULTI_SZ /d "WINWORD.EXE\0EXCEL.EXE\0POWERPNT.EXE\0ONENOTE.EXE\0Acrobat.exe" /f
