Initializing Mobile Hotspot using Bluetooth

Dogukan Yazar 1 Reputation point
2021-10-15T09:47:37.797+00:00

140777-untitled.png

Hi,

I'm looking for a powershell command to enable Mobile Hotspot over Bluetooth on Windows 10.

I can enabled Mobile Hotspot over WiFi but couldn't find a way to do this over Bluetooth.

Do you have any idea?

Thank you.

Windows 10 Network
Windows 10 Network
Windows 10: A Microsoft operating system that runs on personal computers and tablets.Network: A group of devices that communicate either wirelessly or via a physical connection.
2,266 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Limitless Technology 39,336 Reputation points
    2021-10-20T15:01:22.697+00:00

    Hello DogukanYazar-8323,

    You can use a Batch file to do this, I have seen this code and this might helpful for you

    Check whether Mobile Hotspot is enabled

    $tetheringManager.TetheringOperationalState

    Start Mobile Hotspot

    Await ($tetheringManager.StartTetheringAsync()) ([Windows.Networking.NetworkOperators.NetworkOperatorTetheringOperationResult])

    Stop Mobile Hotspot

    Await ($tetheringManager.StopTetheringAsync()) ([Windows.Networking.NetworkOperators.NetworkOperatorTetheringOperationResult])


    --If the reply is helpful, please Upvote and Accept it as an answer--

    0 comments No comments