Tag: command

  • Create Wi-Fi Hotspot in Windows

    If you want to create a Wi-Fi Hotspot in windows then Open Command Prompt (Admin) with administrative privilege Type the following command and press enter: netsh wlan set hostednetwork mode=allow ssid=MyWi-Fi key=yourpassword Type netsh wlan start hostednetwork and press enter Go to Control Panel\Network and Internet\Network Connections and click properties in the connected network. Check “Allow…

  • Run batch-files without getting console popup windows

    If you want to run batch files then you obviously will not want to get any popup windows of command prompt. Well here’s what you need to do. Copy the following code into a notepad and save it by a name with a .VBS extension. Set WshShell = CreateObject(“WScript.Shell” ) WshShell.Run chr(34) & “C:\Users\Dinesh\Documents\batfilename.bat” & Chr(34),…