<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>FusedIT</title>
	<atom:link href="http://fusedit.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://fusedit.wordpress.com</link>
	<description>In search of technology that is completely fused with whatever function it is supporting.</description>
	<lastBuildDate>Wed, 26 Mar 2008 01:15:01 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='fusedit.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/2a7571be6b999ab9e0292e55bf41e12a?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>FusedIT</title>
		<link>http://fusedit.wordpress.com</link>
	</image>
			<item>
		<title>Windows Server 2008 &#8211; Server Core Quick Start</title>
		<link>http://fusedit.wordpress.com/2008/03/26/windows-server-2008-server-core-quick-start/</link>
		<comments>http://fusedit.wordpress.com/2008/03/26/windows-server-2008-server-core-quick-start/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 01:08:19 +0000</pubDate>
		<dc:creator>leonardvolling</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Core]]></category>
		<category><![CDATA[Server 2008]]></category>

		<guid isPermaLink="false">http://fusedit.wordpress.com/2008/03/26/windows-server-2008-server-core-quick-start/</guid>
		<description><![CDATA[Here&#8217;s a quick list of the steps I use to get a Server 2008 Server Core install up and running with the Hyper-V role installed.

Set the administrator password 

at first login… or after with Ctrl-Alt-Del


List examples of administrative tasks that can be performed from the command line

Change to the system32 directory

cd \windows\system32
cscript scregedit.wsf /cli




Set the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fusedit.wordpress.com&blog=1053121&post=8&subd=fusedit&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here&#8217;s a quick list of the steps I use to get a Server 2008 Server Core install up and running with the Hyper-V role installed.</p>
<ul>
<li><b>Set the administrator password </b>
<ul>
<li>at first login… or after with Ctrl-Alt-Del</li>
</ul>
</li>
<li><b>List examples of administrative tasks that can be performed from the command line</b>
<ul>
<li>Change to the system32 directory
<ul>
<li>cd \windows\system32</li>
<li>cscript scregedit.wsf /cli</li>
</ul>
</li>
</ul>
</li>
<li><b>Set the Date, Time, and Time Zone</b>
<ul>
<li>control timedate.cpl</li>
</ul>
</li>
<li><b>Configure Networking</b>
<ul>
<li>To show current IP config
<ul>
<li>ipconfig /all</li>
</ul>
</li>
<li>To identify interface to configure
<ul>
<li>netsh interface ipv4 show interfaces</li>
</ul>
</li>
<li>Set the static IP address
<ul>
<li>netsh interface ipv4 set address name=&#8221;2&#8243; source=static address=x.x.x.x mask=255.255.255.0 gateway=x.x.x.x</li>
</ul>
</li>
<li>Set static DNS servers
<ul>
<li>netsh interface ipv4 add dnsserver name=&#8221;2&#8243; address=x.x.x.x index=1</li>
</ul>
</li>
<li>To check configuration
<ul>
<li>ipconfig /all</li>
</ul>
</li>
</ul>
</li>
<li><b>Changing the server name</b>
<ul>
<li>To verify name
<ul>
<li>hostname</li>
</ul>
</li>
<li>To Change the server name
<ul>
<li>netdom renamecomputer %computername% /NewName:ServerName</li>
<li>shutdown /r /t 0</li>
</ul>
</li>
<li>To verify name change
<ul>
<li>hostname</li>
</ul>
</li>
</ul>
</li>
<li><b>Join a Domain</b>
<ul>
<li>To join the domain
<ul>
<li>netdom join ServerName /domain:CONTOSO /userd:Administrator /passwordd:*</li>
</ul>
</li>
<li>To restart the server
<ul>
<li>shutdown /r /t 0</li>
</ul>
</li>
</ul>
</li>
<li><b>Activate the Server</b>
<ul>
<li>Change to the system32 directory
<ul>
<li>cd \windows\system32</li>
</ul>
</li>
<li>To display slmgr script help
<ul>
<li>cscript slmgr.vbs /? (or slmgr -h)</li>
</ul>
</li>
<li>To display current expiration
<ul>
<li>cscript slmgr.vbs -xpr</li>
</ul>
</li>
<li>To display additional information
<ul>
<li>cscript slmgr.vbs -dl</li>
</ul>
</li>
<li>To enter a MAK license key (if you do not have a KMS server)
<ul>
<li>cscript slmgr.vbs -ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</li>
</ul>
</li>
<li>To activate the server
<ul>
<li>cscript slmgr.vbs -ato</li>
</ul>
</li>
<li>To verify
<ul>
<li>cscript slmgr.vbs -xpr</li>
</ul>
</li>
<li>To verify
<ul>
<li>cscript slmgr.vbs -dli</li>
</ul>
</li>
</ul>
</li>
<li><b>Enable Automatic Updates</b>
<ul>
<li>To get help
<ul>
<li>cscript scregedit.wsf /?</li>
</ul>
</li>
<li>To check current setting
<ul>
<li>cscript scregedit.wsf /au /v</li>
</ul>
</li>
<li>To configure automatic updates to automatically download and install (this is the only option)
<ul>
<li>cscript scregedit.wsf /au 4</li>
</ul>
</li>
</ul>
</li>
<li><b>Enable Remote Desktop</b>
<ul>
<li>To enable
<ul>
<li>cscript scregedit.wsf /ar 0</li>
</ul>
</li>
<li>To disable
<ul>
<li>cscript scregedit.wsf /ar 1</li>
</ul>
</li>
</ul>
</li>
<li><b>Installing Roles</b>
<ul>
<li>To show rolls currently installed and currently not installed
<ul>
<li>oclist</li>
</ul>
</li>
<li>To install the DNS Server role (note that ocsetup is case sensitive)
<ul>
<li>Start /w ocsetup DNS-Server-Core-Role</li>
</ul>
</li>
<li>To confirm new role installed
<ul>
<li>oclist</li>
</ul>
</li>
</ul>
</li>
<li><b>Installing Hyper-V </b>Note: Ensure that you have hardware-assisted virtualization enabled prior to installation. If BIOS reconfiguration changes were made to enable hardware features, you must complete a full power-cycle before proceeding.
<ul>
<li>To enable Hyper-V role
<ul>
<li>Start /w ocsetup Microsoft-Hyper-V</li>
</ul>
</li>
</ul>
</li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/fusedit.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/fusedit.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fusedit.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fusedit.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fusedit.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fusedit.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fusedit.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fusedit.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fusedit.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fusedit.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fusedit.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fusedit.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fusedit.wordpress.com&blog=1053121&post=8&subd=fusedit&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fusedit.wordpress.com/2008/03/26/windows-server-2008-server-core-quick-start/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b91f875676b5389ce8fb9ce9ee1e363d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">leonardvolling</media:title>
		</media:content>
	</item>
		<item>
		<title>RSS Readers follow-up</title>
		<link>http://fusedit.wordpress.com/2008/03/25/rss-readers-follow-up/</link>
		<comments>http://fusedit.wordpress.com/2008/03/25/rss-readers-follow-up/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 18:23:49 +0000</pubDate>
		<dc:creator>leonardvolling</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://fusedit.wordpress.com/2008/03/25/rss-readers-follow-up/</guid>
		<description><![CDATA[My last post talked about RSS Readers and which one was the best fit for my needs. Well since then I have started using Google&#8217;s online RSS reader, Google Reader (www.google.com/reader). Since starting to use this tool, I have not been able to find anything else that matches it. I looked briefly at Newsgator, they [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fusedit.wordpress.com&blog=1053121&post=7&subd=fusedit&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>My last post talked about RSS Readers and which one was the best fit for my needs. Well since then I have started using Google&#8217;s online RSS reader, Google Reader (<a href="http://www.google.com/reader">www.google.com/reader</a>). Since starting to use this tool, I have not been able to find anything else that matches it. I looked briefly at Newsgator, they currently have a decent portfolio of RSS products including fat client reader called FeedDemon (PC), in addition to an online and a mobile offering. But they haven&#8217;t been able to make it just work and in my opinion there are some issues that make it not worth the switch.</p>
<p>In the end, Google Reader is my current RSS Reader of choice. Since it is online I can access it from any PC or from my mobile. It has a good feature set for sharing, starring, searching, etc&#8230; When using it from within IE on my PC I can use delicious and tumblr to easily post things I want to share / flag outside of Google Reader.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/fusedit.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/fusedit.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fusedit.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fusedit.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fusedit.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fusedit.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fusedit.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fusedit.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fusedit.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fusedit.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fusedit.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fusedit.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fusedit.wordpress.com&blog=1053121&post=7&subd=fusedit&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fusedit.wordpress.com/2008/03/25/rss-readers-follow-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b91f875676b5389ce8fb9ce9ee1e363d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">leonardvolling</media:title>
		</media:content>
	</item>
		<item>
		<title>The wide wide world of RSS</title>
		<link>http://fusedit.wordpress.com/2007/11/28/the-wide-wide-world-of-rss/</link>
		<comments>http://fusedit.wordpress.com/2007/11/28/the-wide-wide-world-of-rss/#comments</comments>
		<pubDate>Wed, 28 Nov 2007 15:19:58 +0000</pubDate>
		<dc:creator>leonardvolling</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://fusedit.wordpress.com/2007/11/28/the-wide-wide-world-of-rss/</guid>
		<description><![CDATA[I&#8217;ve been using RSS feeds for a while. I use them to track personal and work related news, which means of course I read RSS feeds while at work and when I&#8217;m at home. At this point and for some time now, it is an important part of my job. RSS is a tool that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fusedit.wordpress.com&blog=1053121&post=6&subd=fusedit&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve been using RSS feeds for a while. I use them to track personal and work related news, which means of course I read RSS feeds while at work and when I&#8217;m at home. At this point and for some time now, it is an important part of my job. RSS is a tool that helps keep me informed, exposes me to new technologies, and even helps me solve technical problems from time to time. </p>
<p>So, needless to say, RSS feeds are important to me. If they are important, then you could reason that I have put some time into finding the right tool (RSS reader) for browsing this information. This part however is not as easy as it sounds. </p>
<p>There are a number of options from online services like <a href="http://www.google.com/reader">Google Reader</a> and <a href="http://www.bloglines.com/">Bloglines</a> to client side applications like <a href="http://www.rssbandit.org/">RSS Bandit</a> and <a href="http://www.attensa.com/" target="_blank">Attensa</a>. I mention these particularly because they are a few that I have tried personally for an extended period of time and they certainly each have their strengths and weaknesses. RSS Bandit was probably the first product I used heavily, it was a good product and helped me navigate the mountain of feeds I read, but it was really just a local client, there was not an easy way to share with myself or others. </p>
<p>This leads to an interesting point, when I am reading an RSS feed my first priority is sharing with myself. I need to be able to revisit something in a specific context from any number of locations / devices. My second priority then is sharing things with my friends and colleagues, which could be just as challenging, but seems like it is typically a little easier.</p>
<p>So, I want to be able to share (flag for follow-up, tag with delicious, post to tumblr, blog, email) anything I might find interesting or relevant. </p>
<p>At the moment Attensa is the product that does this best for me. It can be used to add a &#8220;river of news&#8221; to Outlook or you can use their stand alone reader. I use the river of news in Outlook 2007, the feeds can be organized a number of different ways. It took a little effort to get things looking just the way I wanted, but as a whole the product makes reading RSS feeds a much better experience. The ability to tag with delicious and blog (with Windows Live writer even) are built right in, all I have to do is click a little icon next to the post title. Attensa really has put a lot of thought into the product and seems to be genuinely trying to give people and businesses the best tool to harness the power of RSS</p>
<p>Let me know what you think and what you use.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/fusedit.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/fusedit.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fusedit.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fusedit.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fusedit.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fusedit.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fusedit.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fusedit.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fusedit.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fusedit.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fusedit.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fusedit.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fusedit.wordpress.com&blog=1053121&post=6&subd=fusedit&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fusedit.wordpress.com/2007/11/28/the-wide-wide-world-of-rss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b91f875676b5389ce8fb9ce9ee1e363d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">leonardvolling</media:title>
		</media:content>
	</item>
		<item>
		<title>Welcome!</title>
		<link>http://fusedit.wordpress.com/2007/05/02/welcome/</link>
		<comments>http://fusedit.wordpress.com/2007/05/02/welcome/#comments</comments>
		<pubDate>Wed, 02 May 2007 21:36:07 +0000</pubDate>
		<dc:creator>leonardvolling</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://fusedit.wordpress.com/2007/05/02/welcome/</guid>
		<description><![CDATA[I&#8217;ve been meaning to start a blog for some time. My biggest concern is reproducing what is already out there. I know pesonally I experience a bit of blog overload, but thankfully RSS Bandit has a version compatible with Windows Vista.
The primary focus will be on topics surrounding Microsoft technologies. However my passion for technology in general could pull us in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fusedit.wordpress.com&blog=1053121&post=3&subd=fusedit&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve been meaning to start a blog for some time. My biggest concern is reproducing what is already out there. I know pesonally I experience a bit of blog overload, but thankfully RSS Bandit has a version compatible with Windows Vista.</p>
<p>The primary focus will be on topics surrounding Microsoft technologies. However my passion for technology in general could pull us in a different direction from time to time, but I will try to keep it interesting.</p>
<p>My main intention is to use this as a tool to spur conversation around technology. Since I spend most of my time thinking about, designing, deploying, and to a certain extent operating Microsoft technologies, I hope to be able to bring some value to the community. However, I do hope to be able to pull something out as well.</p>
<p> Check back for general musings, best practices, new findings, solutions, etc&#8230;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/fusedit.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/fusedit.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fusedit.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fusedit.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fusedit.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fusedit.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fusedit.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fusedit.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fusedit.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fusedit.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fusedit.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fusedit.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fusedit.wordpress.com&blog=1053121&post=3&subd=fusedit&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fusedit.wordpress.com/2007/05/02/welcome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b91f875676b5389ce8fb9ce9ee1e363d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">leonardvolling</media:title>
		</media:content>
	</item>
	</channel>
</rss>