<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for diginc</title>
	<atom:link href="http://diginc.us/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://diginc.us</link>
	<description>&#039;dij-iŋk</description>
	<lastBuildDate>Wed, 24 Apr 2013 10:58:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Using IPTables with Dynamic IP hostnames like dyndns.org by Criando regras para ips dinâmicos no iptables &#124; Alexos Core Labs</title>
		<link>http://diginc.us/linux/2010/using-iptables-with-dynamic-ip-hostnames-like-dyndns-org/comment-page-1/#comment-864</link>
		<dc:creator>Criando regras para ips dinâmicos no iptables &#124; Alexos Core Labs</dc:creator>
		<pubDate>Wed, 24 Apr 2013 10:58:52 +0000</pubDate>
		<guid isPermaLink="false">http://diginc.us/?p=172#comment-864</guid>
		<description><![CDATA[[...] Using IPTables with Dynamic IP hostnames like dyndns.org [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Using IPTables with Dynamic IP hostnames like dyndns.org [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Autostart a Virtualbox VM in Windows 7 the Easy Way by James</title>
		<link>http://diginc.us/microsoft/2011/autostart-a-virtualbox-vm-in-windows-7-the-easy-way/comment-page-1/#comment-718</link>
		<dc:creator>James</dc:creator>
		<pubDate>Sun, 26 Aug 2012 04:23:46 +0000</pubDate>
		<guid isPermaLink="false">http://diginc.us/?p=235#comment-718</guid>
		<description><![CDATA[Hi guys,

Sorry to revive an old thread, but I have a solution to this issue where I have written a script that does all that you want:
1) without requiring hstart and the command prompt window does disappear.
2) It launches the VM as a seamless/headless/maximised
3) Even if you did somehow manage to close the terminal/cmd window it WILL NOT pull the plug on your virtual machine! 
4) If you look at the script it not only allows for that safety factor but it actually starts it in a fresh new process and closes the CMD window for you anyway, this way you leave the virtual machine open and running in its own process ;)
5) It IDs the Virtual machine via its ID number and not its name and location so Virtualbox automatically knows what virtual machine you wish to launch without needing to know its path location in reference to the script location

[code]@echo off
if not &quot;%minimized%&quot;==&quot;&quot; goto :minimized
set minimized=true
start /min cmd /C &quot;%~dpnx0&quot;
goto :EOF
:minimized
rem Anything after here will run in a minimized window
rem bring the current directoty forward and change drives cause windows normally starts your process from system32
rem bringing the process forward to the script location means it will launch myscript  from its location
%~d0
CD %~dp0
cls
rem Open the folder in a new process and close/exit this one
start /wait /b C:\PROGRA~1\Oracle\VirtualBox\VirtualBox.exe --startvm &quot;6de1a76e-ee30-4844-b578-a2453026c14e&quot; /SEPARATE/N
exit[/code]

