To work around the issue, you can use the Fix it solution or any of the methods under Let me fix it myself:
Fix it for me
To fix this problem automatically, click the Fix this problem link. Then, click Run in the File Download dialog box and follow the steps in this wizard.
Fix this problem
Microsoft Fix it 50567
Note this automatic fix works for all languages, however for some languages the wizard text may be in English.
Let me fix it myself
To fix this problem yourself, choose one of the following solutions:
- Mark two the two files read only prior to running scanstate.exe
- "%AppData%\Microsoft\Windows\SendTo\Desktop (create shortcut).DeskLink"
- "%AppData%\Microsoft\Windows\SendTo\Mail Recipient.MAPIMail"
OR
- After scanstate, copy above two files from default profile path located in "%SystemDrive%\Users\Default\AppData\Roaming\Microsoft\Windows\SendTo"
OR
- After scanstate, recreate the two files by running the following:
"echo desktop > "%AppData%\Microsoft\Windows\SendTo\Desktop (create shortcut).DeskLink""
"echo mail > "%AppData%\Microsoft\Windows\SendTo\Mail Recipient.MAPIMail""
OR
- Run a script with following content:
if not exist "%appdata%\Microsoft\Windows\SendTo\Desktop (create shortcut).DeskLink" (
echo Desktop > "%appdata%\Microsoft\Windows\SendTo\Desktop (create shortcut).DeskLink")
if not exist "%appdata%\Microsoft\Windows\SendTo\Mail Recipient.MAPIMail" (
echo Mail > "%appdata%\Microsoft\Windows\SendTo\Mail Recipient.MAPIMail"
)