<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Windows 8 &#8211; Haikos Blog</title>
	<atom:link href="https://www.hertes.net/category/microsoft/windows-client/windows-8/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.hertes.net</link>
	<description>Blog von Haiko Hertes zu allen Themen rund um Microsoft, Cloud und Datacenter</description>
	<lastBuildDate>Sun, 17 Dec 2017 07:16:53 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Erstellen einer Windows PE (WinPE) mit dem Windows Assessment and Deployment Kit (ADK)</title>
		<link>https://www.hertes.net/2017/12/erstellen-einer-windows-pe-winpe-mit-dem-windows-assessment-and-deployment-kit-adk/</link>
					<comments>https://www.hertes.net/2017/12/erstellen-einer-windows-pe-winpe-mit-dem-windows-assessment-and-deployment-kit-adk/#respond</comments>
		
		<dc:creator><![CDATA[Haiko]]></dc:creator>
		<pubDate>Sun, 17 Dec 2017 07:16:03 +0000</pubDate>
				<category><![CDATA[System Center Configuration Manager]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Windows Server 2008 R2]]></category>
		<category><![CDATA[Windows Server 2012]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[ImageX]]></category>
		<category><![CDATA[WinPE]]></category>
		<guid isPermaLink="false">http://www.hertes.net/?p=1516</guid>

					<description><![CDATA[UPDATE für Windows ADK siehe unten! &#8211; Ursprünglicher Artikel vom 18.10.2012 Eine WinPE auf dem USB-Stick oder als CD/DVD ist außerordentlich praktisch. Man kann damit ein defektes Windows reparieren, seine Daten aus einem kaputten Rechner &#8222;rausholen&#8220;, ein System aus einem WIM-Image installieren, Images erzeugen und und und&#8230; Zum Erzeugen einer solchen WinPE benötigt man entweder das Windows AIK (Automated Installation Kit) oder eben das ADK. In einer kurzen Anleitung möchte ich erklären, wie hier nun vorzugehen ist: 1.) Windows ADK herunterladen und installieren Siehe hier: http://www.microsoft.com/de-de/download/details.aspx?id=30652 Bei der Installation reicht es, die &#8222;Windows Preinstallation Environment&#8220; auszuwählen, der Rest ist hierzu nicht&#8230;]]></description>
										<content:encoded><![CDATA[<p><strong><em>UPDATE für Windows ADK siehe unten!</em></strong> &#8211; Ursprünglicher Artikel vom 18.10.2012</p>
<p>Eine WinPE auf dem USB-Stick oder als CD/DVD ist außerordentlich praktisch. Man kann damit ein defektes Windows reparieren, seine Daten aus einem kaputten Rechner &#8222;rausholen&#8220;, ein System aus einem WIM-Image installieren, Images erzeugen und und und&#8230;</p>
<p>Zum Erzeugen einer solchen WinPE benötigt man entweder das Windows AIK (Automated Installation Kit) oder eben das ADK. In einer kurzen Anleitung möchte ich erklären, wie hier nun vorzugehen ist:</p>
<p>1.) Windows ADK herunterladen und installieren</p>
<p>Siehe hier: <a href="http://www.microsoft.com/de-de/download/details.aspx?id=30652">http://www.microsoft.com/de-de/download/details.aspx?id=30652</a></p>
<p>Bei der Installation reicht es, die &#8222;Windows Preinstallation Environment&#8220; auszuwählen, der Rest ist hierzu nicht notwendig.</p>
<p>2.) Es gibt jetzt im Startmenü beim ADK eine &#8222;Umgebung für Bereitstellungs- und Imageerstellungstools&#8220;. Diese muss (evtl. als Administrator) gestartet werden</p>
<p>3.) In der sich nun öffnenden DOS-Box wird nun das Grundgerüst der WinPE erzeugt. Dazu verwendet man den Befehl:</p>
<pre lang="DOS" line="1">copype.cmd [x86 | amd64] C:\WinPE</pre>
<p>Der erste Parameter gibt an, ob die Umgebung für 32- oder 64-Bit gebaut wird. Mit einer 32-Bit-Variante ist man natürlich deutlich flexibler. Der zweite Parameter gibt an, wo die WinPE erzeugt werden soll, es habdelt sich hier um einen Pfad, der noch nicht existieren darf!</p>
<p>Nach dem Ausführen des Kommandos (welches einige Dateien kopiert) landet man im als Ziel angegebenen Ordner. Unter &#8222;media&#8220; befindet sich nun das, was später Bestandteil der WinPE sein wird. Hier kann man weitere Tools hinzufügen, z.B. &#8222;imagex.exe&#8220; (einfach mit in den media-Ordner kopieren):</p>
<pre lang="DOS" line="1">copy "C:\Program Files (x86)\Windows Kits\8.0\Assessment and Deployment Kit\Deployment Tools\x86\DISM\imagex.exe" C:\WinPE\media\</pre>
<p>4.) WinPE mit deutschem Tastaturlayout</p>
<p>Das &#8222;original&#8220; WinPE ist in Englisch mit englischem Tastaturlayout &#8211; das kann stören. Mit ein wenig Arbeit lässt sich das deutsche Layout installieren und aktivieren. Dazu muss die boot.wim, welche sich im meda\sources-Pfad befindet mit dism.exe gemountet und verändert werden.</p>
<p>Das deutsche Language-Pack befindet sich in &#8222;C:\Program Files (x86)\Windows Kits\8.0\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\WinPE_OCs\de-de&#8220;</p>
<pre lang="DOS" line="1">dism /Mount-Wim /MountDir:C:\WinPE\mount /wimfile:C:\WinPE\media\sources\boot.wim /index:1
dism /image:C:\WinPE\mount /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\8.0\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\WinPE_OCs\de-de\lp.cab"
dism /image:C:\WinPE\mount /Set-AllIntl:de-DE
</pre>
<p>Dieser befehl wollte abgeschlossen werden mit:</p>
<pre lang="DOS" line="1">Das Eingabegebietsschema wurde festgelegt auf: de-DE
Das Systemgebietsschema wurde festgelegt auf: de-DE
Das Benutzergebietsschema wurde festgelegt auf: de-DE
Die Benutzeroberflächensprache wurde festgelegt auf: de-DE
Der Vorgang wurde erfolgreich beendet.
</pre>
<p>Sonst liegt ein Fehler vor&#8230;</p>
<p>Nun noch das Image zurückschreiben:</p>
<pre lang="DOS" line="1">dism /Unmount-Wim /MountDir:C:\WinPE\mount /commit</pre>
<p>5.) Erzeugen der WinPE</p>
<p>Es gibt 2 Möglichkeiten: Einmal in Form einer ISO-Datei (für CD/DVD) oder direkt auf einen USB-Stick (Vorsicht: Dieser wird dabei formatiert, vorhandene Daten gehen verloren!)</p>
<p>Die beiden Befehle lauten:</p>
<pre lang="DOS" line="1">MakeWinPEMedia /ISO C:\WinPE C:\WinPE\WinPE.iso</pre>
<p>-&gt; Für CD-ISO</p>
<pre lang="DOS" line="1">MakeWinPEMedia /UFD C:\WinPE G:</pre>
<p>-&gt; Für USB-Stick/-HDD, G: ist der Buchstabe des USB-Datenträgers, hier kein \ verwenden</p>
<p>Das wäre es schon gewesen &#8211; die ISO bzw. der USB-Stick lassen sich jetzt booten&#8230;</p>
<p>&nbsp;</p>
<p><em><strong>Update vom 17.12.2017:</strong></em></p>
<p>Für Windows ADK 10 ändern sich die Pfade und damit auch die Kommandos. Ich habe diese hier nochmal für 64 Bit (amd64) zusammengestellt. Dabei werden auch ein paar nützliche Pakete (u.a. PowerShell) hinzugefügt.</p>
<pre lang="DOS" line="1">copype.cmd amd64 C:\WinPe
dism /Mount-Wim /MountDir:C:\WinPE\mount /wimfile:C:\WinPE\media\sources\boot.wim /index:1
dism /image:C:\WinPE\mount /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\de-de\lp.cab"

