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: Uninstalling an Application

$appname='Google Chrome' function uninstallApp($appName){ $alternativeMethod=$false try{ $app = Get-WmiObject -Class Win32_Product | Where-Object{$_.Name -eq $appName}…

PowerShell: Obtain Computer Account Parent Container from Invoke-Command

# ObtainComputerAccountParentContainer.ps1# This is a demonstration of how to pass function into an invoke-command as…

PowerShell: Creating Active Directory Accounts from CSV File

# User-input Variables $csvFile='C:\Users\rambo\Desktop\newUsers-finalized.csv' $newOu='CN=Users,DC=kimconnect,DC=com' $newCompany='KimConnect.com' $logFile="c:\temp\createActiveDirectoryAccounts-$(get-date -f yyyy-mm-dd-hh-mm-ss).txt" function createActiveDirectoryAccounts{ param( $csvFile, $newOu, $newCompany,…