참고
https://jjam89.tistory.com/147
윈도우 시작프로그램 폴더에 아래 두 파일을 넣는다.
- 경로 : C:\Users\{user}\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
- 스크립트파일 : mobilehotspot_on.ps1
$connectionProfile = [Windows.Networking.Connectivity.NetworkInformation,Windows.Networking.Connectivity,ContentType=WindowsRuntime]::GetInternetConnectionProfile()
$tetheringManager = [Windows.Networking.NetworkOperators.NetworkOperatorTetheringManager,Windows.Networking.NetworkOperators,ContentType=WindowsRuntime]::CreateFromConnectionProfile($connectionProfile)
# Start Mobile Hotspot
$tetheringManager.StartTetheringAsync()
- 실행파일 : mobilehostapot_on.bat
@echo off
Powershell.exe -noprofile -executionpolicy bypass -file "C:\Users\jkoogi\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\mobilehotspot_on.ps1"
'tip' 카테고리의 다른 글
음력 to 양력 날짜변환 (0) | 2023.09.22 |
---|---|
윈도우11 휴대폰과 연결 자동실행 (0) | 2023.04.13 |
IDE 방향 단축키 custom 설정 (0) | 2023.03.28 |
ecilpse git user, email 변경 (0) | 2023.03.27 |
안드로이드(갤럭시23) 변경 후 카카오톡 사진/미디어 이동 (0) | 2023.03.23 |