dism /image:C:\WinPE\mount /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-NetFx.cab"
dism /image:C:\WinPE\mount /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\de-de\WinPE-NetFx_de-de.cab"
dism /image:C:\WinPE\mount /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-PowerShell.cab"
dism /image:C:\WinPE\mount /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\de-de\WinPE-PowerShell_de-de.cab"
dism /image:C:\WinPE\mount /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-Scripting.cab"
dism /image:C:\WinPE\mount /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\de-de\WinPE-Scripting_de-de.cab"

dism /Unmount-Wim /MountDir:C:\WinPE\mount /commit

MakeWinPEMedia /UFD C:\WinPE G:
</pre>
]]></content:encoded>
					
					<wfw:commentRss>https://www.hertes.net/2017/12/erstellen-einer-windows-pe-winpe-mit-dem-windows-assessment-and-deployment-kit-adk/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Windows 8 / 8.1 / 10: Bestimmte WLAN-Verbindungen per GPO als getaktet festlegen</title>
		<link>https://www.hertes.net/2016/09/windows-8-8-1-10-bestimmte-wlan-verbindungen-per-gpo-als-getaktet-festlegen/</link>
					<comments>https://www.hertes.net/2016/09/windows-8-8-1-10-bestimmte-wlan-verbindungen-per-gpo-als-getaktet-festlegen/#respond</comments>
		
		<dc:creator><![CDATA[Haiko]]></dc:creator>
		<pubDate>Thu, 29 Sep 2016 05:48:00 +0000</pubDate>
				<category><![CDATA[ActiveDirectory]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows 10]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Windows Client]]></category>
		<category><![CDATA[Client]]></category>
		<category><![CDATA[Getaktete Verbindung]]></category>
		<category><![CDATA[GPO]]></category>
		<category><![CDATA[Gruppenrichtlinien]]></category>
		<category><![CDATA[Metered Connection]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[Wifi]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 8.1]]></category>
		<category><![CDATA[WLAN]]></category>
		<category><![CDATA[WSUS]]></category>
		<guid isPermaLink="false">http://www.hertes.net/?p=3265</guid>

					<description><![CDATA[Seit Windows 8 gibt es die Möglichkeit, eine WLAN- oder WWAN-Verbindung als “getaktet” (metered) festzulegen. Das hat Auswirkungen auf die Nutzung dieser Verbindung. Ziel ist es dabei, eine Verbindung mit beschränktem Datenvolumen oder Kosten pro kB/MB, möglichst wenig mit Dingen zu belasten, die man später auch über unbeschränkte Datenverbindungen machen kann, z.B. das Herunterladen von Windows Updates oder die Bereitstellung neuer Software, die erst aus dem Netzwerk geladen werden muss. Wenn man nun z.B. in einer kleinen Außenstelle, auf einer Baustelle oder sonst wo einen LTE- oder UMTS-Hotspot bereitstellt, damit einige Mitarbeiter darüber arbeiten können, dann haben diese Verbindungen in&#8230;]]></description>
										<content:encoded><![CDATA[<p>Seit Windows 8 gibt es die Möglichkeit, eine WLAN- oder WWAN-Verbindung als “getaktet” (metered) festzulegen. Das hat Auswirkungen auf die Nutzung dieser Verbindung. Ziel ist es dabei, eine Verbindung mit beschränktem Datenvolumen oder Kosten pro kB/MB, möglichst wenig mit Dingen zu belasten, die man später auch über unbeschränkte Datenverbindungen machen kann, z.B. das Herunterladen von Windows Updates oder die Bereitstellung neuer Software, die erst aus dem Netzwerk geladen werden muss.</p>
<p>Wenn man nun z.B. in einer kleinen Außenstelle, auf einer Baustelle oder sonst wo einen LTE- oder UMTS-Hotspot bereitstellt, damit einige Mitarbeiter darüber arbeiten können, dann haben diese Verbindungen in der Regel ein Datenlimit pro Monat, nach dessen Erreichen die Geschwindigkeit massiv gedrosselt wird, z.B. 3, 5 oder 10GB. Will man nun für diese Mitarbeiter erreichen, dass z.B. keine Windows-Updates über diese Verbindung geladen werden, dann kommen die getakteten Verbindungen zum Einsatz und es wäre wünschenswert, das entsprechende WLAN per Gruppenrichtlinie als “getaktet” zu bestimmen.</p>
<p>Das Problem dabei:</p>
<p>In den GPOs lassen sich zwar die Kosten für WLAN festlegen (es gibt dabei 3 Stufen, “unrestricted”, “fixed” und “variable”, wobei “fixed” bedeutet, dass die Kosten pro übertragenem Kilo- oder Megabyte entstehen und “variable” für ein monatliches Limit steht), dies gilt dann aber für ALLE WLAN-Verbindungen:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2016/09/MeteredConn1-1.png"><img fetchpriority="high" decoding="async" title="MeteredConn1" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; float: none; padding-top: 0px; padding-left: 0px; margin-left: auto; border-left: 0px; display: block; padding-right: 0px; margin-right: auto" border="0" alt="MeteredConn1" src="https://www.hertes.net/wp-content/uploads/2016/09/MeteredConn1_thumb-1.png" width="644" height="355" /></a></p>
<p>Als Alternative kann man nun aber das gute, alte “netsh” benutzen. Damit lassen sich Verbindungsdetails zeigen:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2016/09/MeteredConn2.png"><img decoding="async" title="MeteredConn2" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; float: none; padding-top: 0px; padding-left: 0px; margin-left: auto; border-left: 0px; display: block; padding-right: 0px; margin-right: auto" border="0" alt="MeteredConn2" src="https://www.hertes.net/wp-content/uploads/2016/09/MeteredConn2_thumb.png" width="478" height="484" /></a></p>
<p>Der Befehl dazu lautet:</p>
<blockquote>
<p>netsh wlan show profile WLANSSID</p>
</blockquote>
<p>Will man nun für eine Verbindung die Kosten verändern, so geht dies folgendermaßen:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2016/09/MeteredConn3.png"><img decoding="async" title="MeteredConn3" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; float: none; padding-top: 0px; padding-left: 0px; margin-left: auto; border-left: 0px; display: block; padding-right: 0px; margin-right: auto" border="0" alt="MeteredConn3" src="https://www.hertes.net/wp-content/uploads/2016/09/MeteredConn3_thumb.png" width="644" height="98" /></a></p>
<p>Der Befehl dazu lautet:</p>
<blockquote>
<p>netsh wlan set profileparameter name=WLANSSID cost=variable&#160; (oder alternativ “fixed”)</p>
</blockquote>
<p>Daraus braucht man nun nur noch ein passendes kleines Script basteln und dieses per GPO wirken lassen:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2016/09/MeteredConn4.png"><img loading="lazy" decoding="async" title="MeteredConn4" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; float: none; padding-top: 0px; padding-left: 0px; margin-left: auto; border-left: 0px; display: block; padding-right: 0px; margin-right: auto" border="0" alt="MeteredConn4" src="https://www.hertes.net/wp-content/uploads/2016/09/MeteredConn4_thumb.png" width="644" height="358" /></a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.hertes.net/2016/09/windows-8-8-1-10-bestimmte-wlan-verbindungen-per-gpo-als-getaktet-festlegen/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Digitizer / Touchscreen von Surface Pro oder anderem Tablet remote bzw. als erweiterten Bildschirm benutzen</title>
		<link>https://www.hertes.net/2016/03/digitizer-touchscreen-von-surface-pro-oder-anderem-tablet-remote-bzw-als-erweiterten-bildschirm-benutzen/</link>
					<comments>https://www.hertes.net/2016/03/digitizer-touchscreen-von-surface-pro-oder-anderem-tablet-remote-bzw-als-erweiterten-bildschirm-benutzen/#comments</comments>
		
		<dc:creator><![CDATA[Haiko]]></dc:creator>
		<pubDate>Tue, 22 Mar 2016 20:50:00 +0000</pubDate>
				<category><![CDATA[Bildbearbeitung]]></category>
		<category><![CDATA[Fotografie]]></category>
		<category><![CDATA[Surface / Surface Pro]]></category>
		<category><![CDATA[Technik]]></category>
		<category><![CDATA[Windows 10]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Windows Client]]></category>
		<category><![CDATA[Digitizer]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Surface]]></category>
		<category><![CDATA[Surface Pro]]></category>
		<category><![CDATA[Touchscreen]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">http://www.hertes.net/?p=3150</guid>

					<description><![CDATA[Kürzlich stand ich vor der Aufgabe, altes Fotomaterial aufzuarbeiten um dabei insbesondere Schäden an den Fotos und andere Bildfehler zu korrigieren. Für derartige Aufgaben nutze ich sehr gern Photoshop Elements. Für einen schmalen Taler bekommt man viele Funktionen (natürlich nicht so viel wie beim “richtigen” Photoshop, aber das kostet fast 10x soviel). Das von mir sonst benutzte Adobe Lightroom kann das leider nicht oder nur mit riesigem Aufwand. Nachdem ich das erste Bild bearbeitet hatte, kam mir die Idee, auf meinem Surface Pro weiter zu machen, da dieses ja über einen Digitizer verfügt und mir somit das Arbeiten mit einem&#8230;]]></description>
										<content:encoded><![CDATA[<p>Kürzlich stand ich vor der Aufgabe, altes Fotomaterial aufzuarbeiten um dabei insbesondere Schäden an den Fotos und andere Bildfehler zu korrigieren. Für derartige Aufgaben nutze ich sehr gern Photoshop Elements. Für einen schmalen Taler bekommt man viele Funktionen (natürlich nicht so viel wie beim “richtigen” Photoshop, aber das kostet fast 10x soviel). Das von mir sonst benutzte Adobe Lightroom kann das leider nicht oder nur mit riesigem Aufwand.</p>
<p>Nachdem ich das erste Bild bearbeitet hatte, kam mir die Idee, auf meinem Surface Pro weiter zu machen, da dieses ja über einen Digitizer verfügt und mir somit das Arbeiten mit einem Stift ermöglicht hätte. Ein Grafiktablet ala Wacom o.ä. habe ich leider nicht, bin davon aber auch nicht so überzeugt. Bei den halbwegs bezahlbaren ist kein Display enthalten, so dass man auf dem Tablet nur arbeitet, das Ergebnis aber auf dem Monitor zu sehen ist. Beim Surface hingegen kann ich mit dem Stift direkt “im Bild” arbeiten.</p>
<p>Nun hatte ich aber kein Photoshop Elements auf dem Surface und mangels DVD-Laufwerk hätte ich erst die DVD auf USB.-Stick kopieren müssen. Also habe ich nach einer Möglichkeit gesucht, das Surface einfach nur als zweiten Bildschirm an meinem “Haupt-PC” (wo das Photoshop läuft) zu benutzen – und ich wurde fündig. Die Lösung nennt sich “Splashtop”. Wie das genau funktioniert, seht ihr in einem meiner YouTube-Videos:</p>
<p> <iframe loading="lazy" height="315" src="https://www.youtube.com/embed/IPW1ZsJT2CI" frameborder="0" width="560" allowfullscreen="allowfullscreen"></iframe></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.hertes.net/2016/03/digitizer-touchscreen-von-surface-pro-oder-anderem-tablet-remote-bzw-als-erweiterten-bildschirm-benutzen/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>SCCM 2012 R2: Wie man OSD einrichtet und benutzt</title>
		<link>https://www.hertes.net/2015/07/sccm-2012-r2-wie-man-osd-einrichtet-und-benutzt/</link>
					<comments>https://www.hertes.net/2015/07/sccm-2012-r2-wie-man-osd-einrichtet-und-benutzt/#respond</comments>
		
		<dc:creator><![CDATA[Haiko]]></dc:creator>
		<pubDate>Thu, 09 Jul 2015 14:28:38 +0000</pubDate>
				<category><![CDATA[Deployment]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[System Center Configuration Manager]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Deplyoment Services]]></category>
		<category><![CDATA[DHCP]]></category>
		<category><![CDATA[OSD]]></category>
		<category><![CDATA[PXE]]></category>
		<category><![CDATA[SCCM]]></category>
		<category><![CDATA[WDS]]></category>
		<category><![CDATA[WinPE]]></category>
		<guid isPermaLink="false">http://www.hertes.net/?p=2938</guid>

					<description><![CDATA[Auf Anregung einiger Teilnehmer habe ich heute ein Video erstellt, das zeigt, wie man die OSD-Komponenten des System Center Configuration Manager 2012 R2 nutzt, um Betriebssysteme zu verteilen. Das Operating System Deployment stützt sich dabei auf WDS/PXE und DHCP. Das Video könnt ihr hier finden: &#160; Die Folien dazu sind hier zu finden: http://1drv.ms/1HhQ4r4 Viel Spaß dabei!]]></description>
										<content:encoded><![CDATA[<p>Auf Anregung einiger Teilnehmer habe ich heute ein Video erstellt, das zeigt, wie man die OSD-Komponenten des System Center Configuration Manager 2012 R2 nutzt, um Betriebssysteme zu verteilen. Das Operating System Deployment stützt sich dabei auf WDS/PXE und DHCP.</p>
<p>Das Video könnt ihr hier finden:</p>
<div id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:323754ac-4f4e-4d08-b724-0b614e7b9112" class="wlWriterEditableSmartContent" style="float: none; padding-bottom: 0px; padding-top: 0px; padding-left: 0px; margin: 0px; display: inline; padding-right: 0px">
<div><object width="448" height="252"><param name="movie" value="http://www.youtube.com/v/r1zY5mGdHaQ?hl=en&amp;hd=1"></param><embed src="http://www.youtube.com/v/r1zY5mGdHaQ?hl=en&amp;hd=1" type="application/x-shockwave-flash" width="448" height="252"></embed></object></div>
</div>
<p>&#160;</p>
<p>Die Folien dazu sind hier zu finden:</p>
<p><a href="http://1drv.ms/1HhQ4r4">http://1drv.ms/1HhQ4r4</a></p>
<p>Viel Spaß dabei!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.hertes.net/2015/07/sccm-2012-r2-wie-man-osd-einrichtet-und-benutzt/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Zertifizierung f&#252;r Windows 10</title>
		<link>https://www.hertes.net/2015/03/zertifizierung-fr-windows-10/</link>
					<comments>https://www.hertes.net/2015/03/zertifizierung-fr-windows-10/#respond</comments>
		
		<dc:creator><![CDATA[Haiko]]></dc:creator>
		<pubDate>Mon, 30 Mar 2015 19:19:00 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows 10]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Zertifizierungen]]></category>
		<category><![CDATA[Pearson VUE]]></category>
		<category><![CDATA[Prometric]]></category>
		<guid isPermaLink="false">http://www.hertes.net/?p=2822</guid>

					<description><![CDATA[Zwar sind die Zeritifizierungsprüfungen für Windows 10 noch nicht verfügbar, aber es kann dennoch sinnvoll sein, bereits heute darüber nachzudenken. Das liegt daran, dass sich zwei aktuelle Microsoft-Aktionen in diesem Zusammenhang gut kombinieren lassen. Die erste Aktion sorgt dafür, dass man die Upgrade-Prüfung von Windows 8 auf Windows 10 geschenkt bekommt, wenn man zwischen dem 15. Februar 2015 und dem 31. Mai 2015 den MCSA: Windows 8 erwirbt. Dazu sind die beiden Prüfungen 70-687 und 70-688 nötig. Alternativ könnte man auch von Windows 7 mit der 70-689 upgraden. Details zu dieser Aktion sind hier zu finden: https://borntolearn.mslearn.net/b/weblog/archive/2015/02/19/how-to-get-a-windows-10-exam-for-free &#160; Die zweite&#8230;]]></description>
										<content:encoded><![CDATA[<p>Zwar sind die Zeritifizierungsprüfungen für Windows 10 noch nicht verfügbar, aber es kann dennoch sinnvoll sein, bereits heute darüber nachzudenken. Das liegt daran, dass sich zwei aktuelle Microsoft-Aktionen in diesem Zusammenhang gut kombinieren lassen.</p>
<p>Die erste Aktion sorgt dafür, dass man die Upgrade-Prüfung von Windows 8 auf Windows 10 geschenkt bekommt, wenn man zwischen dem 15. Februar 2015 und dem 31. Mai 2015 den <a href="https://www.microsoft.com/learning/en-us/mcsa-windows-8-certification.aspx" target="_blank">MCSA: Windows 8</a> erwirbt. Dazu sind die beiden Prüfungen <a href="https://www.microsoft.com/learning/en-us/exam-70-687.aspx" target="_blank">70-687</a> und <a href="https://www.microsoft.com/learning/en-us/exam-70-688.aspx" target="_blank">70-688</a> nötig. Alternativ könnte man auch von Windows 7 mit der <a href="https://www.microsoft.com/learning/en-us/exam-70-689.aspx" target="_blank">70-689</a> upgraden.</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2015/03/zert01.jpg"><img loading="lazy" decoding="async" title="zert01" style="border-top: 0px; border-right: 0px; border-bottom: 0px; float: none; margin-left: auto; border-left: 0px; display: block; margin-right: auto" border="0" alt="zert01" src="https://www.hertes.net/wp-content/uploads/2015/03/zert01_thumb.jpg" width="644" height="364" /></a> </p>
<p>Details zu dieser Aktion sind hier zu finden:</p>
<p><a title="https://borntolearn.mslearn.net/b/weblog/archive/2015/02/19/how-to-get-a-windows-10-exam-for-free" href="https://borntolearn.mslearn.net/b/weblog/archive/2015/02/19/how-to-get-a-windows-10-exam-for-free">https://borntolearn.mslearn.net/b/weblog/archive/2015/02/19/how-to-get-a-windows-10-exam-for-free</a></p>
<p>&#160;</p>
<p>Die zweite Aktion, die sich hier gut kombinieren lässt, ist das aktuelle Second-Shot-Angebot. Damit ist es möglich, Prüfungen zwischen dem 05. Januar 2015 und dem 31. Mai 2015 bei Nichtbestehen kostenfrei innerhalb von 30 Tagen zu wiederholen.</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2015/03/secondshot_banner.jpg"><img loading="lazy" decoding="async" title="Web" style="border-top: 0px; border-right: 0px; border-bottom: 0px; float: none; margin-left: auto; border-left: 0px; display: block; margin-right: auto" border="0" alt="Web" src="https://www.hertes.net/wp-content/uploads/2015/03/secondshot_banner_thumb.jpg" width="644" height="260" /></a> </p>
<p>Details zur aktuellen Second-Shot-Aktion sind hier zu finden:</p>
<p><a title="https://www.microsoft.com/learning/de-de/second-shot.aspx" href="https://www.microsoft.com/learning/de-de/second-shot.aspx">https://www.microsoft.com/learning/de-de/second-shot.aspx</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.hertes.net/2015/03/zertifizierung-fr-windows-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Server 2012 R2: WDS macht Probleme beim Aufzeichnungsabbild</title>
		<link>https://www.hertes.net/2015/01/server-2012-r2-wds-macht-probleme-beim-aufzeichnungsabbild/</link>
					<comments>https://www.hertes.net/2015/01/server-2012-r2-wds-macht-probleme-beim-aufzeichnungsabbild/#respond</comments>
		
		<dc:creator><![CDATA[Haiko]]></dc:creator>
		<pubDate>Thu, 29 Jan 2015 21:57:00 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Windows Server 2012]]></category>
		<category><![CDATA[Windows Server 2012 R2]]></category>
		<category><![CDATA[Bereitstellungsdienste]]></category>
		<category><![CDATA[Deplyoment Services]]></category>
		<category><![CDATA[Update 1]]></category>
		<category><![CDATA[WDS]]></category>
		<category><![CDATA[Windows 8.1]]></category>
		<guid isPermaLink="false">http://www.hertes.net/?p=2627</guid>

					<description><![CDATA[In den Windows Bereitstellungsdiensten gibt es die Möglichkeit, ein “Aufzeichnungsabbild” aus einem regulären “Startabbild” zu erzeugen. So natürlich auch beim aktuellen Windows Server 2012 R2: Häufig kommt es dann aber bei dieser Server-Version später beim Booten der aufzuzeichnenden Maschine zu einem Fehler: Dieser Fehler tritt dann auf, wenn man: auf einem Windows Server 2012 R2 (mit oder ohne Update1) im WDS ein Startabbild (Boot Image) auf Basis eines Windows Server 2012 R2 MIT Update1 oder Windows 8.1 MIT Update1 hinzufügt (dabei ist es dann später egal, auf welchem Startabbild das Aufzeichnungsabbild basiert) auf einem Windows Server 2012 (“R1”) im WDS&#8230;]]></description>
										<content:encoded><![CDATA[<p>In den Windows <strong>Bereitstellungsdiensten</strong> gibt es die Möglichkeit, ein “<strong>Aufzeichnungsabbild</strong>” aus einem regulären “<strong>Startabbild</strong>” zu erzeugen. So natürlich auch beim aktuellen Windows Server 2012 R2:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2015/01/wds2.png"><img loading="lazy" decoding="async" title="wds2" style="border-left-width: 0px; border-right-width: 0px; border-bottom-width: 0px; float: none; margin-left: auto; display: block; border-top-width: 0px; margin-right: auto" border="0" alt="wds2" src="https://www.hertes.net/wp-content/uploads/2015/01/wds2_thumb.png" width="644" height="239" /></a> </p>
<p>Häufig kommt es dann aber bei dieser Server-Version später beim Booten der aufzuzeichnenden Maschine zu einem <strong>Fehler</strong>:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2015/01/wds1.png"><img loading="lazy" decoding="async" title="wds1" style="border-left-width: 0px; border-right-width: 0px; border-bottom-width: 0px; float: none; margin-left: auto; display: block; border-top-width: 0px; margin-right: auto" border="0" alt="wds1" src="https://www.hertes.net/wp-content/uploads/2015/01/wds1_thumb.png" width="644" height="484" /></a></p>
<p>Dieser Fehler tritt dann auf, wenn man:</p>
<ul>
<li>auf einem Windows Server 2012 R2 (<u>mit</u> oder <u>ohne</u> Update1) im WDS ein Startabbild (Boot Image) auf Basis eines Windows Server 2012 R2 <u>MIT</u> Update1 oder Windows 8.1 <u>MIT</u> Update1 hinzufügt (dabei ist es dann später egal, auf welchem Startabbild das Aufzeichnungsabbild basiert) </li>
<li>auf einem Windows Server 2012 (“R1”) im WDS ein Startabbild auf Basis eines Windows Server 2012 R2 <u>mit Update1</u> oder Windows 8.1 <u>mit Update1</u> erzeugt </li>
</ul>
<p>Der Fehler würde NICHT auftreten, wenn man <u>vor</u> dem Erzeugen des Aufzeichnungsabbildes noch <u>nie</u> ein Startabbild von Windows 8.1 Update1 oder Windows Server 2012 R2 Update1 importiert hatte.</p>
<p>Natürlich kann man den <strong>Fehler</strong> aber auch anderweitig <strong>umgehen bzw. beheben</strong>:</p>
<p>Dazu hinterlegt man zunächst das gewünschte <strong>Startabbild</strong> (dabei spielt es keine Rolle, ob bisher ein Update-1-Startabbild hinterlegt wurde oder nicht, das zu hinterlegende Abbild selbst darf auch von einer Update-1-Version stammen):</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2015/01/wds7.png"><img loading="lazy" decoding="async" title="wds7" style="border-left-width: 0px; border-right-width: 0px; border-bottom-width: 0px; float: none; margin-left: auto; display: block; border-top-width: 0px; margin-right: auto" border="0" alt="wds7" src="https://www.hertes.net/wp-content/uploads/2015/01/wds7_thumb.png" width="644" height="271" /></a> </p>
<p>Danach erzeugt man aus diesem ein <strong>Aufzeichnungsabbild</strong>:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2015/01/wds21.png"><img loading="lazy" decoding="async" title="wds2" style="border-left-width: 0px; border-right-width: 0px; border-bottom-width: 0px; float: none; margin-left: auto; display: block; border-top-width: 0px; margin-right: auto" border="0" alt="wds2" src="https://www.hertes.net/wp-content/uploads/2015/01/wds2_thumb1.png" width="644" height="239" /></a> </p>
<p>Dabei sollte man dass entstehende Abbild <u>nicht</u> direkt dem WDS Server hinzugefügt wird:</p>
<p> <center>   </p>
<p><a href="https://www.hertes.net/wp-content/uploads/2015/01/wds3.png"><img loading="lazy" decoding="async" title="wds3" style="border-left-width: 0px; border-right-width: 0px; border-bottom-width: 0px; display: inline; border-top-width: 0px" border="0" alt="wds3" src="https://www.hertes.net/wp-content/uploads/2015/01/wds3_thumb.png" width="320" height="304" /></a> <a href="https://www.hertes.net/wp-content/uploads/2015/01/wds4.png"><img loading="lazy" decoding="async" title="wds4" style="border-left-width: 0px; border-right-width: 0px; border-bottom-width: 0px; display: inline; border-top-width: 0px" border="0" alt="wds4" src="https://www.hertes.net/wp-content/uploads/2015/01/wds4_thumb.png" width="320" height="304" /></a> </p>
<p> </center>  </p>
<p>Anschließend muss das entstandene <strong>WIM-File</strong> (in meinem Beispiel “C:\aufz.wim”) mittels <strong>DISM</strong> gemountet werden:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2015/01/wds5.png"><img loading="lazy" decoding="async" title="wds5" style="border-top: 0px; border-right: 0px; border-bottom: 0px; float: none; margin-left: auto; border-left: 0px; display: block; margin-right: auto" border="0" alt="wds5" src="https://www.hertes.net/wp-content/uploads/2015/01/wds5_thumb.png" width="644" height="381" /></a></p>
<p>Für das <strong>Mounten</strong> verwendet man einen Aufruf in dieser Form:</p>
<blockquote>
<p>dism /Mount-Wim /WimFile:C:\aufz.wim /index:1 /MountDir:C:\mount</p>
</blockquote>
<p>(<u>Achtung</u>: Keine Leerzeichen nach den Doppelpunkten!)</p>
<p>Im Anschluss kann die Datei direkt wieder “unmounted” werden (ohne dass sie dabei inhaltlich wirklich verändert wurde):</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2015/01/wds6.png"><img loading="lazy" decoding="async" title="wds6" style="border-top: 0px; border-right: 0px; border-bottom: 0px; float: none; margin-left: auto; border-left: 0px; display: block; margin-right: auto" border="0" alt="wds6" src="https://www.hertes.net/wp-content/uploads/2015/01/wds6_thumb.png" width="644" height="381" /></a> </p>
<p>Hierzu wird folgender Aufruf verwendet:</p>
<blockquote>
<p>dism /Unmount-Wim /MountDir:C:\mount /commit</p>
</blockquote>
<p>Das nun neu erzeugte WIM-File kann jetzt als funktionsfähiges <strong>Aufzeichnunge-/Startabbild</strong> auf dem WDS-Server hinterlegt werden:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2015/01/wds71.png"><img loading="lazy" decoding="async" title="wds7" style="border-top: 0px; border-right: 0px; border-bottom: 0px; float: none; margin-left: auto; border-left: 0px; display: block; margin-right: auto" border="0" alt="wds7" src="https://www.hertes.net/wp-content/uploads/2015/01/wds7_thumb1.png" width="644" height="271" /></a> </p>
<p>Nun kann eine (Test-)Maschine per <strong>PXE</strong> gebootet werden, es sollte nun, da es mehrere Startabbilder gibt, eine <strong>Auswahl</strong> möglich sein:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2015/01/wds8.png"><img loading="lazy" decoding="async" title="wds8" style="border-top: 0px; border-right: 0px; border-bottom: 0px; float: none; margin-left: auto; border-left: 0px; display: block; margin-right: auto" border="0" alt="wds8" src="https://www.hertes.net/wp-content/uploads/2015/01/wds8_thumb.png" width="644" height="484" /></a> </p>
<p>Wenn man das <strong>Aufzeichnungsabbild</strong> gewählt und die Maschine komplett gebootet hat sollte in etwa folgendes <strong>Menü</strong> zu sehen sein:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2015/01/wds9.png"><img loading="lazy" decoding="async" title="wds9" style="border-top: 0px; border-right: 0px; border-bottom: 0px; float: none; margin-left: auto; border-left: 0px; display: block; margin-right: auto" border="0" alt="wds9" src="https://www.hertes.net/wp-content/uploads/2015/01/wds9_thumb.png" width="528" height="484" /></a> </p>
<p>Nun kann die Festplatte der (Test-)Maschine aufgezeichnet werden. Wichtig ist dabei allerdings, dass dies nur funktioniert, wenn man das dort laufende Betriebssystem vorher mit <strong>sysprep </strong>vorbereitet hat.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.hertes.net/2015/01/server-2012-r2-wds-macht-probleme-beim-aufzeichnungsabbild/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>AutoAdminLogon f&#252;r Windows Server 2012 R2 und andere OS</title>
		<link>https://www.hertes.net/2014/12/autoadminlogon-fr-windows-server-2012-r2-und-andere-os/</link>
					<comments>https://www.hertes.net/2014/12/autoadminlogon-fr-windows-server-2012-r2-und-andere-os/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 18 Dec 2014 14:28:08 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows 10]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Windows Client]]></category>
		<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[Windows Server 2008 R2]]></category>
		<category><![CDATA[Windows Server 2012]]></category>
		<category><![CDATA[Windows Server 2012 R2]]></category>
		<category><![CDATA[Automatisierung]]></category>
		<category><![CDATA[Logon]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">http://www.hertes.net/?p=2547</guid>

					<description><![CDATA[Manchmal besteht der Wunsch, auf einem Windows-System eine automatische Anmeldung nach dem (Neu)Start durchzuführen. Dies ist mit sehr einfachen Mitteln möglich und funktioniert sowohl bei Client- als auch Server-Betriebssystemen, auch bei älteren. Nötig ist dazu nur der Zugriff auf die Registry und ein passendes Benutzerkonto. Als erstes wird der Registrierungseditor mittels “regedit.exe” geöffnet: Dort muss zu dem Schlüssel unter HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon navigiert werden. Abschließend sind folgende Schlüssel nötig (alle als Zeichenfolge, REG_SZ) AutoAdminLogon = “1” DefaultUserName = BENUTZER DefaultPassword = PASSWORT DefaultDomainName = DOMÄNE So etwa wie im Screenshot… Das war es schon gewesen. Beim nächsten Neustart ist die automatische&#8230;]]></description>
										<content:encoded><![CDATA[<p>Manchmal besteht der Wunsch, auf einem Windows-System eine automatische Anmeldung nach dem (Neu)Start durchzuführen. Dies ist mit sehr einfachen Mitteln möglich und funktioniert sowohl bei Client- als auch Server-Betriebssystemen, auch bei älteren. Nötig ist dazu nur der Zugriff auf die Registry und ein passendes Benutzerkonto.</p>
<p>Als erstes wird der Registrierungseditor mittels “regedit.exe” geöffnet:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/12/autoadminlogon1.png"><img loading="lazy" decoding="async" title="autoadminlogon1" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; border-left: 0px; display: block; padding-right: 0px" border="0" alt="autoadminlogon1" src="https://www.hertes.net/wp-content/uploads/2014/12/autoadminlogon1_thumb.png" width="476" height="284" /></a></p>
<p>Dort muss zu dem Schlüssel unter HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon navigiert werden.</p>
<p>Abschließend sind folgende Schlüssel nötig (alle als Zeichenfolge, REG_SZ)</p>
<ul>
<li>AutoAdminLogon = “1”</li>
<li>DefaultUserName = BENUTZER</li>
<li>DefaultPassword = PASSWORT</li>
<li>DefaultDomainName = DOMÄNE</li>
</ul>
<p>So etwa wie im Screenshot…</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/12/autoadminlogon2.png"><img loading="lazy" decoding="async" title="autoadminlogon2" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; border-left: 0px; display: block; padding-right: 0px" border="0" alt="autoadminlogon2" src="https://www.hertes.net/wp-content/uploads/2014/12/autoadminlogon2_thumb.png" width="644" height="227" /></a></p>
<p>Das war es schon gewesen. Beim nächsten Neustart ist die automatische Anmeldung aktiv…</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.hertes.net/2014/12/autoadminlogon-fr-windows-server-2012-r2-und-andere-os/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>WIndows 8.1 Update 2 und Windows 9 &#8211; erste Ger&#252;chte</title>
		<link>https://www.hertes.net/2014/07/windows-81-update-2-und-windows-9-erste-geruchte/</link>
					<comments>https://www.hertes.net/2014/07/windows-81-update-2-und-windows-9-erste-geruchte/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 08 Jul 2014 19:12:00 +0000</pubDate>
				<category><![CDATA[Windows 10]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[Windows 8.1]]></category>
		<category><![CDATA[Windows 9 / Windows 10]]></category>
		<guid isPermaLink="false">http://www.hertes.net/?p=2380</guid>

					<description><![CDATA[Update: Windows 9 wird offiziell &#8222;Windows 10&#8220; heissen&#8230; Aktuellen Gerüchten zufolge soll im August 2014 das Update 2 für Windows 8.1 kommen, Dieses soll auch Voraussetzung für ein späteres Upgrade auf Windows 9 sein, liefert wohl aber nicht das erhoffte Startmenü wieder zurück. Dieses wird wohl erst in Windows 9 enthalten sein, welches voraussichtlich im Herbst 2015 final erscheinen soll. Vermutlich wird dann also im Herbst 2014 eine erste Vorabversion (“Preview”) erhältlich sein. Im neuen Windows 9 kehrt das Startmenü dann wie von vielen Kunden gewünscht zurück – allerdings nur auf Geräten ohne Touchscreen. Hier wird es auch nicht möglich&#8230;]]></description>
										<content:encoded><![CDATA[<p>Update: Windows 9 wird offiziell &#8222;Windows 10&#8220; heissen&#8230;</p>
<p>Aktuellen Gerüchten zufolge soll im August 2014 das Update 2 für Windows 8.1 kommen, Dieses soll auch Voraussetzung für ein späteres Upgrade auf Windows 9 sein, liefert wohl aber nicht das erhoffte Startmenü wieder zurück. Dieses wird wohl erst in Windows 9 enthalten sein, welches voraussichtlich im Herbst 2015 final erscheinen soll. Vermutlich wird dann also im Herbst 2014 eine erste Vorabversion (“Preview”) erhältlich sein.</p>
<p>Im neuen Windows 9 kehrt das Startmenü dann wie von vielen Kunden gewünscht zurück – allerdings nur auf Geräten ohne Touchscreen. Hier wird es auch nicht möglich sein, den Startscreen von Windows 8 zu nutzen. Dafür lässt sich das neue Startmenü dann wohl auch vergrößert darstellen und die Modern Style UI Apps laufen dann in der “Desktop-Welt”. Auf Touch-Geräten wird wohl weiterhin das Menü aus Windows 8 enthalten sein.</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/07/t1-f9a18ec5da6206e5.jpg"><img loading="lazy" decoding="async" style="background-image: none; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-width: 0px;" title="t1-f9a18ec5da6206e5" src="https://www.hertes.net/wp-content/uploads/2014/07/t1-f9a18ec5da6206e5_thumb.jpg" alt="t1-f9a18ec5da6206e5" width="513" height="484" border="0" /></a></p>
<p align="center">(Abb.: So könnte das neue (“alte”) Startmenü in Windows 9 auf Nicht-Touch-Geräten aussehen)</p>
<p>Zeitgleich mit dem Release von Windows 9 wird wohl auch Windows 365 starten – ein neues Modell, bei dem man das Betriebssystem nicht kauft, sondern in einem Abo mietet. Gerüchten zufolge soll Windows 9 für Besitzer von Windows 8.1 kostenlos sein, für den Rest schlägt der reguläre Kauf wohl mit einem Preis von etwa 80€ zu Buche. Hier muss man sehen, was das Abo-Modell im Vergleich kosten wird.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.hertes.net/2014/07/windows-81-update-2-und-windows-9-erste-geruchte/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Windows 8.1 Benutzer ohne Fr&#252;hjahrs-Update (Update 1) bekommen keine Patches mehr</title>
		<link>https://www.hertes.net/2014/06/windows-81-benutzer-ohne-fruhjahrs-update-update-1-bekommen-keine-patches-mehr/</link>
					<comments>https://www.hertes.net/2014/06/windows-81-benutzer-ohne-fruhjahrs-update-update-1-bekommen-keine-patches-mehr/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 11 Jun 2014 04:13:00 +0000</pubDate>
				<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Patch]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[Windows 8.1]]></category>
		<guid isPermaLink="false">http://www.hertes.net/?p=2337</guid>

					<description><![CDATA[Was Microsoft bereits im April angekündigt hatte (http://blogs.technet.com/b/askpfeplat/archive/2014/04/07/exploring-windows-8-1-update-start-screen-desktop-and-other-enhancements.aspx) wird nun Ernst: Wer das Update 1 für Windows 8.1 aus dem April 2014 bisher nicht installiert hat, bekommt seit dem gestrigen Patch-Tuesday keine Updates für sein Betriebssystem mehr! (Das gilt natürlich auch für künftige Patches) Daher sei an dieser Stelle noch einmal daran erinnert, dieses Update zu installieren und neben den folgenden Sicherheitsupdates auch von zahlreichen Verbesserungen zu profitieren. Einige davon hat mein Kollege Remigiusz Suskiewicz in seinem letzten Blogpost beschrieben. Das Update 1 (KB2919355) bekommen Sie hier: http://www.microsoft.com/de-de/download/details.aspx?id=42335]]></description>
										<content:encoded><![CDATA[<p>Was Microsoft bereits im April angekündigt hatte (<a title="http://blogs.technet.com/b/askpfeplat/archive/2014/04/07/exploring-windows-8-1-update-start-screen-desktop-and-other-enhancements.aspx" href="http://blogs.technet.com/b/askpfeplat/archive/2014/04/07/exploring-windows-8-1-update-start-screen-desktop-and-other-enhancements.aspx">http://blogs.technet.com/b/askpfeplat/archive/2014/04/07/exploring-windows-8-1-update-start-screen-desktop-and-other-enhancements.aspx</a>) wird nun Ernst:</p>
<p>Wer das Update 1 für Windows 8.1 aus dem April 2014 bisher nicht installiert hat, bekommt seit dem gestrigen Patch-Tuesday keine Updates für sein Betriebssystem mehr! (Das gilt natürlich auch für künftige Patches)</p>
<p>Daher sei an dieser Stelle noch einmal daran erinnert, dieses Update zu installieren und neben den folgenden Sicherheitsupdates auch von zahlreichen Verbesserungen zu profitieren. Einige davon hat mein Kollege Remigiusz Suskiewicz in seinem <a href="http://blog.ppedv.de/post/2014/05/31/Update-auf-Windows-81-Update-1-Die-Installation-und-die-Neuerungen.aspx" target="_blank">letzten Blogpost</a> beschrieben.</p>
<p>Das Update 1 (KB2919355) bekommen Sie hier: </p>
<p><a title="http://www.microsoft.com/de-de/download/details.aspx?id=42335" href="http://www.microsoft.com/de-de/download/details.aspx?id=42335">http://www.microsoft.com/de-de/download/details.aspx?id=42335</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.hertes.net/2014/06/windows-81-benutzer-ohne-fruhjahrs-update-update-1-bekommen-keine-patches-mehr/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>BranchCache mit Windows Server 2012 R2 und Windows 8.1</title>
		<link>https://www.hertes.net/2014/05/branchcache-mit-windows-server-2012-r2-und-windows-8-1/</link>
					<comments>https://www.hertes.net/2014/05/branchcache-mit-windows-server-2012-r2-und-windows-8-1/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Mon, 05 May 2014 19:59:00 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Windows Server 2012]]></category>
		<category><![CDATA[Windows Server 2012 R2]]></category>
		<category><![CDATA[Branchcache]]></category>
		<category><![CDATA[Fileserver]]></category>
		<category><![CDATA[Windows 8.1]]></category>
		<guid isPermaLink="false">http://www.hertes.net/?p=2315</guid>

					<description><![CDATA[BranchCache, eine Technologie die mit dem Windows Server 2008 R2 und Windows 7 eingeführt wurde, ermöglicht es, den Datenverkehr auf WAN-Strecken und die damit einhergehende Wartezeit bei der Übertragung zu reduzieren. Es geht darum, den lesenden Zugriff von einem Unternehmens-Standort (hier als “Filiale” bezeichnet) auf Daten in einem anderen Standort (hier als “Firmensitz” bezeichnet) zwischen zu speichern (“caching”). Grundsätzlich stehen zwei verschiedene Modi zur Verfügung: Hosted Cache (“Gehosteter Cache”) Distributed Cache (“Verteilter Cache”) Beim Hosted Cache übernimmt ein Server in der Filiale die Aufgabe des Caches. Er speichert die Daten entsprechend zwischen. Beim Distributed Cache wird auf einen dedizierten Server&#8230;]]></description>
										<content:encoded><![CDATA[<p>BranchCache, eine Technologie die mit dem Windows Server 2008 R2 und Windows 7 eingeführt wurde, ermöglicht es, den Datenverkehr auf WAN-Strecken und die damit einhergehende Wartezeit bei der Übertragung zu reduzieren. Es geht darum, den <u>lesenden</u> Zugriff von einem Unternehmens-Standort (hier als “Filiale” bezeichnet) auf Daten in einem anderen Standort (hier als “Firmensitz” bezeichnet) zwischen zu speichern (“caching”).</p>
<p>Grundsätzlich stehen zwei verschiedene Modi zur Verfügung:</p>
<ul>
<li>Hosted Cache (“Gehosteter Cache”) </li>
<li>Distributed Cache (“Verteilter Cache”) </li>
</ul>
<p>Beim Hosted Cache übernimmt ein Server in der Filiale die Aufgabe des Caches. Er speichert die Daten entsprechend zwischen. Beim Distributed Cache wird auf einen dedizierten Server verzichtet – die Clients der Filiale übernehmen das Caching. Vorteil des Distributed Cachings ist also der Verzicht auf zusätzliche Hardware und den damit verbundenen Verwaltungsaufwand. Allerdings entsteht der Nachteil, dass das Endgerät, welches die Daten in seinem Cache hält, zum benötigten Zeitpunkt nicht online ist und somit der Cache nicht genutzt werden kann.</p>
<p>Es existieren mittlerweile zwei verschiedene Versionen:</p>
<ul>
<li>V1 steht bereits ab Windows Server 2008 R2 und Windows 7 zur Verfügung </li>
<li>V2 steht erst ab Windows Server 2012 und Windows 8 zur Verfügung </li>
</ul>
<p>Der Ablauf beim Distributed Cache ist (etwas vereinfacht) der folgende:</p>
<ol>
<li>Client1 in der Filiale soll ein File auf einem Dateiserver am Firmensitz öffnen; durch eine GPO ist er für BranchCache und den Modus “Distributed Cache” konfiguriert. Beim Dateiserver fragt er nicht die Datei selber sondern deren Hash (eine Art Fingerabdruck, die das File in seiner aktuellen Version identifiziert) an. </li>
<li>Der Dateiserver überträgt den Hash zum Client1 (Der Hash wurde vom Dateiserver generiert, dieser ist ebenfalls durch eine GPO entsprechend konfiguriert) </li>
<li>Client1 fragt per Broadcast in seinem Subnetz an, ob andere Clients das File in ihrem Cache haben, welches durch den Hash identifiziert wird; im Beispiel gehen wir nun davon aus, dass keiner der anderen Clients dieses File bisher geöffnet hat </li>
<li>Client1 fragt nun noch einmal beim Dateiserver an; dieses Mal jedoch direkt nach der Datei statt nach deren Hash </li>
<li>Die Datei wird zum Client1 übertragen und dort geöffnet </li>
<li>Wenn nun auch Client2 in der Filiale diese Datei öffnen will, dann beginnt der Prozess wieder “von neuem”: Client2 fragt beim Dateiserver den Hash für das File an </li>
<li>Der Dateiserver überträgt den Hash an Client2 </li>
<li>Client2 fragt per Broadcast in seinem Subnetz nach dem Hash </li>
<li>Client1 meldet sich, da dieser das File in seinem Cache hat (Voraussetzung ist, dass sich das File zwischenzeitlich auf dem Dateiserver nicht geändert hat, denn dann hätte es einen anderen Hash!); Die Datei wird nun aus dem Cache von Client1 zum Client2 übertragen; dieser kann das File nun öffnen (und er hält es fortan auch in seinem Cache vor!) </li>
</ol>
<p>Dabei haben also folgende Übertragungen stattgefunden:</p>
<ul>
<li>2x Abfrage des Hashes über WAN </li>
<li>1x Übertragung des Files über WAN </li>
<li>1x Übertragung des Files über LAN </li>
</ul>
<p>Eingespart wurde also die zweite Übertragung des Files über WAN; stattdessen kommt die Übertragung der Hashes hinzu, die aber im Verhältnis deutlich kleiner sind</p>
<p>BranchCache ist also insbesondere sinnvoll bei:</p>
<ul>
<li>Unternehmen mit verschiedenen Standorten </li>
<li>Häufigen lesenden Zugriffen auf sich selten ändernde Dateien über das gesamte Unternehmensnetzwerk </li>
</ul>
<p>Die Edition des Server-Betriebssystems spielt bei einem Server 2012 R2 keine Rolle, bei den Clients muss unter Windows 8.1 die Enterprise-Edition eingesetzt werden. (Unter Server 2008 R2 muss der Caching-Server mindestens die Enterprise-Edition verwenden, für den Dateiserver spielt die Edition keine Rolle; Windows 7 Clients müssen mindestens die Enterprise-Edition verwenden.)</p>
<p>Im Folgenden möchte ich den Aufbau einer einfachen BranchCache-Umgebung darstellen. Dabei gibt es einen Server, SRV1, der neben der Aufgabe des Domänen-Controllers auch gleichzeitig die Aufgabe des Dateiserver übernimmt. Die beiden Clients WIN8-1 und WIN8-2 werden dann den Zugriff auf eine Datei des Dateiservers durchführen.</p>
<p>Auf SRV1 wird über den Servermanager / “Verwalten” / “Rollen und Features hinzufügen” ein Rollendienst hinzugefügt:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/05/branchcache1.png"><img loading="lazy" decoding="async" title="branchcache1" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="branchcache1" src="https://www.hertes.net/wp-content/uploads/2014/05/branchcache1_thumb.png" width="644" height="481" /></a></p>
<p>Unterhalb der Rolle “Datei-/Speicherdienste” findet sich “BranchCache für Netzwerkdateien”:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/05/branchcache2.png"><img loading="lazy" decoding="async" title="branchcache2" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="branchcache2" src="https://www.hertes.net/wp-content/uploads/2014/05/branchcache2_thumb.png" width="644" height="458" /></a></p>
<p>Nach der Installation dieses Rollendienstes kann nun an jeder Freigabe, bei der dies gewünscht ist, BranchCache aktiviert werden. Dies geschieht in den Eigenschaften der “Erweiterten Freigabe” über den Button “Zwischenspeichern”:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/05/branchcache3.png"><img loading="lazy" decoding="async" title="branchcache3" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="branchcache3" src="https://www.hertes.net/wp-content/uploads/2014/05/branchcache3_thumb.png" width="371" height="375" /></a></p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/05/branchcache4.png"><img loading="lazy" decoding="async" title="branchcache4" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="branchcache4" src="https://www.hertes.net/wp-content/uploads/2014/05/branchcache4_thumb.png" width="430" height="428" /></a></p>
<p>Als nächstes müssen nun zwei Gruppenrichtlinien konfiguriert werden:</p>
<ul>
<li>CPR_BranchCache_Content ist für den Fileserver gedacht und wird sinnvollerweise über die Sicherheitsfilter nur auf diese angewendet </li>
<li>CPR_BranchCache_Clients ist für die Clients gedacht und kann z.B. per WMI-Filter dynamisch auf diese wirken </li>
</ul>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/05/branchcache5.png"><img loading="lazy" decoding="async" title="branchcache5" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="branchcache5" src="https://www.hertes.net/wp-content/uploads/2014/05/branchcache5_thumb.png" width="644" height="384" /></a></p>
<p>Innerhalb der Content-Policy wird zum einen die Hash-Veröffentlichung aktiviert und zum anderen die Version festgelegt. Man kann hier zwischen “Nur V1”, “V1 und V2” oder “Nur V2” wählen:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/05/branchcache6.png"><img loading="lazy" decoding="async" title="branchcache6" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="branchcache6" src="https://www.hertes.net/wp-content/uploads/2014/05/branchcache6_thumb.png" width="644" height="358" /></a></p>
<p>Der relevante Pfad innerhalb der GPO lautet “Computerkonfiguration” / “Richtlinien” / “Administrative Vorlagen” / “Netzwerk” / “LanMan-Server”</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/05/branchcache7.png"><img loading="lazy" decoding="async" title="branchcache7" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="branchcache7" src="https://www.hertes.net/wp-content/uploads/2014/05/branchcache7_thumb.png" width="527" height="484" /></a></p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/05/branchcache8.png"><img loading="lazy" decoding="async" title="branchcache8" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="branchcache8" src="https://www.hertes.net/wp-content/uploads/2014/05/branchcache8_thumb.png" width="527" height="484" /></a></p>
<p>Innerhalb der Client-Policy sind etwas mehr Einstellungen vorzunehmen:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/05/branchcache9.png"><img loading="lazy" decoding="async" title="branchcache9" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="branchcache9" src="https://www.hertes.net/wp-content/uploads/2014/05/branchcache9_thumb.png" width="644" height="461" /></a></p>
<p>Hier muss BranchCache aktiviert werden, der Modus “Verteilter Cache” festgelegt werden und optional können die maximale Speicherbelegung, das maximale Alter und weitere Dinge konfiguriert werden. Aus Demo-Zwecken werde ich außerdem in der Einstellung “BranchCache für Netzwerkdateien konfigurieren” die minimale Latenz von 80ms auf 0ms herabsetzen und somit das Nutzen des Caches auch in einem schnellen Netzwerk erzwingen:</p>
<p> <center>   </p>
<table cellspacing="0" cellpadding="0" width="400" border="0">
<tbody>
<tr>
<td valign="top" width="200"><a href="https://www.hertes.net/wp-content/uploads/2014/05/branchcache10.png"><img loading="lazy" decoding="async" title="branchcache10" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="branchcache10" src="https://www.hertes.net/wp-content/uploads/2014/05/branchcache10_thumb.png" width="244" height="224" /></a></td>
<td valign="top" width="200"><a href="https://www.hertes.net/wp-content/uploads/2014/05/branchcache11.png"><img loading="lazy" decoding="async" title="branchcache11" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="branchcache11" src="https://www.hertes.net/wp-content/uploads/2014/05/branchcache11_thumb.png" width="244" height="224" /></a></td>
</tr>
<tr>
<td valign="top" width="200"><a href="https://www.hertes.net/wp-content/uploads/2014/05/branchcache12.png"><img loading="lazy" decoding="async" title="branchcache12" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="branchcache12" src="https://www.hertes.net/wp-content/uploads/2014/05/branchcache12_thumb.png" width="244" height="224" /></a></td>
<td valign="top" width="200"><a href="https://www.hertes.net/wp-content/uploads/2014/05/branchcache13.png"><img loading="lazy" decoding="async" title="branchcache13" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="branchcache13" src="https://www.hertes.net/wp-content/uploads/2014/05/branchcache13_thumb.png" width="244" height="224" /></a></td>
</tr>
<tr>
<td valign="top" width="200"><a href="https://www.hertes.net/wp-content/uploads/2014/05/branchcache14.png"><img loading="lazy" decoding="async" title="branchcache14" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="branchcache14" src="https://www.hertes.net/wp-content/uploads/2014/05/branchcache14_thumb.png" width="244" height="224" /></a></td>
<td valign="top" width="200">&#160;</td>
</tr>
</tbody>
</table>
<p> </center>  </p>
<p>Sinnvollerweise wird nun auf dem Server und den Clients ein gpupdate durchgeführt, um nicht erst auf das Verarbeiten der GPOs warten zu müssen:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/05/branchcache15.png"><img loading="lazy" decoding="async" title="branchcache15" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; border-left: 0px; display: block; padding-right: 0px" border="0" alt="branchcache15" src="https://www.hertes.net/wp-content/uploads/2014/05/branchcache15_thumb.png" width="644" height="238" /></a></p>
<p>Nun kann man auf den Clients noch einmal die Branchcache-Konfiguration überprüfen. Dies geschieht mit Hilfe des Aufrufes</p>
<p><font face="Courier New">netsh branchcache show status all</font></p>
<p>Sollte dann in etwa so aussehen:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/05/branchcache16.png"><img loading="lazy" decoding="async" title="branchcache16" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; border-left: 0px; display: block; padding-right: 0px" border="0" alt="branchcache16" src="https://www.hertes.net/wp-content/uploads/2014/05/branchcache16_thumb.png" width="519" height="484" /></a></p>
<p>Nun kann mittels Leistungsüberwachung getestet werden, ob die Konfiguration funktioniert. Dazu sind die entsprechenden Indikatoren hinzuzufügen:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/05/branchcache18.png"><img loading="lazy" decoding="async" title="branchcache18" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; border-left: 0px; display: block; padding-right: 0px" border="0" alt="branchcache18" src="https://www.hertes.net/wp-content/uploads/2014/05/branchcache18_thumb.png" width="644" height="481" /></a></p>
<p>Sinnvollerweise schaltet man nun die Leistungsüberwachung auf “Bericht” um (drittes Symbol in der Leiste oben von links gezählt).</p>
<p>Der Benutzer “Franz Iskaner” öffnet nun von WIN8-1 aus ein Dokument auf dem Dateiserver:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/05/branchcache19.png"><img loading="lazy" decoding="async" title="branchcache19" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; border-left: 0px; display: block; padding-right: 0px" border="0" alt="branchcache19" src="https://www.hertes.net/wp-content/uploads/2014/05/branchcache19_thumb.png" width="644" height="276" /></a></p>
<p>Eine Eigenart des integrierten PDF-Readers auf WIndows 8 ist, dass dieser das Dokument nur in Teilen öffnet und beim Lesen dann entsprechend die Inhalte nachlädt. Daher wurde nun also nicht das gesamte Dokument mit ca. 13MB sondern nur ein Teil davon vom Server abgerufen (ich habe die ersten hundert Seiten von ca. 2000 durchgeblättert):</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/05/branchcache20.png"><img loading="lazy" decoding="async" title="branchcache20" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; border-left: 0px; display: block; padding-right: 0px" border="0" alt="branchcache20" src="https://www.hertes.net/wp-content/uploads/2014/05/branchcache20_thumb.png" width="644" height="386" /></a></p>
<p>Auf WIN8-2 öffnet nun “Karl Auer” das selbe Dokument, die Leistungsüberwachung ist geöffnet und zeigt nun folgende Werte auf WIN8-2:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/05/branchcache21.png"><img loading="lazy" decoding="async" title="branchcache21" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; border-left: 0px; display: block; padding-right: 0px" border="0" alt="branchcache21" src="https://www.hertes.net/wp-content/uploads/2014/05/branchcache21_thumb.png" width="644" height="387" /></a></p>
<p>(WIN8-1 hatte zwischenzeitlich weitere Teile des Dokumentes abgerufen, weshalb WIN8-2 etwas mehr vom Cache abrufen konnte als WIN8-1 im oberen Screenshot vom Server abgerufen hatte)</p>
<p>Ein Teil des Dokumentes kommt hier (das aber insbesondere wegen des PDF-Readers) immer noch vom Server – nämlich der Teil, der nicht im Cache auf WIN8-1 liegt, weil er dort bisher nicht geöffnet wurde. </p>
<p>Die Funktionsfähigkeit der BranchCache-Konfiguration ist damit aber gezeigt.</p>
<p>An dieser Stelle sei nochmal darauf hingewiesen, das BranchCache nur LESEND funktioniert – beim Schreiben wird direkt auf den Server geschrieben und nicht in den Cache!</p>
<p>Weitere Informationen zum Thema Branchcache finden sich im Microsoft Technet:</p>
<p><a title="http://technet.microsoft.com/de-de/library/hh831696.aspx" href="http://technet.microsoft.com/de-de/library/hh831696.aspx">http://technet.microsoft.com/de-de/library/hh831696.aspx</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.hertes.net/2014/05/branchcache-mit-windows-server-2012-r2-und-windows-8-1/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
