commit 2c379a9fb615810930abd04bae8692f71c4413b6 Author: Santiago Lo Coco Date: Sun Oct 13 18:09:43 2024 +0200 Add mhotspot.ps1 diff --git a/mhotspot.ps1 b/mhotspot.ps1 new file mode 100644 index 0000000..ec1b59d --- /dev/null +++ b/mhotspot.ps1 @@ -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])