How to enable Ping in Windows Server 2012

This is just a quick guide to enabling a server to respond to ping, the default setting in Windows Server 2012 is to not respond. This is how you do it:

You can do it over the GUI or Powershell:

GUI – Graphical User Interface

1. Open Control Panel, then select System and Security by clicking on that header

2. Select Windows Firewall

3. Advanced Settings

4. In ‘Windows Firewall with Advanced security’ click on ‘Inbound rules’

5. Scroll down to ‘File and Printer sharing (Echo request – ICMPv4-In)

6. Rightclick on the rule and select ‘Enable rule’

Make sure that it turns green

Done, close down the ‘Windows Firewall with Advanced Security’ windows and then the Control panel.
Verify functionality by pinging the servers own IP address from a command or PowerShell prompt.

Done!

PowerShell
(This will enable the existing rule exactly as the instruction above does)

Import-Module NetSecurity
Set-NetFirewallRule -DisplayName “File and Printer Sharing (Echo Request – ICMPv4-In)” -enabled True
 
EnablePing

(ABove enables the existing rule, below will create a new rule that allows ICMPv4/Ping and enable it)

Import-Module NetSecurity
New-NetFirewallRule -Name Allow_Ping -DisplayName “Allow Ping”  -Description “Packet Internet Groper ICMPv4″ -Protocol ICMPv4 -IcmpType 8 -Enabled True -Profile Any -Action Allow
 
EnablePing2

(For IPv6 Ping you obviously enable the v6 Inbound Rule…)

Thats all there is to it!

iPhone 5S & iPhone Light

Für das Jahr 2013 wird von Apple neben dem iPhone 5S auch das Billig-iPhone erwartet, welches in letzter Zeit auch vermehrt als Einsteiger-iPhone oder iPhone Light bezeichnet wurde. Wie das US-Blog AppleInsider berichtet, sind nun erste Skizzen der beiden Modelle aufgetaucht, welche zeigen, dass sich diese von der Größe her kaum unterscheiden. Aber auch ein Mockup wurde gesichtet.

iPhone 5S & Billig-iPhone: Skizzen und Mockups aufgetaucht

Bislang wurde stets vermutet, dass das Billig-iPhone deutlich kleiner als das iPhone 5S sein wird. So wurde hier mit 4 Zoll gerechnet, wohingegen das iPhone 5S auf etwas mehr als 5 Zoll kommen sollte. Neueste Skizzen zeigen, dass stattdessen das als iPhone Light bezeichnete Modell minimal größer sein könnte. Zudem besitzt es minimal größere Tasten, Kamera-Module und einen Home-Button ohne inneres Quadrat.

Darüber hinaus zeigen die Bilder, dass das iPhone Light eine abgerundete Rückseite besitzen wird. Das iPhone 5S baut dagegen auf das Design des aktuellen iPhone 5 und wird sich somit nur geringfügig zu diesem unterscheiden. Einen LED-Blitz an der Rückseite werden beide Geräte besitzen, genauso wie einen Kopfhöreranschluss, Lautsprecher an der Unterseite und einen Lockscreen-Button an der Oberseite.

iPhone 5S & Billig-iPhone: Skizzen und Mockups aufgetaucht

iPhone 5S & Billig-iPhone: Skizzen und Mockups aufgetaucht

iPhone 5S & Billig-iPhone: Skizzen und Mockups aufgetaucht

Windows Server 2012: Deactivating UAC

Deactivating UAC in Windows 2008 R2 was possible via running msconfig (for example winkey+r -> msconfig), going to the Tools tab and launching „Change UAC settings“. There, you select „Never notify“ to disable UAC. The same approach is still available in Windows Server 2012, though UAC is still active after you selected „Never notify“. You have the option to turn off UAC via registry by changing the DWORD „EnableLUA“ from 1 to 0 in „HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system“. You will get a notification that a reboot is required. After the reboot, UAC is disabled.

VMWare Invalid configuration for device ’12‘

Beim versuchen einen Vorlage/VM zu Migriern „Datastore – Migration“ erscheint folgende Meldung:

(Ungültige Konfiguration für Gerät ’12‘)

Das Problem liegt daran dass die Netzwerkkonfiguration nicht stimmt.
Invalidbacking

Die Netzwerkkonfiguration anpassen und die Vorlage/VM kann wieder verschoben werden.

VMWare „Error in the RPC receive loop: RpcIn: Unable to send“

Im Event Viewer werden folgende „Warning“ Einträge angezeigt.

Das Problem liegt daran dass während einen VMWare Tools Installation/Aktualisierung das “tools.conf” nicht erstellt wurde oder das file hat keinen inhalt.

Problemlösung:

Das “tools.conf” file erstellen oder mit dem inhalt aktualisieren.
Das file befindet sich:

Guest operating system Path to configuration file
Windows XP and Windows Server 2000/2003 C:\Documents and Settings\All Users\Application Data\VMware\VMware Tools\tools.conf
Windows Vista, Windows 7, Windows Server 2008 and
Windows Server 2012
C:\ProgramData\VMware\VMware Tools\tools.conf
Linux, Solaris, and FreeBSD /etc/vmware-tools/tools.conf
Mac OS X /Library/Application Support/VMware Tools/tools.conf

 

File inhalt:

[logging]
vmusr.level = error

# Enable tools service logging to vmware.log
vmsvc.level = debug
vmsvc.handler = vmx

# Enable new “vmusr” service logging to vmware.log
vmusr.level = error
vmusr.handler = vmx

# Enable “Volume Shadow Copy” service logging to vmware.log
vmvss.level = debug
vmvss.handler = vmx