Posted On August 21, 2020

Windows: Create a Quick Hot Spot From A Wired Computer with Spare Wireless Adapter

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Windows: Create a Quick Hot Spot From A Wired Computer with Spare Wireless Adapter
# Start the Hot Spot
netsh wlan set hostednetwork mode=allow ssid="$env:username hotspot" key=whatpassword
netsh wlan start hostednetwork

# Stop the hot spot
netsh wlan stop hostednetwork

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Replace 1 Line in a Text File Matching Certain Values

# replaceLine -textContent $fileContent -match $url -updateLineContent $record function replaceLine($textContent,$match,$updateLineContent){ $line = $textContent | Select-String…

Where to Put JavaScript Codes?

Most often, JavaScript is placed between the <head> and </head> section. However, that may not…

Basic CSS: Use RGB to Mix Colors

<style>.red-text {color: #000000;}.orchid-text {color: #000000;}.sienna-text {color: #000000;}.blue-text {color: #000000;}</style><h1 class="red-text">I am red!</h1><h1 class="orchid-text">I am orchid!</h1><h1…