Hi there! My name is David. It’s a pleasure to help you today.
Thank you for posting your question. Phone Link cannot be uninstalled from Installed Apps, because it is an integrated application of the operating system.
However, if you want to remove it, you can do so from PowerShell:
Go to Start, type: powershell > run it as administrator > copy and paste the following:
Get-AppxPackage Microsoft.YourPhone -AllUsers | Remove-AppxPackage
Then press the Enter key. Phone Link should no longer be on your system.
Note: Keep in mind that if you uninstall the application, you will not be able to sync your phone with your PC (view notifications, send SMS, make calls from the PC).
If you want to reinstall Phone Link, download it from the Microsoft Store:
https://apps.microsoft.com/detail/9nmpj99vjbwv?hl=en-us&gl=EE
Or open PowerShell as administrator copy and paste the following:
Get-AppxPackage Microsoft.YourPhone -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Let me know if the shared information has been helpful. Regards.