window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-SZT5S2F4W5', { 'anonymize_ip':true });
24 05, 2016

Unidentified networks in Windows Server 2012 forced to be Private

By |2016-10-22T11:39:41+02:00May 24th, 2016|Allgemein, Windows Server|Comments Off on Unidentified networks in Windows Server 2012 forced to be Private

This article describes how we can force a network connection from Microsoft Windows "Network and Sharing Center" that is classified as an “Unidentified Network” to a private network e.g. to solve issues with the firewall rules. The problem is that Windows cannot classify the type of network, often due to there being no default gateway or DNS specified on local network connections. The default solution would be to make it public cause this offers the most restrictive level of network [...]

23 05, 2016

Change the Network Category in Windows Server 2012 with PowerShell

By |2016-10-22T11:39:41+02:00May 23rd, 2016|Allgemein, PowerShell, Windows Server|Comments Off on Change the Network Category in Windows Server 2012 with PowerShell

This article describes how we can change the network category from “Public network” to “Private network” with the Windows PowerShell. First let us get a list of all available network profiles on your system. Get-NetConnectionProfile Now let us change the network category to Private, (use the InterfaceIndex number from the selected network profile within the Set command). Set-NetConnectionProfile -InterfaceIndex 17 -NetworkCategory Private  

Go to Top