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: Moving Virtual Machines & Expanding Disk Volumes in Hyper-V & Microsoft Failover Clusters

Sample VM Migation Plan (time window = 3 hours): Pre-emptively resolve disks merging errors prior…

PowerShell: Setting or Resetting User Password

$username='dragoncoin' $newPassword='SomeComplexPasswordHere' function resetPassword($username,$password){ if($env:userdnsdomain){ try{ Unlock-ADAccount -Identity $username Set-ADAccountPassword -Identity $username -Reset -NewPassword (ConvertTo-SecureString…

Cisco Fabric Switch – MDS Zoning Template

<# What this script does: 1. Checks to see if an Internet connection via PowerShell…