New issue with unlocking my Samsung phone via phone link app on PC

Anonymous
2022-12-22T02:19:26+00:00

I've been using the "Phone Link" app on my computer and mobile and this has let me mirror my phone on my computer and enabled me to unlock the phone screen from my PC. However I'm no longer able to unlock from the PC and it is showing the following message: "Unlock on your phone. To keep your credential private and secure, we need you to unlock your phone to continue." Can anyone tell me how to resolve this issue?

Windows for home | Windows 11 | Connect Phone and PC

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

166 answers

Sort by: Most helpful
  1. Anonymous
    2024-01-17T14:55:04+00:00

    Ok, I found a very convenient 1-(double)click workaround for me (S22 Ultra, Android 14): unlock the phone remotely with a batch file! Afterwards screen sharing works normally with Phone Link or any other remote software.

    It's at the edge of being viable for normies, but it's not utterly complicated once you understood the required tools. It's simply using ADB to send the PIN as key inputs to the phone, which unlocks it: "adb shell input text XXXX" (where XXXX is your PIN). By far the easiest way is to have the phone connected over USB - you just have to enable USB debugging in the developer options once and then you can send ADB commands all day long.

    It's more complicated to do it over Wifi. All modern phones support Wifi debugging but it has to be enabled once every reboot. Modern Samsung phones also have a convenient quick-settings button for it. Once it's running, you have to connect once from your PC to pair it ("adb connect IP:PORT") and then you can make a simple batch script like:

    @echo offpushd "Z:\platform-tools"adb connect IP:PORTadb shell input text XXXXadb disconnectpopd

    If your phone requires pressing OK after entering the PIN, add "adb shell input keyevent 66". For patterns or passwords the input sequence is different, you have to do your own research..

    A big inconvenience on modern Android (11+) is that the port number for ADB over Wifi randomly changes each time you turn it on, so you'd have to modify your batch file each time. At least the IP address can be fixed if you give it a fixed IP in your router settings (or a DNS name). To avoid that, you have to enable legacy Wifi ADB which uses a fixed port (5555), and the easiest way is to run the LADB app on the phone once per reboot with a startup command to enable the legacy mode (see here for more details). The rabbit hole is probably too deep for nearly everyone, but it can be done...

    Was this answer helpful?

    2 people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2023-09-26T17:31:58+00:00

    Was this answer helpful?

    2 people found this answer helpful.
    0 comments No comments
  3. Anonymous
    2023-01-30T09:22:06+00:00

    Solution:

    1. Go to your phone's "Settings Menu".
    2. Open "Apps".
    3. Find and click on "Link To Windows".
    4. Click on "Uninstall Updates".

    They'll warn you about stuff, do it anyway. This will unpair your phone from Windows, but no worries.

    1. Remove your phone from your Windows Phone Link app.
    2. Open "Link To Windows" on your phone, and reconnect it to "Phone Link" on Windows.
    3. Open "Play Store", search for "Link To Windows", select "Options", and disable Auto-Update.

    That's pretty much it.

    Was this answer helpful?

    2 people found this answer helpful.
    0 comments No comments
  4. Anonymous
    2023-01-04T00:48:58+00:00

    was also trying to execute solution:

    "Another thing, if you are sick of granting the permission to cast the screen to PC every now and then, which will make the whole "Phone Link" useless to me since sometimes the phone is not within arm reach or it is charging in different room. I used this ADB command to grant permission and stop the annoying dialog asking for permission. (Note, Google removed the option to permanently remember to trust the computer for casting the screen, I believe it started after Android 10 or 11). Anyway, the ADB command is:

    adb shell appops set com.microsoft.appmanager PROJECT_MEDIA allow"

    but couldn't get the adb to connect to the s22.

    will try again later.

    props to @Thaer Razeq for his great help on this!

    Was this answer helpful?

    2 people found this answer helpful.
    0 comments No comments
  5. Anonymous
    2023-01-04T00:45:02+00:00

    i did nothing other than, on PC, download:

    https://phone-link.en.uptodown.com/windows/download/86620888

    dblClicked on the downloaded file, accepted that it was older than current install, and restarted phoneLink.

    everything resumed working as I wanted it to, and that was with both PCs that i use to access the samsung galaxy s22 ultra.

    Was this answer helpful?

    2 people found this answer helpful.
    0 comments No comments