Add mhotspot.ps1

This commit is contained in:
Santiago Lo Coco 2024-10-13 18:09:43 +02:00
commit 2c379a9fb6
1 changed files with 32 additions and 0 deletions

32
mhotspot.ps1 Normal file
View File

@ -0,0 +1,32 @@
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
}
$connectionProfile = [
Windows.Networking.Connectivity.NetworkInformation, Windows.Networking.Connectivity, ContentType = WindowsRuntime `
]::GetInternetConnectionProfile()
$tetheringManager = [
Windows.Networking.NetworkOperators.NetworkOperatorTetheringManager, Windows.Networking.NetworkOperators, ContentType = WindowsRuntime `
]::CreateFromConnectionProfile($connectionProfile)
$status = $tetheringManager.TetheringOperationalState
if ($status -eq "On") {
return
}
Await ($tetheringManager.StartTetheringAsync()) ([Windows.Networking.NetworkOperators.NetworkOperatorTetheringOperationResult])