如何通过 PowerShell 启用 Windows Mobile 热点?

如何通过 PowerShell 启用 Windows Mobile 热点?

我正在寻求帮助,通过 PowerShell 在 Windows 11 上启用移动热点功能。我的 Wi-Fi 适配器不支持命令hostednetwork使用的传统功能netsh wlan,因为我的系统依赖 Wi-Fi Direct 来提供移动热点功能。

我目前正在使用PowerShell 7.4.1,但一直找不到能够控制移动热点功能的 cmdlet。我指的移动热点是可以手动切换的或者离开在 Windows 设置中。

移动热点切换

有没有办法使用 PowerShell 启用或禁用 Windows 上的移动热点功能?

答案1

在 github gist 中可以找到用于启用/禁用移动热点的 PowerShell cmdlet datio/启用-wifi.ps1

该脚本定义了一个 PowerShell 函数,并在其末尾包含两个命令。为了安全起见,脚本如下所示:

# https://stackoverflow.com/questions/45833873/enable-win10-inbuild-hotspot-by-cmd-batch-powershell/60444585#answer-60444585
[Windows.System.UserProfile.LockScreen,Windows.System.UserProfile,ContentType=WindowsRuntime] | Out-Null

Add-Type -AssemblyName System.Runtime.WindowsRuntime
$asTaskGeneric = ([System.WindowsRuntimeSystemExtensions].GetMethods() | ? { $_.Name -eq 'AsTask' -and $_.GetParameters().Count -eq 1 -and $_.GetParameters()[0].ParameterType.Name -eq 'IAsyncOperation`1' })[0]
Function Await($WinRtTask, $ResultType) {
    $asTask = $asTaskGeneric.MakeGenericMethod($ResultType)
    $netTask = $asTask.Invoke($null, @($WinRtTask))
    $netTask.Wait(-1) | Out-Null
    $netTask.Result
}

# https://stackoverflow.com/a/55563418
$connectionProfile = [Windows.Networking.Connectivity.NetworkInformation,Windows.Networking.Connectivity,ContentType=WindowsRuntime]::GetInternetConnectionProfile()
$tetheringManager = [Windows.Networking.NetworkOperators.NetworkOperatorTetheringManager,Windows.Networking.NetworkOperators,ContentType=WindowsRuntime]::CreateFromConnectionProfile($connectionProfile)

# Be sure to include Ben N.'s await for IAsyncOperation:
# https://superuser.com/questions/1341997/using-a-uwp-api-namespace-in-powershell

# 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])

相关内容