#Windows10ipuçları #Windows10 Mobile Hotspot açılışta otomatik çalışması için notepad açıp 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
}
Function AwaitAction($WinRtAction) {
$asTask = ([System.WindowsRuntimeSystemExtensions].GetMethods() | ? { $_.Name -eq 'AsTask' -and $_.GetParameters().Count -eq 1 -and !$_.IsGenericMethod })[0]
$netTask = $asTask.Invoke($null, @($WinRtAction))
$netTask.Wait(-1) | Out-Null
}
$connectionProfile = [Windows.Networking.Connectivity.NetworkInformation,Windows.Networking.Connectivity,ContentType=WindowsRuntime]::GetInternetConnectionProfile()
$tetheringManager = [Windows.Networking.NetworkOperators.NetworkOperatorTetheringManager,Windows.Networking.NetworkOperators,ContentType=WindowsRuntime]::CreateFromConnectionProfile($connectionProfile)
if ($tetheringManager.TetheringOperationalState -eq 1)
{
"Hotspot is already On!"
}
else{
"Hotspot is off! Turning it on"
Await ($tetheringManager.StartTetheringAsync()) ([Windows.Networking.NetworkOperators.NetworkOperatorTetheringOperationResult])
}
kodunu yapıştırıp hotspot.ps1
adıyla C:\
dizinine kaydedip Görev Zamanlayıcıda
Yeni görev oluştur->Tetikleyiciler(herhangi kullanıcı oturum açtığında)->Eylem(powershell.exe -windowstyle hidden -ExecutionPolicy Bypass C:\hotspot.ps1)
yapıp kaydedince oturum açıldığında Mobile Hotspot otomatik açılacaktır.
ağ köprüsü kullanarak kalıcı olarak halledilmiyor mu?
o bağlantılar köprülenemiyor
@cheytacllc bağdaştırıcı özelliğinde "bu ağı paylaş" diye bir seçenek olması lazım, oradan da paylaşacağın cihazı seçiyorsun
@enigmasi o ayarı oynayınca windows 10 hotspot açma kısayolundan neti paylaşmamaya başlıyor arada
Çok teşekkür ederim . Yaptım oldu.
arkadaslar eylemler sekmesinden program/komut dosyası kısmına mı powershell.exe -windowstyle hidden -ExecutionPolicy Bypass C:\hotspot.ps1 yapıştırıyoruz ?
evet
Şuanki güncel windows 10 güncellemesinde çalışıyor mu acaba ? bende çalışmadı da