<?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>C-Net Consulting</title>
	<atom:link href="http://c-netconsulting.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://c-netconsulting.com</link>
	<description>A tumblog... of sorts</description>
	<lastBuildDate>Sun, 07 Mar 2010 15:26:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Use Gmail IMAP in Microsoft Outlook 2007</title>
		<link>http://c-netconsulting.com/2010/03/07/use-gmail-imap-in-microsoft-outlook-2007/</link>
		<comments>http://c-netconsulting.com/2010/03/07/use-gmail-imap-in-microsoft-outlook-2007/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 15:26:56 +0000</pubDate>
		<dc:creator>Curtis</dc:creator>
				<category><![CDATA[email]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[micrsoft office]]></category>
		<category><![CDATA[out look 2007]]></category>
		<category><![CDATA[outlook 2007]]></category>

		<guid isPermaLink="false">http://c-netconsulting.com/?p=398</guid>
		<description><![CDATA[Perfunctory because the wife asks me over and over. Got it from the How-To-Geek.
Enable IMAP in Gmail Settings
Open your Settings panel in Gmail, and then click on the “Forwarding  and POP/IMAP” tab.

Now click the Enable IMAP radio button, and click Save Changes.

Add Account to Outlook
Use the Tools menu you to open the Account Settings [...]]]></description>
		<wfw:commentRss>http://c-netconsulting.com/2010/03/07/use-gmail-imap-in-microsoft-outlook-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7: Sticky notes disappeared</title>
		<link>http://c-netconsulting.com/2010/02/28/windows-7-sticky-notes-disappeared/</link>
		<comments>http://c-netconsulting.com/2010/02/28/windows-7-sticky-notes-disappeared/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 16:10:15 +0000</pubDate>
		<dc:creator>Curtis</dc:creator>
				<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[disappeared]]></category>
		<category><![CDATA[Sticky notes]]></category>

		<guid isPermaLink="false">http://c-netconsulting.com/?p=391</guid>
		<description><![CDATA[My Answer: Find the Program and add a shortcut to your desktop/taskbar/start menu
1. open the C:\Windows\System32 folder in Explorer.
2. Find the StickNot.exe file.
3. Right click on the file and add to taskbar/start menu
Another Answer: Perform an SFC scan and to replace the missing Sticky Notes file
 
1. Click Start, click All Programs, click Accessories, right-click [...]]]></description>
		<wfw:commentRss>http://c-netconsulting.com/2010/02/28/windows-7-sticky-notes-disappeared/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build a list of installed softwares on a Windows machine</title>
		<link>http://c-netconsulting.com/2010/02/18/build-a-list-of-installed-softwares-on-a-windows-machine/</link>
		<comments>http://c-netconsulting.com/2010/02/18/build-a-list-of-installed-softwares-on-a-windows-machine/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 10:09:03 +0000</pubDate>
		<dc:creator>Curtis</dc:creator>
				<category><![CDATA[it guy]]></category>

		<guid isPermaLink="false">http://c-netconsulting.com/?p=381</guid>
		<description><![CDATA[write a windows .bat script with following commands and run it. A file named &#8216;software_list.txt&#8216; will be created with list of installed software in it.
echo List of softwares &#62; software_list.txt
echo ================= &#62;&#62;software_list.txt
reg export HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall temp1.txt
find &#8220;DisplayName&#8221; temp1.txt&#124; find /V &#8220;ParentDisplayName&#8221; &#62; temp2.txt
for /f &#8220;tokens=2,3 delims==&#8221; %%a in (temp2.txt) do (echo %%a &#62;&#62; software_list.txt)
del temp1.txt temp2.txt
Click [...]]]></description>
		<wfw:commentRss>http://c-netconsulting.com/2010/02/18/build-a-list-of-installed-softwares-on-a-windows-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WMIC to build a list of installed programs</title>
		<link>http://c-netconsulting.com/2010/02/17/wmic-to-build-a-list-of-installed-programs/</link>
		<comments>http://c-netconsulting.com/2010/02/17/wmic-to-build-a-list-of-installed-programs/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 10:17:35 +0000</pubDate>
		<dc:creator>Curtis</dc:creator>
				<category><![CDATA[hack]]></category>
		<category><![CDATA[Management Instrumentation Command-line]]></category>
		<category><![CDATA[WMIC]]></category>

		<guid isPermaLink="false">http://c-netconsulting.com/?p=385</guid>
		<description><![CDATA[Use the Management Instrumentation Command-line. Windows comes with a command line version of the Management Instrumentation (WMIC). To get the list of all installed programs in a text file, simply enter the following command in a prompt:
wmic product &#62; c:\product.txt
This prints a serious list that can be opened as a CSV file. Makes sure to [...]]]></description>
		<wfw:commentRss>http://c-netconsulting.com/2010/02/17/wmic-to-build-a-list-of-installed-programs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DNS DHCP on WHS install problem</title>
		<link>http://c-netconsulting.com/2010/02/14/dns-dhcp-on-whs-install-problem/</link>
		<comments>http://c-netconsulting.com/2010/02/14/dns-dhcp-on-whs-install-problem/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 11:43:32 +0000</pubDate>
		<dc:creator>Curtis</dc:creator>
				<category><![CDATA[it guy]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[whs]]></category>
		<category><![CDATA[wins]]></category>

		<guid isPermaLink="false">http://c-netconsulting.com/?p=376</guid>
		<description><![CDATA[ORIGINAL POST
Installing anything on WHS from the server desktop is unsupported and not recommended.  My recommendation is to let your router handle DNS/DHCP requests.
Everything you need is on the installation disk. The disk will mount as drive (X:). You&#8217;ll need to manually find each driver, but it&#8217;s all there
]]></description>
		<wfw:commentRss>http://c-netconsulting.com/2010/02/14/dns-dhcp-on-whs-install-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up DNS/WINS on WHS [windows home server]</title>
		<link>http://c-netconsulting.com/2010/02/13/setting-up-dnswins-on-whs-windows-home-server/</link>
		<comments>http://c-netconsulting.com/2010/02/13/setting-up-dnswins-on-whs-windows-home-server/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 11:51:26 +0000</pubDate>
		<dc:creator>Curtis</dc:creator>
				<category><![CDATA[it guy]]></category>

		<guid isPermaLink="false">http://c-netconsulting.com/?p=379</guid>
		<description><![CDATA[adapted from here.
Windows Home Server is Windows Server 2003 at its core. Most of the really cool things 2k3 can do is against the EULA. If you need Domains or load balacing, buy 2K3. But I didn&#8217;t see the harm in the small hack. If you are not comfortable with configuring Windows components, using Remote [...]]]></description>
		<wfw:commentRss>http://c-netconsulting.com/2010/02/13/setting-up-dnswins-on-whs-windows-home-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Ping to Troubleshoot Network Problem</title>
		<link>http://c-netconsulting.com/2010/02/09/using-ping-to-troubleshoot-network-problem/</link>
		<comments>http://c-netconsulting.com/2010/02/09/using-ping-to-troubleshoot-network-problem/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 16:14:56 +0000</pubDate>
		<dc:creator>Curtis</dc:creator>
				<category><![CDATA[it guy]]></category>
		<category><![CDATA[Network Problem]]></category>
		<category><![CDATA[Ping]]></category>
		<category><![CDATA[Troubleshoot]]></category>

		<guid isPermaLink="false">http://c-netconsulting.com/?p=372</guid>
		<description><![CDATA[ORIGINAL ARTICLE
Sometimes if your network connection is down and you can use ping to troubleshoot network problem and then fix it.
Ping is a program used to check whether a host is up and active in network. It’s pretty simple and usually used to troubleshoot network problem. Here is typical home network design, and the technique [...]]]></description>
		<wfw:commentRss>http://c-netconsulting.com/2010/02/09/using-ping-to-troubleshoot-network-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How can I disable the &#8220;Set as Background&#8221; option?</title>
		<link>http://c-netconsulting.com/2010/02/05/how-can-i-disable-the-set-as-background-option/</link>
		<comments>http://c-netconsulting.com/2010/02/05/how-can-i-disable-the-set-as-background-option/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 12:00:25 +0000</pubDate>
		<dc:creator>Curtis</dc:creator>
				<category><![CDATA[it guy]]></category>

		<guid isPermaLink="false">http://c-netconsulting.com/?p=369</guid>
		<description><![CDATA[OPTION 1 &#8211; 
Select  the Prevent Changing Wallpaper Option in Group Policy – this affects the Display properties dialog.
OPTION 2

choose Start, Run, and type gpedit.msc to run the Group Policy editor
Navigate to Local Computer Policy, User Configuration, Administrative Templates, Desktop, and click Active Desktop.
Double-click Active Desktop Wallpaper and, on the Setting tab, click Enabled, type [...]]]></description>
		<wfw:commentRss>http://c-netconsulting.com/2010/02/05/how-can-i-disable-the-set-as-background-option/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HPLJ Error: Unable to store job at printer</title>
		<link>http://c-netconsulting.com/2010/02/04/hplj-error-unable-to-store-job-at-printer/</link>
		<comments>http://c-netconsulting.com/2010/02/04/hplj-error-unable-to-store-job-at-printer/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 12:00:43 +0000</pubDate>
		<dc:creator>Curtis</dc:creator>
				<category><![CDATA[it guy]]></category>
		<category><![CDATA[hp laser jet]]></category>
		<category><![CDATA[hplj]]></category>
		<category><![CDATA[mopier]]></category>
		<category><![CDATA[mopier mode]]></category>
		<category><![CDATA[printer]]></category>
		<category><![CDATA[quick hacks]]></category>

		<guid isPermaLink="false">http://c-netconsulting.com/?p=367</guid>
		<description><![CDATA[Later HP LaserJet printers have a &#8220;Mopier mode&#8221; which provides better print performance on multiple copies. However, if you have &#8220;Mopier mode&#8221; enabled and no EIO hard disk installed, you&#8217;ll get the above message.


Right click on the printer

select &#8220;Properties&#8221;.

Find the &#8220;Device Settings&#8221; tab.

Disable &#8220;Mopier mode&#8221;

No worried, the unit will still print multiple collated copies with [...]]]></description>
		<wfw:commentRss>http://c-netconsulting.com/2010/02/04/hplj-error-unable-to-store-job-at-printer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AKO Email on your Blackberry</title>
		<link>http://c-netconsulting.com/2010/02/03/ako-email-on-your-blackberry/</link>
		<comments>http://c-netconsulting.com/2010/02/03/ako-email-on-your-blackberry/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 05:28:14 +0000</pubDate>
		<dc:creator>Curtis</dc:creator>
				<category><![CDATA[it guy]]></category>
		<category><![CDATA[ako]]></category>
		<category><![CDATA[blackberry]]></category>
		<category><![CDATA[IMAP]]></category>

		<guid isPermaLink="false">http://c-netconsulting.com/?p=365</guid>
		<description><![CDATA[Email server: imap.us.army.mil
Email server type: POP/IMAP
Port:  995
Use SSL: Yes
Once you&#8217;ve entered your email server, username and password, your phone should autosense the other information it needs. Send yourself a test email to your AKO. Give your phone about 20 minutes.
]]></description>
		<wfw:commentRss>http://c-netconsulting.com/2010/02/03/ako-email-on-your-blackberry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
