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: Update a List of Multiple Windows Machines

Version 3: # updateWindowsList.ps1 # Version 0.0.3 # # Features: # - New feature over…

Use PowerShell to Grant SysAdmin Role to Certain Users

$principle=$env:USERDOMAIN+'\Domain Admins' $sqlServer=$env:computername function includeSqlTools{ $ErrorActionPreference='stop' try{ $trustedPsgallery=(Get-PSRepository PSGallery).InstallationPolicy -eq 'Trusted' if(!$trustedPsgallery){ Set-PSRepository -Name PSGallery…

Setting Up FTP on CentOS 5.3

Install VSFTPD yum -y install vsftpd   Configure: vim /etc/vsftpd/vsftpd.conf ------------------- anonymous_enable=NO // line 12:…