Powershell 单击即可切换蓝牙

问题描述 投票:0回答:1

我做了我的研究,我在另一个问题上得到了这个。

我正在使用此 powershell 命令来切换蓝牙:

蓝牙.ps1

[CmdletBinding()] Param (
    [Parameter(Mandatory=$true)][ValidateSet('Off', 'On')][string]$BluetoothStatus
)
If ((Get-Service bthserv).Status -eq 'Stopped') { Start-Service bthserv }
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
}
[Windows.Devices.Radios.Radio,Windows.System.Devices,ContentType=WindowsRuntime] | Out-Null
[Windows.Devices.Radios.RadioAccessStatus,Windows.System.Devices,ContentType=WindowsRuntime] | Out-Null
Await ([Windows.Devices.Radios.Radio]::RequestAccessAsync()) ([Windows.Devices.Radios.RadioAccessStatus]) | Out-Null
$radios = Await ([Windows.Devices.Radios.Radio]::GetRadiosAsync()) ([System.Collections.Generic.IReadOnlyList[Windows.Devices.Radios.Radio]])
$bluetooth = $radios | ? { $_.Kind -eq 'Bluetooth' }
[Windows.Devices.Radios.RadioState,Windows.System.Devices,ContentType=WindowsRuntime] | Out-Null
Await ($bluetooth.SetStateAsync($BluetoothStatus)) ([Windows.Devices.Radios.RadioAccessStatus]) | Out-Null

它有效,但这不是我喜欢做的。 我继续研究,发现这个文件可以检查蓝牙状态,然后切换它。

切换蓝牙.bat

@echo off
FOR /F "skip=2 tokens=2,*" %%A IN ('reg.exe query "HKLM\SYSTEM\CurrentControlSet\Services\bthserv\Parameters\BluetoothControlPanelTasks" /v "state"') DO set "VAR=%%B"

if %VAR%==0x1 (goto ON)

Powershell.exe -executionpolicy Bypass -windowstyle hidden -File ".\Bluetooth.ps1" -BluetoothStatus On
goto end

:ON
Powershell.exe -executionpolicy Bypass -windowstyle hidden -File ".\Bluetooth.ps1" -BluetoothStatus Off

:end

我创建了一个快捷方式并在桌面上使用它。 有什么办法可以将其固定到 Windows 10 任务栏或其他方式在 ps1 文件中执行所有操作吗?

windows powershell batch-file
1个回答
1
投票

您无法直接将 .bat 文件固定到任务栏,但您可以固定 .exe 文件(如 cmd.exe 本身),因此: 右键->新建->快捷方式->粘贴以下代码:

cmd /c start /min cmd /c cd /d "c:\example path\"^& call bluetooth.bat

然后只需将新创建的快捷方式拖到任务栏,更改图标等..

© www.soinside.com 2019 - 2024. All rights reserved.