Win10系统自带了移动热点功能,配备无线网卡的电脑,直接点击移动热点就可以使用手机等设备共享本地网络连接wifi上网了 。但是移动热点每次开机都需要再次点击才能打开热点,下面就是如何配置开机自动启动移动热点的方法 。
1、鼠标右击Win10屏幕左下角的开始菜单,或者按Win X弹出隐藏菜单,打开Windows PowerShell(管理员)(A),在Windows11中可以打开 Windows终端(管理员)
2、在打开的Windows PowerShell窗口中输入:set-executionpolicy remotesigned
然后按下回车键确定
文章插图
文章插图
3、确定后将出现如下的提示 。输入‘a’然后按下回车键 。关闭Windows PowerShell窗口 。
文章插图
文章插图
4、在资源管理器地址栏输入:%appdata%MicrosoftWindowsStart MenuProgramsStartup 然后按下回车键进入“启动”文件夹,空白处新建一个文本文档,在文本中输入以下内容:
powershell -executionpolicy remotesigned -file "%appdata%MicrosoftWindowsStart MenuPrograms开启热点.ps1"
【Win11电脑连接热点无法上网 win11怎么连接手机热点】exit
5、关闭并保存文本文档,把文档名称改为“开机启动热点”,后缀名.txt改为.bat 。
文章插图
文章插图
6、在资源管理器的地址栏输入:%appdata%MicrosoftWindowsStart MenuPrograms
然后按下回车键进入“程序”文件夹,在空白处新建一个文本文档,在文档中输入以下内容:
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])
}
7、关闭并保存文本文档,修改文档名称为“开启热点” , 后缀名.txt改为.ps1
文章插图
文章插图
8、重启电脑就能开机自动启动移动热点了,如果安装了杀毒软件,记得把“开机启动热点.bat”添加为信任项即可 。
- 电脑开机cpu风扇转一下就停 win7停止操作风扇就转怎么办
- 总结十款最佳单人FPS游戏 电脑单机游戏排行榜前十名
- 为何收不到今日头条推送消息 win11收不到推送怎么办
- win7无法修改文件后缀 Win11怎么修改文件后缀
- win7删除usb记录 win7电脑操作痕迹查询方法
- 16套高性价比配置单详情 电脑配置知识大全
- win10无线投屏智能电视 台式win10电脑怎么投屏到电视
- win10图标有箭头 win11系统图标箭头怎么取消
- 如何设置电脑待机时间win7 w7系统取消待机怎么设置
- win10电脑右下角图标怎么合并到一起 win10右下角角标怎么缩在一起