Mainos / Advertisement:

Ero sivun ”PowerShell/en” versioiden välillä

Kohteesta Taisto
Siirry navigaatioon Siirry hakuun
(Ak: Uusi sivu: == Switch network location ==)
(Ak: Uusi sivu: Switching network location on Windows 8.X and Windows Server 2012 R2 operating systems is pretty much only successful using PowerShell.)
Rivi 4: Rivi 4:
 
== Switch network location ==
 
== Switch network location ==
  
Verkkosijainnin vaihtaminen Windows 8.X ja Windows Server 2012 R2 käyttöjärjestelmiin onnistuu pääosin vain PowerShellin avulla.
+
Switching network location on Windows 8.X and Windows Server 2012 R2 operating systems is pretty much only successful using PowerShell.
  
 
   Get-NetConnectionProfile
 
   Get-NetConnectionProfile

Versio 24. heinäkuuta 2015 kello 07.58

Muut kielet:
English • ‎suomi

PowerShell is Windows' new command line interface.

Switch network location

Switching network location on Windows 8.X and Windows Server 2012 R2 operating systems is pretty much only successful using PowerShell.

 Get-NetConnectionProfile

Tulostaa verkkoprofiilisi. Esimerkiksi:

 Name: Network
 InterfaceAlias: Ethernet
 InterfaceIndex: 3
 NetworkCategory: Public
 IPv4Connectivity: LocalNetwork
 IPv6Conenctivity: LocalNetwork

Otetaan vain InterfaceIndex numero ja ajetaan se seuraavassa komennossa

 Set-NetConnectionProfile  -InterfaceIndex 3 -NetworkCategory Private

Nyt ajetaan uudelleen komento

 Get-NetConnectionProfile

ja nähdään että Public profiili on muutettu Private profiiliksi.

Lähteet

http://blogs.msmvps.com/russel/2013/12/29/set-network-location-to-private-in-windows-8-1server-2012-r2/

Mainos / Advertisement: