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: Set PasswordNeverExpires on SamAccountName

Quick 1-liner Code $accounts=@( 'orange', 'apple', 'pear', 'dog', 'cat', 'dinosaur', 'chicken', 'cow', 'yomama', 'yodada' )…

PowerShell: Extract Root Domain from URL

Please note that this function requires an updated variable named $domainsDictionary. Since LTD's are being…

getDCTimeSources

$domain=(Get-ADDomain).DNSRoot $dcs=(Get-ADDomainController -Filter * -Server $domain).Hostname $dcTimeSources=@() foreach ($dc in $dcs) { #$timeSource=w32tm /query /computer:$dc…