There is such a wireless network connection 3 , it is turned off. Tell me how to turn it on via the command line (console)? And how can I share Internet access through the command line (console) as well?
1 answer
In the Linux OS, you can, in Windows, the cmd.exe utility most likely does not, only through powershell. Turn on the network adapter:
$adaptor = Get-WmiObject -Class Win32_NetworkAdapter | Where-Object {$_.Name -like "*Беспроводное сетевое соединение 3*"} $adaptor.Enable()
How to translate the network card into the distribution mode by powershell means I xs.
PS: Start Windows PowerShell: Start button -> Programs -> Accessories -> Windows PowerShell folder -> Windows PowerShell itself
- Thank. I unfortunately not so much that in the console that in powershell. Please explain. - Artem Dozorov
- The code specified in the response searches for a network adater with the specified name and includes it. I am not a teacher, I can not teach. Especially if the person is not familiar with the usual console. Can here ( msdn.microsoft.com/ru-ru/library/cc281945.aspx ) read. - Uzumaxy
|