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: Oldest
  1. Anonymous
    2025-01-30T08:27:13+00:00

    With routines you are able to switch on and off Bluetooth and automatically pair your devices.

    Smart Unlock should allow you to use trusted devices for Bluetooth Unlock. This is as far as my testing takes me. The first initial unlock is still mandatory.

    If anyone knows anything more I'm all ears. If anyone wants to follow my steps and routines just give a holler.

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2025-02-08T21:10:38+00:00

    To anyone still struggling with this, I found a cleaner (if tedious) setup. It does involve using Samsung routines. First, set up your "Extend Unlock" how you want, like if you're at home or simply connected to your PC.

    On your phone, go to the Galaxy Store and download "Good Lock"

    In "Good Lock," go to "Life Up" and download "Routines +"

    Go to the Play Store and download an app called "NTFY"

    Open "NTFY" and subscribe to a Topic. Essentially, this is just your own custom server name.

    Set up a routine. I called mine "Unlock Device"

    Add an "If" condition for Notification Received with a specific keyword. Set the keyword and specify that it's coming from the "NTFY" app

    Add the following "Then" statements: 1 - Functions>Navigation button action>Home>Done; 2 - Advanced options>Wait before next action>1 second>Done; 3 - Good Lock>Touch macro>Add>OneUI Home>Create a macro where you swipe the screen>Done

    Save your routine

    On your PC, open your notepad app and copy this line: curl -d "Device Unlocked" ntfy.sh/"NTFY Topic"

    "NTFY Topic" is the name of the server you made in the NTFY app on your phone

    Save this as a .bat file

    At this point, you can be done! Anytime you need to unlock your phone to use it from Phone Link, you can click on this .bat file to unlock your phone to the home screen before mirroring. You can also get a little more fancy like I did and download Bat to Exe converter to turn it into an executable that can be pinned to the Start menu and activated with 1 click.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  3. Anonymous
    2025-02-09T11:59:45+00:00

    To anyone still struggling with this, I found a cleaner (if tedious) setup. It does involve using Samsung routines. First, set up your "Extend Unlock" how you want, like if you're at home or simply connected to your PC.

    On your phone, go to the Galaxy Store and download "Good Lock"

    In "Good Lock," go to "Life Up" and download "Routines +"

    Go to the Play Store and download an app called "NTFY"

    Open "NTFY" and subscribe to a Topic. Essentially, this is just your own custom server name.

    Set up a routine. I called mine "Unlock Device"

    Add an "If" condition for Notification Received with a specific keyword. Set the keyword and specify that it's coming from the "NTFY" app

    Add the following "Then" statements: 1 - Functions>Navigation button action>Home>Done; 2 - Advanced options>Wait before next action>1 second>Done; 3 - Good Lock>Touch macro>Add>OneUI Home>Create a macro where you swipe the screen>Done

    Save your routine

    On your PC, open your notepad app and copy this line: curl -d "Device Unlocked" ntfy.sh/"NTFY Topic"

    "NTFY Topic" is the name of the server you made in the NTFY app on your phone

    Save this as a .bat file

    At this point, you can be done! Anytime you need to unlock your phone to use it from Phone Link, you can click on this .bat file to unlock your phone to the home screen before mirroring. You can also get a little more fancy like I did and download Bat to Exe converter to turn it into an executable that can be pinned to the Start menu and activated with 1 click.

    That seems an even cleaner workaround than my solution. I was using Flow and Unison to send notifications to start and close Routines.

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2025-02-09T14:45:04+00:00

    ...

    Set up a routine. I called mine "Unlock Device"

    ...

    On your PC, open your notepad app and copy this line: curl -d "Device Unlocked" ntfy.sh/"NTFY Topic"

    ...

    curl -d "Device Unlocked" ntfy.sh/"NTFY Topic"

    SHOULD BE:

    curl -d "Unlock Device" ntfy.sh/"the-topic-you-subscribed-to-in-the-ntfy-app"

    Was this answer helpful?

    0 comments No comments
  5. Anonymous
    2025-02-23T15:14:41+00:00

    I discovered a new way to access your phone from your PC. This post is very off topic because the solution does not use Microsoft Phone Link in any way. I'll outline what you need to do to make this work, but you'll almost definitely need to do web-searches to accomplish each step.

    The solution involves "mirroring" your phone's display onto your PC using a PC app called SCRCPY. Here is a link where you can download SCRCPY to your PC.

    Before you download and launch SCRCPY, you need to install the Android Debug Bridge (ADB) on your PC and enable wireless Debugging on your phone.

    Here's a link for downloading ADB to your PC.

    To enable wireless Debugging on your phone, you must first enable Developer Options under Settings->System. Do a web-search to find out how to enable Developer Options. Once enabled, do this:

    1. Settings->System->Developer Options->Stay Awake
    2. Settings->System->Developer Options->USB Debugging
    3. Settings->System->Developer Options->Wireless Debugging

    Now that you've got the phone and PC setup with ADB, SCRCPY, and Wireless Debugging, you need to use ADB to connect your PC to your phone. The ADB download link has an extensive set of instructions about how to accomplish the connection. You have to read that and make it happen.

    Also, you'll need the IP address of your phone. I forced my home network router to always assign my phone to IP address 192.168.1.99

    I created a .bat file on my PC that makes the PC to phone ADB connection and launches SCRCPY. Here's what's in the .bat file I launch from Windows Explorer on my PC:

    adb kill-serveradb start-server

    REM Add your device's IP address on the line below if you want to auto-connect when you launch this fileset ip="192.168.1.99"if %ip% EQU "" set /p ip="Enter Android Device IP Address (eg. 192.168.1.43): "echo.echo Connecting adb over TCP/IP on IP: %ip%...adb connect %ip%:5555

    scrcpy

    Here's what pops up on my PC when I run the .bat file:

    Image

    Was this answer helpful?

    0 comments No comments