Note that code is for my own Virtualbox Ubuntu ID, put yours in there. If you like 
Basically plonk this on your desktop or in your startup folder and create a user called Ubuntu in Windows 7 and use the same credentials in Win7 as Ubuntu. Set the screen in Win7 never to lock or require password to unlock. Set boot into Ubuntu to auto-log in but have password prompt on screen awake resume! DONE]]></description>
		<content:encoded><![CDATA[<p>Hi guys,</p>
<p>Sorry to revive an old thread, but I have a solution to this issue where I have written a script that does all that you want:<br />
1) without requiring hstart and the command prompt window does disappear.<br />
2) It launches the VM as a seamless/headless/maximised<br />
3) Even if you did somehow manage to close the terminal/cmd window it WILL NOT pull the plug on your virtual machine!<br />
4) If you look at the script it not only allows for that safety factor but it actually starts it in a fresh new process and closes the CMD window for you anyway, this way you leave the virtual machine open and running in its own process <img src='http://diginc.us/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
5) It IDs the Virtual machine via its ID number and not its name and location so Virtualbox automatically knows what virtual machine you wish to launch without needing to know its path location in reference to the script location</p>
<p>[code]@echo off<br />
if not "%minimized%"=="" goto :minimized<br />
set minimized=true<br />
start /min cmd /C "%~dpnx0"<br />
goto :EOF<br />
:minimized<br />
rem Anything after here will run in a minimized window<br />
rem bring the current directoty forward and change drives cause windows normally starts your process from system32<br />
rem bringing the process forward to the script location means it will launch myscript  from its location<br />
%~d0<br />
CD %~dp0<br />
cls<br />
rem Open the folder in a new process and close/exit this one<br />
start /wait /b C:\PROGRA~1\Oracle\VirtualBox\VirtualBox.exe --startvm "6de1a76e-ee30-4844-b578-a2453026c14e" /SEPARATE/N<br />
exit[/code]</p>
<p>Note that code is for my own Virtualbox Ubuntu ID, put yours in there. If you like<br />
Basically plonk this on your desktop or in your startup folder and create a user called Ubuntu in Windows 7 and use the same credentials in Win7 as Ubuntu. Set the screen in Win7 never to lock or require password to unlock. Set boot into Ubuntu to auto-log in but have password prompt on screen awake resume! DONE</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using IPTables with Dynamic IP hostnames like dyndns.org by Anonymous</title>
		<link>http://diginc.us/linux/2010/using-iptables-with-dynamic-ip-hostnames-like-dyndns-org/comment-page-1/#comment-717</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Fri, 10 Aug 2012 11:57:33 +0000</pubDate>
		<guid isPermaLink="false">http://diginc.us/?p=172#comment-717</guid>
		<description><![CDATA[[...]  [...]]]></description>
		<content:encoded><![CDATA[<p>[...]  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Autostart a Virtualbox VM in Windows 7 the Easy Way by Virtualbox headless, sin interfaz gráfica, en Windows &#124; Ngaby.com</title>
		<link>http://diginc.us/microsoft/2011/autostart-a-virtualbox-vm-in-windows-7-the-easy-way/comment-page-1/#comment-716</link>
		<dc:creator>Virtualbox headless, sin interfaz gráfica, en Windows &#124; Ngaby.com</dc:creator>
		<pubDate>Sat, 30 Jun 2012 21:36:02 +0000</pubDate>
		<guid isPermaLink="false">http://diginc.us/?p=235#comment-716</guid>
		<description><![CDATA[[...] Después de mucho investigar he dado con la solución que me parece mas adecuada a mi problema https://blogs.oracle.com/danielc/entry/autostarting_a_virtualbox_vm_headless http://diginc.us/microsoft/2011/autostart-a-virtualbox-vm-in-windows-7-the-easy-way/ [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Después de mucho investigar he dado con la solución que me parece mas adecuada a mi problema https://blogs.oracle.com/danielc/entry/autostarting_a_virtualbox_vm_headless http://diginc.us/microsoft/2011/autostart-a-virtualbox-vm-in-windows-7-the-easy-way/ [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Outlook 2007: None of the Authentication Methods Supported By This Client Are Supported By Your Server by Rob Pomeroy</title>
		<link>http://diginc.us/microsoft/2009/outlook-2007-none-of-the-authentication-methods-supported-by-this-client-are-supported-by-your-server/comment-page-1/#comment-713</link>
		<dc:creator>Rob Pomeroy</dc:creator>
		<pubDate>Tue, 26 Jun 2012 09:26:20 +0000</pubDate>
		<guid isPermaLink="false">http://diginc.us/?p=42#comment-713</guid>
		<description><![CDATA[It&#039;s frustrating how many posts on this subject are from non-technical authors (even on Technet) and/or from folks with &quot;me too&quot; or &quot;this didn&#039;t work for me, try this&quot; comments.  My company is in a weird position where we have to receive email via one email platform and send out via another - a hybrid position necessitated by a bungled roll-out of an inadequately tested email solution by one of our ISPs (BT).

Anyway, as far as I can tell, it looks like MS changed the way it implemented SMTP AUTH in Outlook 2007.  This change has been carried over into Outlook 2010.  Outlook 2010 tries to encode credentials with MD5 or better.  When I query BT&#039;s servers, this is what I see:

&lt;code&gt;[root]# telnet mail.btconnect.com 25
Trying 213.123.26.152...
Connected to mail.btconnect.com.
Escape character is &#039;^]&#039;.
220 mail.btconnect.com ESMTP
ehlo eel.co.uk
250-mail.btconnect.com Hello eel.co.uk
250-8BITMIME
250-SIZE 52428800
250-ETRN
250-DSN
250-AUTH LOGIN PLAIN
250-AUTH=LOGIN PLAIN
250 PIPELINING
&lt;/code&gt;

The mail server is only offering LOGIN or PLAIN and Outlook apparently isn&#039;t prepared to stoop so low.  Furthermore, from what I&#039;ve read, DIGEST-MD5 authentication was broken in Outlook 2007 in any case and remains so in Outlook 2010.

Most solutions out there depend on using POP before SMTP for implicit authentication but since our POP and SMTP servers are physically separate (provided by different organisations in fact), this is not an option for us.  Ironically the &quot;fix&quot; would appear to be to downgrade to Windows Live Mail (or Thunderbird), but given the size of our I.T. estate, that would be a mammoth project.

I&#039;m still waiting for a proper fix in Outlook, but since no one seems to understand the SMTP RFCs any more, I&#039;m not going to be holding my breath.  We just have to live with the fact that the leading email client (for better or worse) has introduced incompatibilities with legacy systems.

Bah!]]></description>
		<content:encoded><![CDATA[<p>It&#8217;s frustrating how many posts on this subject are from non-technical authors (even on Technet) and/or from folks with &#8220;me too&#8221; or &#8220;this didn&#8217;t work for me, try this&#8221; comments.  My company is in a weird position where we have to receive email via one email platform and send out via another &#8211; a hybrid position necessitated by a bungled roll-out of an inadequately tested email solution by one of our ISPs (BT).</p>
<p>Anyway, as far as I can tell, it looks like MS changed the way it implemented SMTP AUTH in Outlook 2007.  This change has been carried over into Outlook 2010.  Outlook 2010 tries to encode credentials with MD5 or better.  When I query BT&#8217;s servers, this is what I see:</p>
<p><code>[root]# telnet mail.btconnect.com 25<br />
Trying 213.123.26.152...<br />
Connected to mail.btconnect.com.<br />
Escape character is '^]'.<br />
220 mail.btconnect.com ESMTP<br />
ehlo eel.co.uk<br />
250-mail.btconnect.com Hello eel.co.uk<br />
250-8BITMIME<br />
250-SIZE 52428800<br />
250-ETRN<br />
250-DSN<br />
250-AUTH LOGIN PLAIN<br />
250-AUTH=LOGIN PLAIN<br />
250 PIPELINING<br />
</code></p>
<p>The mail server is only offering LOGIN or PLAIN and Outlook apparently isn&#8217;t prepared to stoop so low.  Furthermore, from what I&#8217;ve read, DIGEST-MD5 authentication was broken in Outlook 2007 in any case and remains so in Outlook 2010.</p>
<p>Most solutions out there depend on using POP before SMTP for implicit authentication but since our POP and SMTP servers are physically separate (provided by different organisations in fact), this is not an option for us.  Ironically the &#8220;fix&#8221; would appear to be to downgrade to Windows Live Mail (or Thunderbird), but given the size of our I.T. estate, that would be a mammoth project.</p>
<p>I&#8217;m still waiting for a proper fix in Outlook, but since no one seems to understand the SMTP RFCs any more, I&#8217;m not going to be holding my breath.  We just have to live with the fact that the leading email client (for better or worse) has introduced incompatibilities with legacy systems.</p>
<p>Bah!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Autostart a Virtualbox VM in Windows 7 the Easy Way by 5moufl</title>
		<link>http://diginc.us/microsoft/2011/autostart-a-virtualbox-vm-in-windows-7-the-easy-way/comment-page-1/#comment-712</link>
		<dc:creator>5moufl</dc:creator>
		<pubDate>Sat, 23 Jun 2012 10:37:59 +0000</pubDate>
		<guid isPermaLink="false">http://diginc.us/?p=235#comment-712</guid>
		<description><![CDATA[I finally used http://sourceforge.net/projects/vboxvmservice/ although there&#039;s a slight delay on startup.
I could still use your script for a faster startup or this other solution http://timita.org/wordpress/2011/08/04/protect-windows-with-pfsense-and-virtualbox-part-6-running-virtualbox-headless-vm-auto-save-stateresume/]]></description>
		<content:encoded><![CDATA[<p>I finally used <a href="http://sourceforge.net/projects/vboxvmservice/" rel="nofollow">http://sourceforge.net/projects/vboxvmservice/</a> although there&#8217;s a slight delay on startup.<br />
I could still use your script for a faster startup or this other solution <a href="http://timita.org/wordpress/2011/08/04/protect-windows-with-pfsense-and-virtualbox-part-6-running-virtualbox-headless-vm-auto-save-stateresume/" rel="nofollow">http://timita.org/wordpress/2011/08/04/protect-windows-with-pfsense-and-virtualbox-part-6-running-virtualbox-headless-vm-auto-save-stateresume/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using IPTables with Dynamic IP hostnames like dyndns.org by diginc</title>
		<link>http://diginc.us/linux/2010/using-iptables-with-dynamic-ip-hostnames-like-dyndns-org/comment-page-1/#comment-711</link>
		<dc:creator>diginc</dc:creator>
		<pubDate>Thu, 14 Jun 2012 16:50:05 +0000</pubDate>
		<guid isPermaLink="false">http://diginc.us/?p=172#comment-711</guid>
		<description><![CDATA[I think you&#039;re confused about the usage case for this program.  Say I have a remote off-site server I want to lock out port 22 on EXCEPT for my work&#039;s static IP block and my home&#039;s Dynamic IP address.  That off-site server won&#039;t know when my home&#039;s IP sends the update to dyndns and that it should restart iptables unless it does a host/dns lookup to find out the IP every once in a while.  Does that clear things up?]]></description>
		<content:encoded><![CDATA[<p>I think you&#8217;re confused about the usage case for this program.  Say I have a remote off-site server I want to lock out port 22 on EXCEPT for my work&#8217;s static IP block and my home&#8217;s Dynamic IP address.  That off-site server won&#8217;t know when my home&#8217;s IP sends the update to dyndns and that it should restart iptables unless it does a host/dns lookup to find out the IP every once in a while.  Does that clear things up?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Autostart a Virtualbox VM in Windows 7 the Easy Way by diginc</title>
		<link>http://diginc.us/microsoft/2011/autostart-a-virtualbox-vm-in-windows-7-the-easy-way/comment-page-1/#comment-710</link>
		<dc:creator>diginc</dc:creator>
		<pubDate>Thu, 14 Jun 2012 16:42:07 +0000</pubDate>
		<guid isPermaLink="false">http://diginc.us/?p=235#comment-710</guid>
		<description><![CDATA[Good thought, I rarely restart the machine I set this up for since it&#039;s my home server / HTPC.  Let me know if you come up with something!]]></description>
		<content:encoded><![CDATA[<p>Good thought, I rarely restart the machine I set this up for since it&#8217;s my home server / HTPC.  Let me know if you come up with something!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Autostart a Virtualbox VM in Windows 7 the Easy Way by 5moufl</title>
		<link>http://diginc.us/microsoft/2011/autostart-a-virtualbox-vm-in-windows-7-the-easy-way/comment-page-1/#comment-709</link>
		<dc:creator>5moufl</dc:creator>
		<pubDate>Thu, 14 Jun 2012 13:49:19 +0000</pubDate>
		<guid isPermaLink="false">http://diginc.us/?p=235#comment-709</guid>
		<description><![CDATA[I was thinking about a way to save the state or to cleanly shutdown the guest when the Windows host shuts down (and I forget about the headless guest)]]></description>
		<content:encoded><![CDATA[<p>I was thinking about a way to save the state or to cleanly shutdown the guest when the Windows host shuts down (and I forget about the headless guest)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Autostart a Virtualbox VM in Windows 7 the Easy Way by diginc</title>
		<link>http://diginc.us/microsoft/2011/autostart-a-virtualbox-vm-in-windows-7-the-easy-way/comment-page-1/#comment-708</link>
		<dc:creator>diginc</dc:creator>
		<pubDate>Thu, 14 Jun 2012 13:40:13 +0000</pubDate>
		<guid isPermaLink="false">http://diginc.us/?p=235#comment-708</guid>
		<description><![CDATA[I typically run shutdown -h now from ssh. I admit I have had to uncleanly shutdown a couple times when ssh wasn&#039;t working. but there&#039;s always the RDP built into vbox.]]></description>
		<content:encoded><![CDATA[<p>I typically run shutdown -h now from ssh. I admit I have had to uncleanly shutdown a couple times when ssh wasn&#8217;t working. but there&#8217;s always the RDP built into vbox.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: diginc.us @ 2013-05-21 21:53:35 -->