Skip to the content

Wenn Sie die Powershell Konsole als Administrator geöffnet haben (Rechtsklick auf Icon als Administrator öffnen) kopieren sie diesen Code:

# Skip network location setting for pre-Vista operating systems 
if([environment]::OSVersion.version.Major -lt 6) { return } 

# Skip network location setting if local machine is joined to a domain. 
if(1,3,4,5 -contains (Get-WmiObject win32_computersystem).DomainRole) { return } 

# Get network connections 
$networkListManager = [Activator]::CreateInstance([Type]::GetTypeFromCLSID([Guid]"{DCB00C01-570F-4A9B-8D69-199FDBA5723B}")) 
$connections = $networkListManager.GetNetworkConnections() 

# Set network location to Private for all networks 
$connections | % {$_.GetNetwork().SetCategory(1)}

 

Alle Netzwerke sind nun auf Privat geändert.

Über den Autor

Er hat von 2013 bis 2017 bei Mastertools die Informatiker-Lehre absolviert. 

 

comments powered by Disqus