<?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>bastianmueller - blog</title>
	<atom:link href="http://www.awesomeit.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.awesomeit.de</link>
	<description>awesomeit.blog</description>
	<lastBuildDate>Tue, 03 Jan 2012 19:07:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Batch-Scriptsammlung</title>
		<link>http://www.awesomeit.de/2012/01/03/batch-scriptsammlung/</link>
		<comments>http://www.awesomeit.de/2012/01/03/batch-scriptsammlung/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 12:04:16 +0000</pubDate>
		<dc:creator>Bastian Müller</dc:creator>
				<category><![CDATA[Workaround]]></category>
		<category><![CDATA[Basics]]></category>
		<category><![CDATA[Programmierung]]></category>

		<guid isPermaLink="false">http://www.awesomeit.de/?p=817</guid>
		<description><![CDATA[Da ich in letzter Zeit immer öfter mit Kommandozeilen-Scripting konfrontiert werde, erstelle ich diesen Artikel als &#8220;Cheat-Sheet&#8221;, dass sich ständig...]]></description>
			<content:encoded><![CDATA[<p>Da ich in letzter Zeit immer öfter mit Kommandozeilen-Scripting konfrontiert werde, erstelle ich diesen Artikel als &#8220;Cheat-Sheet&#8221;, dass sich ständig erweitern soll.</p>
<p><strong>Eine einfache Mirror-Sicherung per Robocopy auf eine UNC-Freigabe.</strong><br />
Als erster Parameter wird ein Unterverzeichnis übergeben (01-Montag, 03-Mittwoch, etc.), in das das Script die jeweilige Sicherung schreibt.<br />
Wird ein zweiter Parameter angegeben (egal welcher) wird &#8211; z.B. für einen speziellen Wochentag &#8211; eine zusätzliche Sicherung gefahren.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left2">Download <a href="http://www.awesomeit.de/wp-content/plugins/wp-codebox/wp-codebox.php?p=817&amp;download=robocopy.bat">robocopy.bat</a></span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p8173"><td class="code" id="p817code3"><pre class="dos" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">REM Kopiervorgang mit Parametern für Werktag-Ordner</span>
<span style="color: #808080; font-style: italic;">REM Aufruf mit script.bat 01-Montag (xyz), script.bat 02-Dienstag (xyz)</span>
robocopy.exe &quot;C:\Ressourcen\dir1&quot; \\192.168.102.100\docbkp\<span style="color: #33cc33;">%</span><span style="color: #448888;">1</span>\dir1 /MIR
robocopy.exe &quot;C:\Ressourcen\dir2&quot; \\192.168.102.100\docbkp\<span style="color: #33cc33;">%</span><span style="color: #448888;">1</span>\dir2 /MIR
<span style="color: #808080; font-style: italic;">
REM Wenn kein zweiter Parameter angegeben wurde, spring zum Ende</span>
<a href="http://www.ss64.com/nt/if.html"><span style="color: #00b100; font-weight: bold;">if</span></a> <span style="color: #33cc33;">%</span><span style="color: #448888;">2</span>!==! <a href="http://www.ss64.com/nt/goto.html"><span style="color: #00b100; font-weight: bold;">goto</span></a> ende
robocopy.exe &quot;C:\Ressourcen\dir3&quot; \\192.168.102.100\docbkp\<span style="color: #33cc33;">%</span><span style="color: #448888;">1</span>\dir3 /MIR
:<span style="color: #b100b1; font-weight: bold;">ende</span></pre></td></tr></table></div>

<p><strong>Netzwerk-Drucker per con2prt.exe über CMD-Script verbinden</strong><br />
Verbindet einen freigegebenen Netzwerk-Drucker am Client per UNC-Pfad</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left2">Download <a href="http://www.awesomeit.de/wp-content/plugins/wp-codebox/wp-codebox.php?p=817&amp;download=map-printer.bat">map-printer.bat</a></span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p8174"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code" id="p817code4"><pre class="dos" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">REM con2prt.exe sollte am besten im NETLOGON des DC's liegen</span>
<span style="color: #808080; font-style: italic;">REM Download con2prt.exe: http://www.awesomeit.de/wp-content/uploads/2012/01/con2prt.exe</span>
<span style="color: #808080; font-style: italic;">
REM Alle lokalen Netzwerkdrucker löschen</span>
\\dcsrv01\netlogon\con2prt.exe /f
<span style="color: #808080; font-style: italic;">REM Drucker verbinden</span>
\\dcsrv01\netlogon\con2prt.exe /c \\dcsrv01\Drucker1
<span style="color: #808080; font-style: italic;">REM Drucker als Standard-Drucker verbinden</span>
\\dcsrv01\netlogon\con2prt.exe /<a href="http://www.ss64.com/nt/cd.html"><span style="color: #b1b100; font-weight: bold;">cd</span></a> \\dcsrv01\Drucker1</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.awesomeit.de/2012/01/03/batch-scriptsammlung/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>G-Data AVCleaner silent ausführen</title>
		<link>http://www.awesomeit.de/2012/01/03/g-data-avcleaner-silent-ausfuhren/</link>
		<comments>http://www.awesomeit.de/2012/01/03/g-data-avcleaner-silent-ausfuhren/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 06:32:19 +0000</pubDate>
		<dc:creator>Bastian Müller</dc:creator>
				<category><![CDATA[Workaround]]></category>

		<guid isPermaLink="false">http://www.awesomeit.de/?p=812</guid>
		<description><![CDATA[Vor kurzem wurde ich vor die Aufgabe gestellt, auf über 50 Clients den G-Data Business AntiVir zu deinstallieren. Über den...]]></description>
			<content:encoded><![CDATA[<p>Vor kurzem wurde ich vor die Aufgabe gestellt, auf über 50 Clients den G-Data Business AntiVir zu deinstallieren.</p>
<p>Über den Management-Server war dies nicht (bzw. nicht &#8220;vollständig&#8221; oder fehlerfrei) möglich, sodass man sich des Tools &#8220;G-Data AVCleaner&#8221; bedienen musste.</p>
<p>Der Cleaner prüft diverse Datenverzeichnisse und die Registry, und entfernt &#8220;hart&#8221; (auch, wenn G-Data noch ausgeführt wird), die betreffenden Verweise.</p>
<p>Manchmal ist ein Neustart und die erneute Ausführung erforderlich, um den G-Data Client komplett zu deinstallieren. Einen &#8220;<strong>silent-trigger</strong>&#8221; bringt die avcleaner.exe leider nicht mit.</p>
<p>Ich habe daraufhin ein einfaches AutoIT-Script erstellt, dass folgende Tasks durchführt:</p>
<ul>
<li>Den AVCleaner mit in die *.exe kompilieren; nach Ausführung in den @Temp-Ordner des Clients kopieren und ausführen</li>
<li>Alle Elemente markieren und den &#8220;Entfernen&#8221;-Button drücken</li>
<li>Es wird 3 Minuten gewartet, danach wird entweder</li>
<ul>
<li>das &#8220;Sie müssen Neustarten um weitere Elemente zu entfernen&#8221; bestätigt und ein Neustart durchgeführt, oder</li>
<li>der AVCleaner beendet</li>
</ul>
</ul>
<p>Nach dem Neustart muss ggf. der AVCleaner erneut durchgeführt werden &#8211; G-Data ist zu diesem Zeitpunkt aber bereits &#8220;tot&#8221; &#8211; kein Dienst mehr, und nurnoch einige verbliebene Datendateien auf der Festplatte.</p>
<p>Der AVCleaner kann auf der <a title="G-Data Tools" href="http://www.gdata.de/support/downloads/tools" target="_blank">Website</a> von G-Data heruntergeladen werden, und muss &#8211; zur Kompilierung des Scripts &#8211; im gleichen Verzeichnis liegen.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p812code6'); return false;">View Code</a> AUTOIT</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p8126"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
</pre></td><td class="code" id="p812code6"><pre class="autoit" style="font-family:monospace;"><a href="http://www.autoitscript.com/autoit3/docs/functions/FileInstall.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">FileInstall</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #008080;">&quot;AVCleaner_2012_DE.exe&quot;</span><span style="color: #FF0000; font-weight: bold;">,</span> <a href="http://www.autoitscript.com/autoit3/docs/macros.htm"><span style="color: #800000; font-weight: bold;"><span style="font-weight: bold; color: #AA0000;">@TempDir</span></span></a> <span style="color: #FF0000; font-weight: bold;">&amp;</span>amp<span style="font-style: italic; color: #009933;">; &quot;\AVCleaner_2012_DE.exe&quot;)</span>
&nbsp;
<span style="font-weight: bold; color: #AA0000;">$title</span>	<span style="color: #FF0000; font-weight: bold;">=</span> <span style="font-weight: bold; color: #008080;">&quot;AV-Cleaner&quot;</span>
<span style="font-weight: bold; color: #AA0000;">$text</span>	<span style="color: #FF0000; font-weight: bold;">=</span> <span style="font-weight: bold; color: #008080;">&quot;Select All&quot;</span>
&nbsp;
<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">IF</span></a> <a href="http://www.autoitscript.com/autoit3/docs/functions/WinExists.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">WinExists</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$title</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$text</span><span style="color: #FF0000; font-weight: bold;">&#41;</span> <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Then</span></a>
	<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">IF</span></a> <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Not</span></a> <a href="http://www.autoitscript.com/autoit3/docs/functions/WinActive.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">WinActive</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$title</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$text</span><span style="color: #FF0000; font-weight: bold;">&#41;</span> <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Then</span></a> <a href="http://www.autoitscript.com/autoit3/docs/functions/WinActivate.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">WinActivate</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$title</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$text</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Else</span></a>
	<a href="http://www.autoitscript.com/autoit3/docs/functions/Run.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">Run</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><a href="http://www.autoitscript.com/autoit3/docs/macros.htm"><span style="color: #800000; font-weight: bold;"><span style="font-weight: bold; color: #AA0000;">@TempDir</span></span></a> <span style="color: #FF0000; font-weight: bold;">&amp;</span>amp<span style="font-style: italic; color: #009933;">; &quot;\AVCleaner_2012_DE.exe&quot;)</span>
<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">EndIf</span></a>
&nbsp;
<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">IF</span></a> <a href="http://www.autoitscript.com/autoit3/docs/functions/WinWaitActive.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">WinWaitActive</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$title</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$text</span><span style="color: #FF0000; font-weight: bold;">&#41;</span> <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Then</span></a>
	<a href="http://www.autoitscript.com/autoit3/docs/functions/ControlClick.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">ControlClick</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$title</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$text</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #008080;">&quot;Button1&quot;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
	<a href="http://www.autoitscript.com/autoit3/docs/functions/Sleep.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">sleep</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="color: #AC00A9; font-style: italic; font-weight: bold;">5000</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
	<a href="http://www.autoitscript.com/autoit3/docs/functions/ControlClick.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">ControlClick</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$title</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$text</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #008080;">&quot;Button2&quot;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">EndIf</span></a>
&nbsp;
<a href="http://www.autoitscript.com/autoit3/docs/functions/Sleep.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">sleep</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="color: #AC00A9; font-style: italic; font-weight: bold;">180000</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
&nbsp;
<span style="font-weight: bold; color: #AA0000;">$title2</span>	<span style="color: #FF0000; font-weight: bold;">=</span> <span style="font-weight: bold; color: #008080;">&quot;Rechnerneustart erforderlich&quot;</span>
<span style="font-weight: bold; color: #AA0000;">$text2</span>	<span style="color: #FF0000; font-weight: bold;">=</span> <span style="font-weight: bold; color: #008080;">&quot;Es konnten nicht alle&quot;</span>
<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">IF</span></a> <a href="http://www.autoitscript.com/autoit3/docs/functions/WinExists.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">WinExists</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$title2</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$text2</span><span style="color: #FF0000; font-weight: bold;">&#41;</span> <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Then</span></a>
	<a href="http://www.autoitscript.com/autoit3/docs/functions/WinActivate.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">WinActivate</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$title2</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$text2</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
&nbsp;
	<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">IF</span></a> <a href="http://www.autoitscript.com/autoit3/docs/functions/WinWaitActive.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">WinWaitActive</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$title2</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$text2</span><span style="color: #FF0000; font-weight: bold;">&#41;</span> <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Then</span></a>
		<a href="http://www.autoitscript.com/autoit3/docs/functions/Send.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">Send</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #008080;">&quot;{ENTER}&quot;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
		<a href="http://www.autoitscript.com/autoit3/docs/functions/ControlClick.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">ControlClick</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$title</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$text</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #008080;">&quot;Button3&quot;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
		<a href="http://www.autoitscript.com/autoit3/docs/functions/Sleep.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">sleep</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="color: #AC00A9; font-style: italic; font-weight: bold;">1000</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
		<a href="http://www.autoitscript.com/autoit3/docs/functions/Run.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">Run</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><a href="http://www.autoitscript.com/autoit3/docs/macros.htm"><span style="color: #800000; font-weight: bold;"><span style="font-weight: bold; color: #AA0000;">@ComSpec</span></span></a> <span style="color: #FF0000; font-weight: bold;">&amp;</span>amp<span style="font-style: italic; color: #009933;">; &quot; /c &quot; &amp;amp; 'shutdown -t 10 -f -r', &quot;&quot;, @SW_HIDE)</span>
	<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">EndIf</span></a>
<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Else</span></a>
	<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">IF</span></a> <a href="http://www.autoitscript.com/autoit3/docs/functions/WinWaitActive.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">WinWaitActive</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$title</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$text</span><span style="color: #FF0000; font-weight: bold;">&#41;</span> <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Then</span></a> <a href="http://www.autoitscript.com/autoit3/docs/functions/ControlClick.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">ControlClick</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$title</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$text</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #008080;">&quot;Button3&quot;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">EndIf</span></a></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.awesomeit.de/2012/01/03/g-data-avcleaner-silent-ausfuhren/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Roboform &#8211; Passwortverwaltung</title>
		<link>http://www.awesomeit.de/2012/01/03/roboform-passwortverwaltung/</link>
		<comments>http://www.awesomeit.de/2012/01/03/roboform-passwortverwaltung/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 06:23:22 +0000</pubDate>
		<dc:creator>Bastian Müller</dc:creator>
				<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://www.awesomeit.de/?p=804</guid>
		<description><![CDATA[Viele Menschen kennen mittlerweile das Problem: Für jeden Dienst, für jedes Forum, für jeden Shop muss man sich einmalig registrieren....]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.awesomeit.de/wp-content/uploads/2012/01/roboform-1.jpg" rel="lightbox[804]"><img class="alignleft size-thumbnail wp-image-805" title="roboform-1" src="http://www.awesomeit.de/wp-content/uploads/2012/01/roboform-1-150x85.jpg" alt="" width="150" height="85" /></a>Viele Menschen kennen mittlerweile das Problem: Für jeden Dienst, für jedes Forum, für jeden Shop muss man sich einmalig registrieren. Nach kurzer Zeit häufen sich so Zugangsdaten, die verwaltet werden möchten.</p>
<p>Der einfache Weg, sich bei jedem Dienst mit der selben eMail-Adresse als Anmeldenamen, einem eigenen Anmeldenamen und dem gleichen Passwort zu registrieren, wird in Anbetracht der anfallenden Zugangsdaten äußerst attraktiv.<span id="more-804"></span></p>
<p>Schwierig wird es, wie der Hack des Playstation-Networks im vergangenen Jahr gezeigt hat, wenn in einen der Dienste eingebrochen und die Zugangsdaten gestohlen werden. Zwar sind die jeweiligen Betreiber verpflichtet, die Kunden über derartige Einbrüche zu informieren &#8211; aber wie sicher kann man sich dessen sein? Man sollte immer getrennte Zugangsdaten verwenden &#8211; andere Login-Namen und Kennwörter. Aber wie will man die Flut dieser ständig anderen Zugangsdaten bewältigen?</p>
<p>Bei meinen Steifzügen durch&#8217;s Internet war ich stehts auf der Suche, nach einer Möglichkeit meine Daten (ob Account-Daten oder Datendateien) zwischen mehreren Geräten synchron zu halten. Auf Dateiebene erledige ich dies seit mehreren Jahren sehr erfolgreich über <a title="Dropbox" href="http://www.dropbox.com" target="_blank">Dropbox</a>, bei den Zugangsdaten bin ich auf die Software <a title="KeePass" href="http://www.keepass.info" target="_blank">KeePass </a>ausgewichen.</p>
<p>Leider hat es mir bei KeePass an komfort gefehlt &#8211; Zugangsdaten mussten per Hand eingetragen werden; für Websites und Dienste, die man seltener nutzt, musste KeePass stets gestartet, und ein Blick auf die Accountdaten geworfen werden.</p>
<p><a href="http://www.awesomeit.de/wp-content/uploads/2012/01/roboform-2.jpg" rel="lightbox[804]"><img class="alignright size-thumbnail wp-image-806" title="roboform-2" src="http://www.awesomeit.de/wp-content/uploads/2012/01/roboform-2-150x81.jpg" alt="" width="150" height="81" /></a>Vor einiger Zeit bin ich dann auf &#8220;<a title="Roboform" href="http://www.roboform.com/everywhere" target="_blank"><strong>Roboform</strong></a>&#8221; gestoßen. Roboform ist eine Software, die Accountdaten aus Websites automatisch verschlüsselt ablegen kann. Auch eine Windows-Integration existiert, wodurch auch z.B. Zugangsdaten in Programm-Logins gespeichert werden können.</p>
<p>Damals war Roboform noch recht teuer (es gab nur die Desktop-Version für 30€+) und nur in einer &#8220;<strong>Single-License</strong>&#8221; für einen Platz.</p>
<p>Nach einigen Wochen bin ich nochmal auf deren Site gelandet, und durfte feststellen, dass sie einen neuen &#8220;Roboform Everywhere&#8221;-Dienst eingerichtet haben. Das Motto: <em>Synce alle Geräte, die du besitzt, für 10 $ im Jahr</em>. <strong>Gekauft</strong>.</p>
<p><a href="http://www.awesomeit.de/wp-content/uploads/2012/01/roboform-3.jpg" rel="lightbox[804]"><img class="size-thumbnail wp-image-807 alignleft" title="roboform-3" src="http://www.awesomeit.de/wp-content/uploads/2012/01/roboform-3-150x19.jpg" alt="" width="150" height="19" /></a>Nach der Installation von Roboform Everywhere gibt man (sofern bereits bestehend) seine Zugangsdaten an, darauf die Lizenz, die man soeben erworben hat. Roboform integriert sich daraufhin per Addon in den <strong>Firefox</strong> und<strong> Internet-Explorer</strong> (auch, wenn installiert, in Safari und Google Chrome).</p>
<p>Besucht man eine Website, z.B. Amazon, und füllt dort das Anmeldefenster aus, öffnet sich am unteren (oder oberen) Rand des Browsers eine zusätzliche Leiste, in der man einen Namen und den Speicherort der PassCard angibt. Nach einem Klick auf &#8220;<strong>Speichern</strong>&#8221; wird sie gespeichert, und kurz darauf automatisch zu Roboform Online synchronisiert.</p>
<p>Die Dateien, die Roboform dabei ablegt, sind &#8220;<strong>rfp</strong>&#8220;-Dateien, die &#8211; je nach Konfiguration &#8211; verschlüsselt werden. Öffnen lassen Sie sich nur mit einem <strong>Master-Passwort</strong>.</p>
<p>Dabei lässt sich auch konfigurieren, wann und wie oft man dieses Master-Kennwort eingeben muss. Ich habe es so eingerichtet, dass das Kennwort nach einer Stunde &#8220;<strong>zurückgesetzt</strong>&#8221; wird. Wenn ich also nach einer Stunde ein Lesezeichen von Roboform öffne, werde ich wieder nach dem Master-Kennwort gefragt.</p>
<p><a href="http://www.awesomeit.de/wp-content/uploads/2012/01/roboform-4.jpg" rel="lightbox[804]"><img class="alignright size-thumbnail wp-image-809" title="roboform-4" src="http://www.awesomeit.de/wp-content/uploads/2012/01/roboform-4-150x89.jpg" alt="" width="150" height="89" /></a>Nach einiger Zeit sammeln sich so viele Passcards an, die sich in einem eigenen Editor bearbeiten und verwalten lassen. Auch nützlich ist die Tatsache, dass ich durch Anwählen einer Passcard direkt auf die Website gelotst werde, und Roboform die Login-Boxen automatisch mit Inhalt befüllt und die Anmeldung durch einen &#8220;<strong>klick auf den Login-Button</strong>&#8221; abschließt. Einfacher geht&#8217;s nicht!</p>
<p>Zusätzlich dazu lassen sich die Lesezeichen über die Roboform-Website, per iPhone oder iPad-App und auf MacOS-Geräten anzeigen. All das &#8220;<strong>in sync mit der cloud</strong>&#8220;. Passiert es doch einmal, dass Roboform unschlüssig ist, welches die aktuelle Passcard ist (wenn man Sie auf zwei Geräten relativ zeitgleich geändert hat), öffnet sich ein Konflikt-Fenster, in dem deutlich gezeigt wird, was sich wo geändert hat, und ob die von Roboform vorgeschlagenen Synchronisierungsoptionen durchgeführt werden sollen, oder manuell angepasst werden müssen.</p>
<p>Ich bin sehr zufrieden mit dem Roboform-Dienst, und kann ihn uneingeschränkt empfehlen! Den, es lassen sich nicht nur Passcards hinterlegen (für Logins), sondern auch verschlüsselte <strong>Notizen</strong>, <strong>Lesezeichen</strong>, <strong>Kreditkarteninfos</strong>, oder <strong>Indentitäten</strong>.</p>
<p>Mit letzterem erspart man sich das Aufüllen von Registrierungs-Dialogen. Registriert man sich z.B. bei Amazon, und muss dabei 30 Felder zu Name, Straße, Kreditkarten, etc. ausfüllen &#8211; genügt ein Klick auf die bei Roboform hinterlegte Identität. Roboform füllt dann sinngemäß die Felder auf der Website aus &#8211; und das, bisher, sehr fehlerfrei.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awesomeit.de/2012/01/03/roboform-passwortverwaltung/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Acronis Backup &amp; Recovery 10 &#8211; Meta-Verzeichnis</title>
		<link>http://www.awesomeit.de/2012/01/02/acronis-backup-recovery-10-meta-verzeichnis/</link>
		<comments>http://www.awesomeit.de/2012/01/02/acronis-backup-recovery-10-meta-verzeichnis/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 17:15:03 +0000</pubDate>
		<dc:creator>Bastian Müller</dc:creator>
				<category><![CDATA[Workaround]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.awesomeit.de/?p=799</guid>
		<description><![CDATA[Seit der Version 10 von Acronis Backup&#38;Recovery werden zusätzlich zu den eigentlichen Backup-Dateien (*.tib-Dateien) auch Meta-Dateien (eine *.xml-Datei auf gleicher...]]></description>
			<content:encoded><![CDATA[<p>Seit der Version 10 von Acronis Backup&amp;Recovery werden zusätzlich zu den eigentlichen Backup-Dateien (*.tib-Dateien) auch Meta-Dateien (eine *.xml-Datei auf gleicher Ebene wie die Sicherung, bzw. in einem Unterordner namens &#8220;meta&#8221; oder &#8220;.meta&#8221;) erstellt.</p>
<p>Diese Meta-Dateien sollen als Index für die eigentliche Sicherungsdatei stehen, und so das einlesen des Images beschleunigen (die genaue Notwendigkeit erschließt sich mir nicht&#8230;).</p>
<p>Nun kann es vorkommen, dass man diese XML-Datei löscht. Der negative Beigeschmack: Die Sicherung lässt sich ohne das *.xml nicht mehr wiederherstellen; es erscheint folgende Fehlermeldung:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p799code8'); return false;">View Code</a> TEXT</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p7998"><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code" id="p799code8"><pre class="text" style="font-family:monospace;">Failed to check the backup archive.
&nbsp;
Details
Code: 10,551,303(0xA10007)
LineInfo: 0xA110F03A4AA48DB3;
&nbsp;
Message: Cannot find the specified archive.</pre></td></tr></table></div>

<p>Weiterhin wird der Eventcode 0x00A10007 angezeigt.</p>
<p>Die <strong>Lösung</strong> ist relativ simpel:</p>
<p>Man öffnet Acronis B&amp;R10 oder 11 an einem Arbeitsplatz (mit der BootCD hat das in meinem Fall nicht geklappt!), fügt ein neues Depot hinzu (in dem sich die *.tib&#8217;s ohne XML-DAtei befinden) und validiert das Depot (engl. Vault).</p>
<p>Daraufhin wird ein neuer Index erstellt, und die Sicherung kann ganz normal (auch per BootCD) wiederhergestellt werden.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awesomeit.de/2012/01/02/acronis-backup-recovery-10-meta-verzeichnis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MultiBoot USB-Stick unter Windows erstellen</title>
		<link>http://www.awesomeit.de/2011/06/20/multiboot-usb-stick-unter-windows-erstellen/</link>
		<comments>http://www.awesomeit.de/2011/06/20/multiboot-usb-stick-unter-windows-erstellen/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 18:57:16 +0000</pubDate>
		<dc:creator>Bastian Müller</dc:creator>
				<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://www.awesomeit.de/?p=705</guid>
		<description><![CDATA[Wer kennt es nicht? Man ist bei einem Kunden oder Freund und hat ein verseuchtes Notebook vor sich stehen, dass...]]></description>
			<content:encoded><![CDATA[<p>Wer kennt es nicht? Man ist bei einem Kunden oder Freund und hat ein verseuchtes Notebook vor sich stehen, dass neben einem (oder mehreren) Viren- und Malwarescans auch ein Backup dringend nötig hat.</p>
<p>Meist schleppt man daher eine CD-Mappe mit 20 unterschiedlichen Tools durch die Weltgeschichte &#8211; mit einem USB-Stick lässt sich die Tragelast etwas schmälern.</p>
<p><span id="more-705"></span><strong>Zuerst</strong>: Es existieren einige kostenfreie Tools auf dem Markt, mit deren Hilfe mit wenigen Klicks einfache Linux-USB-Sticks mit mehreren OS erstellt werden können. Beim Namen wären das <a href="http://unetbootin.sourceforge.net/" target="_blank">UNetbootin</a>, <a href="http://reboot.pro/13246/" target="_blank">XBoot</a> oder <a href="http://www.pendrivelinux.com" target="_blank">Pendrivelinux</a> mit YUMI. Wenn es nur darum geht, einen einfachen Stick mit Ubuntu, einem Disk-Wiper und Memtest86 zu erstellen, seid ihr mit diesen Tools am besten dran!</p>
<p><strong>Was ist das Ziel?</strong><br />
Das Ziel dieses Erfahrungsberichtes ist es, euch einen Einstieg und einen möglichst kurzen und hürdenlosen Weg zu liefern, um einen MultiBoot USB-Stick zu erstellen.</p>
<p><strong>Was war die Intention?</strong><br />
Bereits seit Anfang meiner Ausbildung vor ca. 6 Jahren pflege ich eine Live-XP-CD, auf der nützliche Tools zu finden sind, die es mir ersparen, wegen Fehler X oder Aktion Y ständig mit einer anderen CD anzubooten. Da sich manche Tools aber nicht in XP integrieren lassen &#8211; oder es schlicht auf Linux-Basis potentere Software existiert &#8211; bin ich zu einem Multiboot-USBstick übergelaufen, von dem ich sowohl mein mittlerweile auf Win7PE-portiertes Live-Windows und div. andere Tools booten kann.</p>
<p><strong>Was läuft auf meinem USB-Stick?</strong><br />
Neben meinem Win7PE ein stattliches Sammelsurium von Acronis-BootCDs (Acronis TrueImage 9.5, 9.7, 10, 2010, 2011, DiskDirector 10, 11, Acronis AntiMalware), Virenscanner (AntiVir, Bitdefender, Kaspersky, G-Data) und Systemtools für spezielle Anwendungsfälle (OfflineNT zum Zurücksetzen von Windows-Passwörtern, DBAN zum sicheren zerstören von Daten, UltimateBootCD wg. der Motherboard- und Festplattenutilities, MemTest86 zum testen des RAM) und seit kurzem auch Desinfec&#8217;t 2011 von der c&#8217;t Heft-CD (Ubuntu-Distri mit 4 Virenscannern onBoard).</p>
<p><strong>Was benötige ich?</strong><br />
Zuersteinmal einen bootfähigen USB-Stick. Seid ihr euch nicht sicher, probiert es einfach aus. In jedem Fall funktionieren die SanDisk Cruzer-Sticks (einen mit 4GB nutze ich selbst); eine kurze Google-Suche nach eurem USB-Stickmodel und dem Schlagwort &#8220;bootable&#8221; wird sicher eine schnelle Antwort liefern.</p>
<p>Danach MultibootISOs in der Version <a href="http://www.awesomeit.de/wp-content/uploads/2011/06/MultiBootISOs-2.1.3.6.exe">2.1.3.6</a>, mithilfe dessen der USB-Stick bootbar gemacht werden kann (andere Versionen haben in meinen Tests nicht, oder nicht richtig funktioniert). Das Projekt wurde zu YUMI weiterentwickelt, was leider nicht mehr auf grub4dos setzt, und daher für mich uninteressant geworden ist.</p>
<p><strong>Bootloader auf USB-Stick installieren</strong><br />
Ihr startet MultiBootISOs und wählt euren USB-Stick aus. Dann markiert ihr die Option &#8220;Check this box to format the Drive&#8221; und wählt eine kleine Distribution, etwa Memtest86 aus. Vergesst den Haken &#8220;Download the ISO&#8221; nicht, sofern ihr die passende ISO nicht zur Hand habt.</p>
<p>Nun klickt auf &#8220;<strong>Create</strong>&#8221; &#8211; es startet ein Dateidownload, der die ausgewählte ISO enthält. Ist dieser beendet, wählt das Download-Verzeichnis über &#8220;Browse&#8221; aus, und wählt die heruntergeladene Datei, bestätigt mit &#8220;<strong>Create</strong>&#8220;. Nun wird der USB-Stick wird formatiert (zwischenzeitlich müsst ihr den Stick kurz entfernen und wieder stecken) und der Bootloader installiert.</p>
<p>Danach könnt ihr im Windows-Explorer den Stick öffnen, und alle Dateien bis auf &#8220;<strong>liveusb</strong>&#8220;, &#8220;<strong>menu.lst</strong>&#8221; und &#8220;<strong>full.menu.lst</strong>&#8221; löschen.</p>
<p><strong>Jetzt ist er bootbar &#8211; wie binde ich XYZ ein?</strong><br />
Um eine *.iso-Datei einzubinden, benötigt man &#8211; neben der Iso selbst &#8211; auch den passenden menu.lst-Eintrag.<br />
Die menu.lst beinhaltet das Bootmenü und zeigt dem Bootloader, wie er ein ISO-Image zu behandeln hat, damit es sich booten lässt.</p>
<p>Grundsätzlich lohnt sich ein erster Blick in die Datei &#8220;full.menu.lst&#8221; &#8211; hier sind für alle Distributionen, die mit MultiBootISOs erstellt werden können, ein menu.lst-Eintrag, den man in seine menu.lst kopieren kann.</p>
<p>Fehlt genau der Eintrag für die ISO, die man einbinden möchte, hilft entweder nur try &#8216;n error, oder man bemüht Google. Wichtig ist bei manchen Linux-Distributionen, dass man teilweise den Kernel und Kernelimages aus dem ISO in das Hauptverzeichnis des USB-Sticks kopieren muss. Das ist dann meistens bereits anhand der menu.lst-Einträge ersichtlich.</p>
<p><strong>Windows 7 PE, Acronis, etc. booten?</strong><br />
Anbei habe ich meine menu.lst angehängt &#8211; hier sind funktionierende menu.lst-Einträge auch für knifflige Fälle vorhanden.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left2">Download <a href="http://www.awesomeit.de/wp-content/plugins/wp-codebox/wp-codebox.php?p=705&amp;download=menu.lst">menu.lst</a></span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p70510"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
</pre></td><td class="code" id="p705code10"><pre class="dos" style="font-family:monospace;">splashimage=/splash.xpm.gz
background = ffffff
foreground = 000000
&nbsp;
timeout <span style="color: #cc66cc;">15</span>
default <span style="color: #cc66cc;">0</span>
&nbsp;
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> - LivePE v7 by BM, <span style="color: #cc66cc;">2011</span>-06-<span style="color: #cc66cc;">19</span>
chainloader /BOOTMGR
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> ___________________________________________________________________Backup
root
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> - Acronis TrueImage <a href="http://www.ss64.com/nt/echo.html"><span style="color: #b1b100; font-weight: bold;">Echo</span></a> Workstation <span style="color: #cc66cc;">9.5</span> with UR
find --set-root /acronistiw95.iso
map /acronistiw95.iso <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
map --hook
root <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
chainloader <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> - Acronis TrueImage <a href="http://www.ss64.com/nt/echo.html"><span style="color: #b1b100; font-weight: bold;">Echo</span></a> Server <span style="color: #cc66cc;">9.7</span> with UR <span style="color: #66cc66;">&#40;</span>Build <span style="color: #cc66cc;">8398</span>, Kaseya<span style="color: #66cc66;">&#41;</span>
find --set-root /acronis97.iso
map /acronis97.iso <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
map --hook
root <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
chainloader <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> - Acronis Backup and Recovery <span style="color: #cc66cc;">10</span> Workstation with UR <span style="color: #66cc66;">&#40;</span>Build <span style="color: #cc66cc;">13544</span>, Kasyea<span style="color: #66cc66;">&#41;</span>
find --set-root /acronisbr10ur13544.iso
map /acronisbr10ur13544.iso <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
map --hook
root <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
chainloader <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> - Acronis TrueImage Home <span style="color: #cc66cc;">2010</span>
find --set-root /acronistih2011.iso
map /acronistih2011.iso <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
map --hook
root <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
chainloader <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> - Acronis TrueImage Home <span style="color: #cc66cc;">2011</span>
find --set-root /acronistih2010.iso
map /acronistih2010.iso <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
map --hook
root <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
chainloader <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
&nbsp;
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> ________________________________________________________________AntiVirus
root
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> - c't Desinfec't <span style="color: #cc66cc;">11</span>
kernel /casper/vmlinuz noprompt cdrom-detect/try-usb=true locale=de_DE.UTF-<span style="color: #cc66cc;">8</span> bootkbd=de console-setup/layoutcode=de persistent file=/preseed/ubuntu.seed boot=casper initrd=/casper/initrd.lz quiet splash --
&nbsp;
initrd /casper/initrd.lz
&nbsp;
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> - Acronis AntiMalware
find --set-root /acronismalware.iso
map /acronismalware.iso <span style="color: #66cc66;">&#40;</span>0xff<span style="color: #66cc66;">&#41;</span>
map --hook
root <span style="color: #66cc66;">&#40;</span>0xff<span style="color: #66cc66;">&#41;</span>
kernel /casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper iso-scan/filename=/acronismalware.iso splash vga=<span style="color: #cc66cc;">791</span> lang=us
initrd /casper/initrd.gz
&nbsp;
#title - AVIRA AntiVir Rescue <a href="http://www.ss64.com/nt/cd.html"><span style="color: #b1b100; font-weight: bold;">CD</span></a>
#find --set-root /avira/vmlinuz
#kernel /avira/vmlinuz edd=off vga=ask initrd=/avira/initrd.gz ramdisk_size=<span style="color: #cc66cc;">133551</span> root=/dev/ram0 rw console=/dev/vc/<span style="color: #cc66cc;">4</span>
#initrd /avira/initrd.gz
&nbsp;
#title - BitDefender Rescue <a href="http://www.ss64.com/nt/cd.html"><span style="color: #b1b100; font-weight: bold;">CD</span></a>
#find --set-root /bitdefender-rescue-<a href="http://www.ss64.com/nt/cd.html"><span style="color: #b1b100; font-weight: bold;">cd</span></a>.iso
#map /bitdefender-rescue-<a href="http://www.ss64.com/nt/cd.html"><span style="color: #b1b100; font-weight: bold;">cd</span></a>.iso <span style="color: #66cc66;">&#40;</span>0xff<span style="color: #66cc66;">&#41;</span>
#map --hook
#root <span style="color: #66cc66;">&#40;</span>0xff<span style="color: #66cc66;">&#41;</span>
#kernel /casper/vmlinuz boot=casper iso-scan/filename=/bitdefender-rescue-<a href="http://www.ss64.com/nt/cd.html"><span style="color: #b1b100; font-weight: bold;">cd</span></a>.iso
#initrd /casper/initrd.gz
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> - G-Data BootCD <span style="color: #cc66cc;">2011</span>
kernel /linux26 ramdisk_size=<span style="color: #cc66cc;">100000</span> init=/etc/init lang=ch usb apm=power-off vga=<span style="color: #cc66cc;">791</span> initrd=/minirt26.gz nomce
initrd /minirt26.gz
boot
&nbsp;
#title - Kaspersky Rescue Disk <span style="color: #cc66cc;">2010</span>
#find --set-root /rescue/rescue.iso
#map /rescue/rescue.iso <span style="color: #66cc66;">&#40;</span>0xff<span style="color: #66cc66;">&#41;</span>
#map --hook
#root <span style="color: #66cc66;">&#40;</span>0xff<span style="color: #66cc66;">&#41;</span>
#chainloader <span style="color: #66cc66;">&#40;</span>0xff<span style="color: #66cc66;">&#41;</span>
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> __________________________________________________________Partitionierung
root
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> - Acronis DiskDirector Suite <span style="color: #cc66cc;">10</span>
find --set-root /acronisdd10.iso
map /acronisdd10.iso <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
map --hook
root <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
chainloader <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> - Acronis DiskDirector Home <span style="color: #cc66cc;">11</span>
find --set-root /acronisdd11.iso
map /acronisdd11.iso <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
map --hook
root <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
chainloader <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> - Parted Magic <span style="color: #cc66cc;">5.7</span>
find --set-root --ignore-floppies /pmagic-<span style="color: #cc66cc;">5.7</span>.iso
map --heads=<span style="color: #cc66cc;">0</span> --sectors-per-track=<span style="color: #cc66cc;">0</span> /pmagic-<span style="color: #cc66cc;">5.7</span>.iso <span style="color: #66cc66;">&#40;</span>0xff<span style="color: #66cc66;">&#41;</span>
map --hook
root <span style="color: #66cc66;">&#40;</span>0xff<span style="color: #66cc66;">&#41;</span>
chainloader <span style="color: #66cc66;">&#40;</span>0xff<span style="color: #66cc66;">&#41;</span>
&nbsp;
&nbsp;
&nbsp;
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> ____________________________________________________________________Tools
root
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> - MemTest86+
kernel /Boot/memtest.bin
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> - Ultimate Boot <a href="http://www.ss64.com/nt/cd.html"><span style="color: #b1b100; font-weight: bold;">CD</span></a> <span style="color: #cc66cc;">5.03</span>
map /ubcd503.iso <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
map --hook
chainloader <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> - Offline NT Password Editor
find --set-root /offlinent.iso
map /offlinent.iso <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
map --hook
chainloader <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> - DBAN 2.2.6
find --set-root /dban-2.2.6.iso
map --mem /dban-2.2.6.iso <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
map --hook
root <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
chainloader <span style="color: #66cc66;">&#40;</span>hd32<span style="color: #66cc66;">&#41;</span>
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> ____________________________________________________________________Other
root
&nbsp;
<a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a> - Shutdown
halt</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.awesomeit.de/2011/06/20/multiboot-usb-stick-unter-windows-erstellen/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>All-Inkl aktualisiert Tarife</title>
		<link>http://www.awesomeit.de/2011/04/24/all-inkl-aktualisiert-tarife/</link>
		<comments>http://www.awesomeit.de/2011/04/24/all-inkl-aktualisiert-tarife/#comments</comments>
		<pubDate>Sun, 24 Apr 2011 21:27:00 +0000</pubDate>
		<dc:creator>Bastian Müller</dc:creator>
				<category><![CDATA[Artikel]]></category>
		<category><![CDATA[Info]]></category>

		<guid isPermaLink="false">http://www.awesomeit.de/?p=664</guid>
		<description><![CDATA[Bereits zu Anfang des Jahres angekündigt, erreichte mich die letzten Tage eine Kurzinfo von All-Inkl: Die Tarife wurden angepasst. Was...]]></description>
			<content:encoded><![CDATA[<p>Bereits zu Anfang des Jahres angekündigt, erreichte mich die letzten Tage eine Kurzinfo von <a href="http://www.all-inkl.com" target="_blank">All-Inkl</a>: Die Tarife wurden angepasst.</p>
<p><strong>Was genau bedeutet das für uns Kunden?</strong> Antwort: Es wird alles besser! <img src='http://www.awesomeit.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Neben mehr <strong>Speicherplatz</strong>, Cronjobs, einem <strong>SSH-Zugang</strong>, je nach Tarif auch mehr Domains, auch eine feine neue Funktion: Die &#8220;<strong>Online-Festplatte</strong>&#8220;.</p>
<p>Wie das genau gelöst ist, ist mir noch nicht konkret zugetragen worden &#8211; vermutlich erlaubt diese Option, lokal eine Software zu installieren, die den eigenen All-Inkl Webspace als lokales Laufwerk oder Ordner mountet, und man sich somit das hin- und herkopieren per FTP-Programm sparen kann.</p>
<p>Als ich die neuen Features gesehen habe, habe ich direkt meinen All-Inkl Vertrag von <strong>Privat </strong>auf <strong>Premium </strong>gewechselt &#8211; ein wenig mehr Speicher, zwei Domains mehr und besagte Online-Festplatte haben mich neugierig gemacht.</p>
<p>Für alle, die momentan auf der Suche nach einem neuen Hosting-Provider sind, denen lass gesagt sein: Ich bin seit <strong>2002 </strong>Kunde von All-Inkl, und hatte bisher &#8211; selbst in Notfallsituationen &#8211; <strong>nur gute Erfahrungen</strong> gemacht. Der Preis ist angemessen, der Support selbst Sonntag-Nacht noch für Kunden erreichbar. Durchweg ein langjähriger Partner für meine Webprojekte!</p>
<p>Hier ein Auszug aus deren Website mit den neuen Tarifen:</p>
<p style="text-align: center;"><a href="http://www.awesomeit.de/wp-content/uploads/2011/04/all-inkl-tarife.png" rel="lightbox[664]"><img class="size-large wp-image-666 aligncenter" title="Tarife" src="http://www.awesomeit.de/wp-content/uploads/2011/04/all-inkl-tarife-520x466.png" alt="Die neuen All-Inkl Tarife im Überblick." width="520" height="466" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.awesomeit.de/2011/04/24/all-inkl-aktualisiert-tarife/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aktualisierung des Layouts</title>
		<link>http://www.awesomeit.de/2011/04/24/aktualisierung-des-layouts/</link>
		<comments>http://www.awesomeit.de/2011/04/24/aktualisierung-des-layouts/#comments</comments>
		<pubDate>Sun, 24 Apr 2011 20:55:22 +0000</pubDate>
		<dc:creator>Bastian Müller</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.awesomeit.de/?p=637</guid>
		<description><![CDATA[Hallo *, ich habe beschlossen, in Zukunft wieder aktiver Artikel und Beiträge zur IT zu verfassen. Aus diesem Grund fand...]]></description>
			<content:encoded><![CDATA[<p>Hallo *,</p>
<p>ich habe beschlossen, in Zukunft wieder aktiver Artikel und Beiträge zur IT zu verfassen.</p>
<p>Aus diesem Grund fand ich es an der Zeit, ein neues Theme für awesomeit.de aufzulegen. Ausnahmsweise ist dies ein fertiges, und nach Möglichkeit vom Quelltext unverändertes WordPress-Design namens <a href="http://www.arrastheme.com/" target="_blank">Arras</a>. Das erleichtert dann auch in Zukunft die Aktualisierbarkeit &#8211; und, wenn ich das so sagen darf; als Informatiker ist man schon ein Stück bequem &#8211; und Arras erleichtert einem den ein oder anderen Vorgang <img src='http://www.awesomeit.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Auf gutes Gelingen,</p>
<p>Bastian</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awesomeit.de/2011/04/24/aktualisierung-des-layouts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome-Screen vom ESXi deaktivieren</title>
		<link>http://www.awesomeit.de/2011/01/06/welcome-screen-vom-esxi-deaktivieren/</link>
		<comments>http://www.awesomeit.de/2011/01/06/welcome-screen-vom-esxi-deaktivieren/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 11:03:10 +0000</pubDate>
		<dc:creator>Bastian Müller</dc:creator>
				<category><![CDATA[Artikel]]></category>
		<category><![CDATA[Workaround]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Netzwerk]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Webserver]]></category>

		<guid isPermaLink="false">http://www.awesomeit.de/?p=494</guid>
		<description><![CDATA[Ich betreibe meinen ESXi in der Version 3.5 direkt im Internet; ohne Router oder Firewall vorangestellt. Daher habe ich auch...]]></description>
			<content:encoded><![CDATA[<p>Ich betreibe meinen ESXi in der Version 3.5 direkt im Internet; ohne Router oder Firewall vorangestellt.<br />
Daher habe ich auch das Problem, dass beim direkten Zugriff auf die IP des ESXi die Willkommensseite (inkl. Browsing des Datastores, Zugriff auf /ui/ etc.) angezeigt wird.</p>
<p>Ich bin mir auch sicher, dass man mit entsprechenden Parametern per Google viele ESXi-Server finden kann, in dem man einfach ein paar Zeilen aus der Willkommensseite anzeigen kann&#8230;</p>
<p>Bisherige Versuche meinerseits, das Ganze zu unterbinden, indem ich Dienste deaktiviere oder Dateien auf Filesystem-Ebene, schlugen bisher fehl.</p>
<p>Nun bin ich auf einen <a href="http://communities.vmware.com/docs/DOC-11864">netten Beitrag</a> im VMware Communities-Forum gestoßen, mithilfe dessen man eine 404-Anzeige statt des Welcome-Screens provozieren kann &#8211; ohne Dateien verändern zu müssen oder Dienste zu löschen.</p>
<p>Der Revision wegen, habe ich vom Beitrag ein PDF <a href="http://www.awesomeit.de/wp-content/uploads/2011/01/VMware-Communities_-Remove-the-ESXi-web-welcome-screen-Method-3.pdf">zum Download</a> erstellt.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awesomeit.de/2011/01/06/welcome-screen-vom-esxi-deaktivieren/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kostenlose VoiP-Software für 1&amp;1-SIP</title>
		<link>http://www.awesomeit.de/2010/06/02/kostenlose-voip-software-fur-11-sip/</link>
		<comments>http://www.awesomeit.de/2010/06/02/kostenlose-voip-software-fur-11-sip/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 09:14:57 +0000</pubDate>
		<dc:creator>Bastian Müller</dc:creator>
				<category><![CDATA[Artikel]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.awesomeit.de/?p=488</guid>
		<description><![CDATA[Heute bin ich gesundheitlich gezwungen, ein wenig von zuhause aus zu arbeiten. Das ist teilweise mit längeren Telefonaten mit Kunden...]]></description>
			<content:encoded><![CDATA[<p>Heute bin ich gesundheitlich gezwungen, ein wenig von zuhause aus zu arbeiten.<br />
Das ist teilweise mit längeren Telefonaten mit Kunden verbunden, was sich mit einem entsprechenden Headset in der Firma ganz komfortabel ertragen lässt.</p>
<p>Zuhause steht mir leider nur mein Handy bzw. Festnetztelefon zur Verfügung, bei dem mir nach einer halben Stunde Telefonat der Arm abfällt &#8230; dafür aber ein ordentliches Sennheiser-Headset.</p>
<p>Eine feine Lösung, zumindest wenn man bei den bekannten SIP-Anbietern eine Online-Rufnummer besitzt (in meinem Fall: 1und1), ist Phoner. Die Software ist kostenlos, entspringt eigentlich der ISDN-Szene, besitzt jedoch seit einiger Zeit die Möglichkeit, auch SIP-Profile für die VoIP-Telefoniererei zu definieren. Phoner ist kostenlos auf <a href="http://www.phoner.de">phoner.de</a> erhältlich und unterstützt offiziell Windows-Betriebssysteme bis Windows Vista &#8211; in meinem Fall läuft es aber auch Problemlos auf Windows 7.</p>
<p><div id="attachment_489" class="wp-caption alignright" style="width: 160px"><a href="http://www.awesomeit.de/wp-content/uploads/2010/06/1und1phoner.png" rel="lightbox[488]"><img src="http://www.awesomeit.de/wp-content/uploads/2010/06/1und1phoner-150x116.png" alt="" title="1und1phoner" width="150" height="116" class="size-thumbnail wp-image-489" /></a><p class="wp-caption-text">Einstellungen für 1und1 in Phoner</p></div>1und1 bietet zwar die Software &#8220;1&#038;1 SoftPhone&#8221; an &#8211; jedoch habe ich damit schlechtere Erfahrungen gemacht. Okay, sie funktioniert ordentlich &#8211; ist jedoch ein bisschen viel auf DAUs optimiert (lässt sich schon an der Oberfläche erkennen&#8230;). Phoner ist flexibler zu konfigurieren und lässt sich auch als &#8220;Portable&#8221; ausführen <img src='http://www.awesomeit.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Die Einstellungen für 1und1, um sich dort am SIP-Gateway mit seiner Festnetzrufnummer zu registrieren, habe ich nebenstehend in einem Screenshot abgebildet, da 1und1 Sie &#8220;nicht mal eben&#8221; rausrückt und einige Zeit des Suchens beansprucht hat.</p>
<p>Eine Übersicht für weitere Serverdaten anderer Anbieter für Phoner findet ihr in diesem <a href="http://www.forum.phoner.de/YaBB.pl?num=1128696372">Forenthread</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awesomeit.de/2010/06/02/kostenlose-voip-software-fur-11-sip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Must-Have Sidebar-Gadgets für Win7</title>
		<link>http://www.awesomeit.de/2010/05/28/must-have-sidebar-gadget-fur-win7/</link>
		<comments>http://www.awesomeit.de/2010/05/28/must-have-sidebar-gadget-fur-win7/#comments</comments>
		<pubDate>Fri, 28 May 2010 22:31:32 +0000</pubDate>
		<dc:creator>Bastian Müller</dc:creator>
				<category><![CDATA[Artikel]]></category>

		<guid isPermaLink="false">http://www.awesomeit.de/?p=483</guid>
		<description><![CDATA[Ich bin gerade auf einen Entwickler gestoßen, der in seinem Blog äußerst hochwertige Sidebar Gadgets für Windows 7 anbietet. Alles,...]]></description>
			<content:encoded><![CDATA[<p><div id="attachment_484" class="wp-caption alignright" style="width: 94px"><a href="http://www.awesomeit.de/wp-content/uploads/2010/05/sidebar-gadgets.png" rel="lightbox[483]"><img src="http://www.awesomeit.de/wp-content/uploads/2010/05/sidebar-gadgets-84x150.png" alt="" title="sidebar-gadgets" width="84" height="150" class="size-thumbnail wp-image-484" /></a><p class="wp-caption-text">Gadgets für Win7 von Orbmu2k</p></div>Ich bin gerade auf einen Entwickler gestoßen, der in seinem Blog äußerst <strong>hochwertige Sidebar Gadgets für Windows 7</strong> anbietet.<br />
Alles, was ich bisher in der Windows-Sidebar-Gadget-Gallery gesehen habe, ist absoluter Mist dagegen. </p>
<p><strong>Orbmu2k </strong>- der Entwickler &#8211; hat einige äußerst ansprechende, funktionale und hochwertige Gadgets geschrieben &#8211; etwa zur Anzeige der Last einzelner Prozessor-Cores und deren Temperaturen, der Auslastung der Netzwerkkarte oder der Anzeige von Informationen, welche die Grafikkarte betreffend (Auslastung, Temperatur, Fanspeed, etc.).</p>
<p>Und das beste: Sie sehen auch noch toll aus und sind einheitlich &#8211; so wie ich&#8217;s bisher immer wollte. </p>
<p>Ihr findet die Gadgets in seinem Blog auf <a href="http://blog.orbmu2k.de/category/sidebar-gadgets">OrbLog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awesomeit.de/2010/05/28/must-have-sidebar-gadget-fur-win7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download der Datenträger für Office 2007 (MLK)</title>
		<link>http://www.awesomeit.de/2010/05/27/download-der-datentrager-fur-office-2007-mlk/</link>
		<comments>http://www.awesomeit.de/2010/05/27/download-der-datentrager-fur-office-2007-mlk/#comments</comments>
		<pubDate>Thu, 27 May 2010 20:49:02 +0000</pubDate>
		<dc:creator>Bastian Müller</dc:creator>
				<category><![CDATA[Artikel]]></category>
		<category><![CDATA[Workaround]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.awesomeit.de/?p=479</guid>
		<description><![CDATA[Heute war ich vor ein kleines Problem gestellt: Eine Office 2007 MLK (Medialess Licence Key) sollte auf ein Notebook, auf...]]></description>
			<content:encoded><![CDATA[<p>Heute war ich vor ein kleines Problem gestellt: Eine Office 2007 MLK (<em>Medialess Licence Key</em>) sollte auf ein Notebook, auf dem leider die falsche &#8220;Testversion&#8221; von Office installiert war.<br />
Also das Office 07 Home+Student deinstalliert, eine aktuelle Testversion von Microsoft Office 2007 Professional installiert und versucht, den neuen Key einzugeben -> Nada.</p>
<p>Nach langem Suchen bin ich auf die &#8211; ziemlich einfache &#8211; Lösung gestoßen:<br />
Auf dieser <a href="http://www.microsoft.com/office/backup/de-de/default.mspx">Microsoft-Seite</a> kann man seinen Key hinterlegen und wird zu einer Seite gelotst, die ihm erlaubt eine &#8220;Backup-Installation&#8221; seines Office zu downloaden. Herunterladen, installieren, aktivieren, fröhlich sein.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awesomeit.de/2010/05/27/download-der-datentrager-fur-office-2007-mlk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update-Nachricht von Avira AntiVir ausblenden</title>
		<link>http://www.awesomeit.de/2010/05/24/update-nachricht-von-avira-antivir-ausblenden/</link>
		<comments>http://www.awesomeit.de/2010/05/24/update-nachricht-von-avira-antivir-ausblenden/#comments</comments>
		<pubDate>Mon, 24 May 2010 12:15:38 +0000</pubDate>
		<dc:creator>Bastian Müller</dc:creator>
				<category><![CDATA[Artikel]]></category>
		<category><![CDATA[Workaround]]></category>
		<category><![CDATA[Programmierung]]></category>

		<guid isPermaLink="false">http://www.awesomeit.de/?p=473</guid>
		<description><![CDATA[Wen es stört, dass bei der Free-Version von Avira AntiVir nach dem Update immer ein PopUp erscheint, das über die...]]></description>
			<content:encoded><![CDATA[<p>Wen es stört, dass bei der Free-Version von Avira AntiVir nach dem Update immer ein PopUp erscheint, das über die tollen Funktionen der kostenpflichtigen Versionen informiert, dem kann mit diesem kleinen Script geholfen werden. Es prüft alle 2 Sekunden auf das vorhandensein des Updatefensters, bringt es in den Vordergrund und schließt es.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left2">Download <a href="http://www.awesomeit.de/wp-content/plugins/wp-codebox/wp-codebox.php?p=473&amp;download=avira_hide_updatemsg.au3">avira_hide_updatemsg.au3</a></span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p47312"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code" id="p473code12"><pre class="autoit" style="font-family:monospace;"><a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">while</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="color: #AC00A9; font-style: italic; font-weight: bold;">1</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
	<a href="http://www.autoitscript.com/autoit3/docs/functions/Sleep.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">sleep</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="color: #AC00A9; font-style: italic; font-weight: bold;">2000</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
	<span style="font-weight: bold; color: #AA0000;">$title</span> <span style="color: #FF0000; font-weight: bold;">=</span>	<span style="font-weight: bold; color: #008080;">&quot;Notifier von Avira AntiVir Personal - Free Antivirus&quot;</span>
	<span style="font-weight: bold; color: #AA0000;">$text</span>  <span style="color: #FF0000; font-weight: bold;">=</span>	<span style="font-weight: bold; color: #008080;">&quot;Schließen&quot;</span>
		<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">IF</span></a> <a href="http://www.autoitscript.com/autoit3/docs/functions/WinExists.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">WinExists</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$title</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$text</span><span style="color: #FF0000; font-weight: bold;">&#41;</span> <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Then</span></a>
			<a href="http://www.autoitscript.com/autoit3/docs/functions/WinActivate.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">WinActivate</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$title</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$text</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
			<a href="http://www.autoitscript.com/autoit3/docs/functions/ControlClick.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">ControlClick</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$title</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$text</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #008080;">&quot;Button1&quot;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
		<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">EndIf</span></a>
<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">WEnd</span></a></pre></td></tr></table></div>

<p>Einfach mittels AutoIT kompillieren / <a href='http://www.awesomeit.de/wp-content/uploads/2010/05/avira_hide_updatemsg.exe'>hier downloaden</a> und in den Autostart-Ordner kopieren.<br />
Interessanterweise meckert Avira AntiVir das die *.exe-Datei einen Virus enthält <img src='http://www.awesomeit.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Selbstschutzwerbemechanismus, hm? <img src='http://www.awesomeit.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.awesomeit.de/2010/05/24/update-nachricht-von-avira-antivir-ausblenden/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>JPEG-Bildgröße (Dimensionen) auslesen</title>
		<link>http://www.awesomeit.de/2010/05/24/jpeg-bildgrose-dimensionen-auslesen/</link>
		<comments>http://www.awesomeit.de/2010/05/24/jpeg-bildgrose-dimensionen-auslesen/#comments</comments>
		<pubDate>Mon, 24 May 2010 11:19:04 +0000</pubDate>
		<dc:creator>Bastian Müller</dc:creator>
				<category><![CDATA[Artikel]]></category>
		<category><![CDATA[Programmierung]]></category>

		<guid isPermaLink="false">http://www.awesomeit.de/?p=469</guid>
		<description><![CDATA[Ich arbeite momentan an einem kleinen Tool für meine Firma, die es ermöglicht, einem Kunden direkt vor Ort (während einer...]]></description>
			<content:encoded><![CDATA[<p>Ich arbeite momentan an einem kleinen Tool für meine Firma, die es ermöglicht, einem Kunden direkt vor Ort (während einer Mobotix-Kameraleihstellung) einen besseren Eindruck über das Bild zu geben. Sowohl wie das Bild mit unterschiedlichen Objektiven, als auch im Vergleich zu normalen Analogkameras mit geringer Auflösung aussehen würde.</p>
<p>Dabei musste ich feststellen, dass es weder in AutoIT noch IrfanView die Möglichkeit gibt, die <strong>Bildgröße </strong>(x mal y) auszulesen. Auch die Liste der Kommandozeilen-Tools dafür verhält sich recht bedeckt.</p>
<p>Nach langem Suchen im AutoIT-Forum bin ich auf folgenden Codeschnipsel gestoßen, der sehr gut funktioniert:</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left2">Download <a href="http://www.awesomeit.de/wp-content/plugins/wp-codebox/wp-codebox.php?p=469&amp;download=getjpegsize.au3">getjpegsize.au3</a></span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p46915"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
</pre></td><td class="code" id="p469code15"><pre class="autoit" style="font-family:monospace;"><span style="font-style: italic; color: #009933;">; Funktion: _GetJpegSize()</span>
<span style="font-style: italic; color: #009933;">; Liest die Größeninformationen eines Bildes aus</span>
<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Func</span></a> _GetJpegSize<span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$file</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Local</span></a> <span style="font-weight: bold; color: #AA0000;">$size</span><span style="color: #FF0000; font-weight: bold;">&#91;</span><span style="color: #AC00A9; font-style: italic; font-weight: bold;">2</span><span style="color: #FF0000; font-weight: bold;">&#93;</span>
<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Local</span></a> <span style="font-weight: bold; color: #AA0000;">$fs</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$pos</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="color: #AC00A9; font-style: italic; font-weight: bold;">3</span>
&nbsp;
<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">if</span></a> <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">not</span></a> <span style="color: #FF0000; font-weight: bold;">&#40;</span>_FileReadAtOffsetHEX <span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$file</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="color: #AC00A9; font-style: italic; font-weight: bold;">1</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="color: #AC00A9; font-style: italic; font-weight: bold;">2</span><span style="color: #FF0000; font-weight: bold;">&#41;</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="font-weight: bold; color: #008080;">&quot;FFD8&quot;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span> <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">then</span></a>
    <a href="http://www.autoitscript.com/autoit3/docs/functions/SetError.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">SetError</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="color: #AC00A9; font-style: italic; font-weight: bold;">1</span><span style="color: #FF0000; font-weight: bold;">&#41;</span><span style="font-style: italic; color: #009933;">; Not Jpeg</span>
    <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Return</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #008080;">&quot;&quot;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">endif</span></a>
&nbsp;
<span style="font-weight: bold; color: #AA0000;">$fs</span> <span style="color: #FF0000; font-weight: bold;">=</span> <a href="http://www.autoitscript.com/autoit3/docs/functions/FileGetSize.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">FileGetSize</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$file</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
&nbsp;
<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">While</span></a> <span style="font-weight: bold; color: #AA0000;">$pos</span> <span style="color: #FF0000; font-weight: bold;">&lt;</span> <span style="font-weight: bold; color: #AA0000;">$fs</span>
    <span style="font-weight: bold; color: #AA0000;">$data</span> <span style="color: #FF0000; font-weight: bold;">=</span> _FileReadAtOffsetHEX <span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$file</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$pos</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="color: #AC00A9; font-style: italic; font-weight: bold;">4</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
    <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">if</span></a> <a href="http://www.autoitscript.com/autoit3/docs/functions/StringLeft.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">StringLeft</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$data</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="color: #AC00A9; font-style: italic; font-weight: bold;">2</span><span style="color: #FF0000; font-weight: bold;">&#41;</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="font-weight: bold; color: #008080;">&quot;FF&quot;</span> <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">then</span></a><span style="font-style: italic; color: #009933;">; Valid segment start</span>
        <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">if</span></a> <a href="http://www.autoitscript.com/autoit3/docs/functions/StringInStr.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">StringInStr</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #008080;">&quot;C0 C2 CA C1 C3 C5 C6 C7 C9 CB CD CE CF&quot;</span><span style="color: #FF0000; font-weight: bold;">,</span> <a href="http://www.autoitscript.com/autoit3/docs/functions/StringMid.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">StringMid</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$data</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="color: #AC00A9; font-style: italic; font-weight: bold;">3</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="color: #AC00A9; font-style: italic; font-weight: bold;">2</span><span style="color: #FF0000; font-weight: bold;">&#41;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span> <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">then</span></a><span style="font-style: italic; color: #009933;">; Segment with size data</span>
           <span style="font-weight: bold; color: #AA0000;">$seg</span> <span style="color: #FF0000; font-weight: bold;">=</span> _FileReadAtOffsetHEX <span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$file</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$pos</span><span style="color: #FF0000; font-weight: bold;">+</span><span style="color: #AC00A9; font-style: italic; font-weight: bold;">5</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="color: #AC00A9; font-style: italic; font-weight: bold;">4</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
           <span style="font-weight: bold; color: #AA0000;">$size</span><span style="color: #FF0000; font-weight: bold;">&#91;</span><span style="color: #AC00A9; font-style: italic; font-weight: bold;">1</span><span style="color: #FF0000; font-weight: bold;">&#93;</span> <span style="color: #FF0000; font-weight: bold;">=</span> <a href="http://www.autoitscript.com/autoit3/docs/functions/Dec.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">Dec</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><a href="http://www.autoitscript.com/autoit3/docs/functions/StringLeft.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">StringLeft</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$seg</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="color: #AC00A9; font-style: italic; font-weight: bold;">4</span><span style="color: #FF0000; font-weight: bold;">&#41;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
           <span style="font-weight: bold; color: #AA0000;">$size</span><span style="color: #FF0000; font-weight: bold;">&#91;</span><span style="color: #AC00A9; font-style: italic; font-weight: bold;">0</span><span style="color: #FF0000; font-weight: bold;">&#93;</span> <span style="color: #FF0000; font-weight: bold;">=</span> <a href="http://www.autoitscript.com/autoit3/docs/functions/Dec.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">Dec</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><a href="http://www.autoitscript.com/autoit3/docs/functions/StringRight.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">StringRight</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$seg</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="color: #AC00A9; font-style: italic; font-weight: bold;">4</span><span style="color: #FF0000; font-weight: bold;">&#41;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
           <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Return</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$size</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
        <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">else</span></a>
           <span style="font-weight: bold; color: #AA0000;">$pos</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="font-weight: bold; color: #AA0000;">$pos</span> <span style="color: #FF0000; font-weight: bold;">+</span> <a href="http://www.autoitscript.com/autoit3/docs/functions/Dec.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">Dec</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><a href="http://www.autoitscript.com/autoit3/docs/functions/StringRight.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">StringRight</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$data</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="color: #AC00A9; font-style: italic; font-weight: bold;">4</span><span style="color: #FF0000; font-weight: bold;">&#41;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span> <span style="color: #FF0000; font-weight: bold;">+</span> <span style="color: #AC00A9; font-style: italic; font-weight: bold;">2</span>
        <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">endif</span></a>
    <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">else</span></a>
        <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">exitloop</span></a>
    <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">endif</span></a>
<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Wend</span></a>
<a href="http://www.autoitscript.com/autoit3/docs/functions/SetError.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">SetError</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="color: #AC00A9; font-style: italic; font-weight: bold;">2</span><span style="color: #FF0000; font-weight: bold;">&#41;</span><span style="font-style: italic; color: #009933;">; Segment not found</span>
<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Return</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #008080;">&quot;&quot;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">EndFunc</span></a>
&nbsp;
<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Func</span></a> _FileReadAtOffsetHEX <span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$file</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$offset</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$bytes</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
    <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Local</span></a> <span style="font-weight: bold; color: #AA0000;">$tfile</span> <span style="color: #FF0000; font-weight: bold;">=</span> <a href="http://www.autoitscript.com/autoit3/docs/functions/FileOpen.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">FileOpen</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$file</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="color: #AC00A9; font-style: italic; font-weight: bold;">0</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
    <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Local</span></a> <span style="font-weight: bold; color: #AA0000;">$tstr</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="font-weight: bold; color: #008080;">&quot;&quot;</span>
    <a href="http://www.autoitscript.com/autoit3/docs/functions/FileRead.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">FileRead</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$tfile</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$offset</span><span style="color: #FF0000; font-weight: bold;">-</span><span style="color: #AC00A9; font-style: italic; font-weight: bold;">1</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
    <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">For</span></a> <span style="font-weight: bold; color: #AA0000;">$i</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="font-weight: bold; color: #AA0000;">$offset</span> <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">To</span></a> <span style="font-weight: bold; color: #AA0000;">$offset</span> <span style="color: #FF0000; font-weight: bold;">+</span> <span style="font-weight: bold; color: #AA0000;">$bytes</span> <span style="color: #FF0000; font-weight: bold;">-</span> <span style="color: #AC00A9; font-style: italic; font-weight: bold;">1</span>
        <span style="font-weight: bold; color: #AA0000;">$tstr</span> <span style="color: #FF0000; font-weight: bold;">=</span>  <span style="font-weight: bold; color: #AA0000;">$tstr</span> <span style="color: #FF0000; font-weight: bold;">&amp;</span> <a href="http://www.autoitscript.com/autoit3/docs/functions/Hex.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">Hex</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><a href="http://www.autoitscript.com/autoit3/docs/functions/Asc.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">Asc</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><a href="http://www.autoitscript.com/autoit3/docs/functions/FileRead.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">FileRead</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$tfile</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="color: #AC00A9; font-style: italic; font-weight: bold;">1</span><span style="color: #FF0000; font-weight: bold;">&#41;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="color: #AC00A9; font-style: italic; font-weight: bold;">2</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
    <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Next</span></a>
    <a href="http://www.autoitscript.com/autoit3/docs/functions/FileClose.htm"><span style="color: #000080; font-style: italic; font-weight: bold;">FileClose</span></a><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$tfile</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
    <a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Return</span></a> <span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$tstr</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
<a href="http://www.autoitscript.com/autoit3/docs/keywords.htm"><span style="color: #0000FF; font-weight: bold;">Endfunc</span></a></pre></td></tr></table></div>

<p>Der Aufruf funktioniert dann wie folgt:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p469code16'); return false;">View Code</a> AUTOIT</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p46916"><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code" id="p469code16"><pre class="autoit" style="font-family:monospace;"><span style="font-weight: bold; color: #AA0000;">$img_size</span> <span style="color: #FF0000; font-weight: bold;">=</span> _GetJpegSize<span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #008080;">&quot;c:\test.jpg&quot;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
<span style="font-weight: bold; color: #AA0000;">$img_width</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="font-weight: bold; color: #AA0000;">$img_size</span><span style="color: #FF0000; font-weight: bold;">&#91;</span><span style="color: #AC00A9; font-style: italic; font-weight: bold;">0</span><span style="color: #FF0000; font-weight: bold;">&#93;</span>
<span style="font-weight: bold; color: #AA0000;">$img_height</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="font-weight: bold; color: #AA0000;">$img_size</span><span style="color: #FF0000; font-weight: bold;">&#91;</span><span style="color: #AC00A9; font-style: italic; font-weight: bold;">1</span><span style="color: #FF0000; font-weight: bold;">&#93;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.awesomeit.de/2010/05/24/jpeg-bildgrose-dimensionen-auslesen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows-Laufwerke statt Bibliotheken anzeigen</title>
		<link>http://www.awesomeit.de/2010/05/22/windows-laufwerke-statt-bibliotheken-anzeigen/</link>
		<comments>http://www.awesomeit.de/2010/05/22/windows-laufwerke-statt-bibliotheken-anzeigen/#comments</comments>
		<pubDate>Sat, 22 May 2010 11:13:49 +0000</pubDate>
		<dc:creator>Bastian Müller</dc:creator>
				<category><![CDATA[Artikel]]></category>
		<category><![CDATA[Workaround]]></category>
		<category><![CDATA[OS]]></category>

		<guid isPermaLink="false">http://www.awesomeit.de/?p=461</guid>
		<description><![CDATA[Seit Windows 7 wurde die Ansicht des Windows-Explorers geändert &#8211; anstatt der Anzeige der lokalen Laufwerke/Partitionen bzw. Netzlaufwerke werden nun...]]></description>
			<content:encoded><![CDATA[<p>Seit Windows 7 wurde die Ansicht des Windows-Explorers geändert &#8211; anstatt der Anzeige der lokalen Laufwerke/Partitionen bzw. Netzlaufwerke werden nun zuerst die Windows-Bibliotheken angezeigt.</p>
<div id="attachment_463" class="wp-caption alignright" style="width: 116px"><a href="http://www.awesomeit.de/wp-content/uploads/2010/05/windowsexplorerlaufwerke.png" rel="lightbox[461]"><img class="size-thumbnail wp-image-463 " title="windowsexplorerlaufwerke" src="http://www.awesomeit.de/wp-content/uploads/2010/05/windowsexplorerlaufwerke-106x150.png" alt="" width="106" height="150" /></a><p class="wp-caption-text">Windows-Explorer Eigenschaften</p></div>
<p>Für Admins äußerst nervig (und für die Leute, die keine Bibliotheken nutzen &#8230;) gibt es hier einen kleinen Workaround:</p>
<p>1) Rechtsklick auf das Ordner-Symbol in der Taskleiste &#8211; Rechtsklick auf &#8220;<strong>Windows-Explorer</strong>&#8221; -  Eigenschaften<br />
2) Folgenden Parameter &#8220;<strong>/e,::{20D04FE0-3AEA-1069-A2D8-08002B30309D}</strong>&#8221; an das Ende des Ziels hinzufügen. <strong>HINZUFÜGEN</strong>, nicht ersetzen!</p>
<p>Daraufhin öffnet sich der gewohnte Windows-Explorer mit der Übersicht der Laufwerke als Startseite.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awesomeit.de/2010/05/22/windows-laufwerke-statt-bibliotheken-anzeigen/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iPhone synchronisiert nicht mehr richtig mit Outlook</title>
		<link>http://www.awesomeit.de/2010/05/10/iphone-synchronisiert-nicht-mehr-richtig-mit-outlook/</link>
		<comments>http://www.awesomeit.de/2010/05/10/iphone-synchronisiert-nicht-mehr-richtig-mit-outlook/#comments</comments>
		<pubDate>Mon, 10 May 2010 12:51:02 +0000</pubDate>
		<dc:creator>Bastian Müller</dc:creator>
				<category><![CDATA[Artikel]]></category>
		<category><![CDATA[Workaround]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.awesomeit.de/?p=458</guid>
		<description><![CDATA[Ich wurde heute zu einem Kunden gerufen, der Probleme mit seinem iPhone 3Gs und der Synchronisation dessen mit Outlook 2007...]]></description>
			<content:encoded><![CDATA[<p>Ich wurde heute zu einem Kunden gerufen, der Probleme mit seinem iPhone 3Gs und der Synchronisation dessen mit Outlook 2007 hatte.</p>
<p>Outlook ist per Outlook Connector an einen MDaemon-Mailserver angebunden. Das Problem befällt aber anscheinend auch ganz normale Umgebungen.</p>
<p>Zwar konnte er mittels iTunes Kalender-Einträge, die er in Outlook 2007 erstellt hatte, auf das iPhone synchronisieren &#8211; in die andere Richtung, von iPhone auf den PC &#8211; hat dies nicht funktioniert. Der Kalendereintrag wurde einfach nicht übernommen.</p>
<p>Nach hin- und herprobieren, insbesondere mit der ausschließlichen Synchronisation eines Kalenders, bin ich auf eine Lösung gekommen: Man muss in den Einstellungen von iTunes -&gt; Geräte, den Sync-Verlauf zurücksetzen. Damit bleiben die Daten auf beiden Geräten erhalten, die Beziehung zueinander wird jedoch &#8220;gelöscht&#8221;. Nach einer erneuten Synchronisation fragt iTunes, ob die Daten zusammengeführt werden sollen &#8211; bestätigt man mit Ja, synchronisiert iTunes wie gehabt.</p>
<p>In meinem Fall war dies die Lösung.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awesomeit.de/2010/05/10/iphone-synchronisiert-nicht-mehr-richtig-mit-outlook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

