<?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>TechiBee</title>
	<atom:link href="http://techibee.com/feed" rel="self" type="application/rss+xml" />
	<link>http://techibee.com</link>
	<description>All about Active Directory, Exchange, Windows 7/XP, PowerShell, VBScripts, and more for SysAdmins</description>
	<lastBuildDate>Thu, 29 Jul 2010 13:30:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Powershell function to Check disk free space on remote computers</title>
		<link>http://techibee.com/powershell/powershell-function-to-check-disk-free-space-on-remote-computers/666</link>
		<comments>http://techibee.com/powershell/powershell-function-to-check-disk-free-space-on-remote-computers/666#comments</comments>
		<pubDate>Thu, 29 Jul 2010 13:30:05 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[check disk free space using powershell]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=666</guid>
		<description><![CDATA[Description: This function takes the computer name as argument and displays the disk free/total size information. One advantage with this function is, no need to search for admin windows when you want to run it. It prompts for admin credentials and connects to remote computer using them. Usage: PS C:\temp&#62; Check-Diskspace -computer remotepc cmdlet Get-Credential [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Description:</span></strong></p>
<p>This function takes the computer name as argument and displays the disk free/total size information. One advantage with this function is, no need to search for admin windows when you want to run it. It prompts for admin credentials and connects to remote computer using them.</p>
<p><strong><span style="text-decoration: underline;">Usage:</span></strong></p>
<p>PS C:\temp&gt; Check-Diskspace -computer remotepc<br />
cmdlet Get-Credential at command pipeline position 1<br />
Supply values for the following parameters:<br />
Credential<br />
Drive Name :  C:</p>
<p>Total Space :  232.83 GB</p>
<p>Free Space :  0.94 GB</p>
<p>PS C:\temp&gt;</p>
<p><strong><span style="text-decoration: underline;">Code:</span></strong></p>
<p>function Check-Diskspace {</p>
<p>param (</p>
<p>[parameter(Mandatory = $true)]</p>
<p>[string]$computer</p>
<p>)</p>
<p>$cred = <strong>Get-Credential</strong></p>
<p>$drives = <strong>gwmi</strong> <em>-class</em> Win32_LogicalDisk <em>-computer</em> $computer <em>-credential</em> $cred | <strong>where</strong> { $_.DriveType -eq 3 }</p>
<p>foreach ($drive in $drives) {</p>
<p>    <strong>write-host</strong> &#8220;Drive Name : &#8221; $drive.DeviceID</p>
<p>    <strong>write-host</strong> &#8220;Total Space : &#8220;($drive.size/1GB).ToString(&#8220;0.00&#8243;) &#8220;GB&#8221;</p>
<p>    <strong>write-host</strong> &#8220;Free Space : &#8221; ($drive.FreeSpace/1GB).ToString(&#8220;0.00&#8243;) &#8220;GB&#8221;</p>
<p>    <strong>write-host</strong> &#8220;&#8221;</p>
<p>}</p>
<p>$cred = $null</p>
<p>}</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/powershell/powershell-function-to-check-disk-free-space-on-remote-computers/666/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get computer uptime using Powershell</title>
		<link>http://techibee.com/powershell/get-computer-uptime-using-powershell/659</link>
		<comments>http://techibee.com/powershell/get-computer-uptime-using-powershell/659#comments</comments>
		<pubDate>Wed, 28 Jul 2010 18:13:10 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Uptime function in powershell]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=659</guid>
		<description><![CDATA[Simple Way to get local computer uptime&#8230;. PS C:\&#62; (gwmi win32_operatingSystem).lastbootuptime 20100728180723.375199+330 PS C:\&#62; Now, let&#8217;s query the remote computers uptime. PS C:\&#62; (gwmi win32_operatingSystem -computer remotePC).lastbootuptime 20100728180723.375199+330 PS C:\&#62; The above are oneliners, if you want to convert this into full fledged function, use the below code. This gives the uptime of computer you [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Simple Way to get local computer uptime&#8230;.</strong></p>
<p>PS C:\&gt; (gwmi win32_operatingSystem).lastbootuptime<br />
20100728180723.375199+330<br />
PS C:\&gt;</p>
<p><strong>Now, let&#8217;s query the remote computers uptime.</strong></p>
<p>PS C:\&gt; (gwmi win32_operatingSystem -computer remotePC).lastbootuptime<br />
20100728180723.375199+330<br />
PS C:\&gt;</p>
<p>The above are oneliners, if you want to convert this into full fledged function, use the below code. This gives the uptime of computer you have parsed.</p>
<p>C:\&gt;Get-PCuptime -computer remotePC</p>
<p>System(remotePC) is Uptime since :  14 days 20 hours 54 minutes 20 seconds</p>
<p>C:\&gt;</p>
<blockquote><p><strong>Code for function:</strong></p>
<p>function Get-PCUptime {</p>
<p>param($computer)</p>
<p>$lastboottime = (<strong>Get-WmiObject</strong> <em>-Class</em> Win32_OperatingSystem <em>-computername</em> $computer).LastBootUpTime</p>
<p>$sysuptime = (<strong>Get-Date</strong>) &#8211; [System.Management.ManagementDateTimeconverter]::ToDateTime($lastboottime)</p>
<p><strong>Write-Host</strong>&#8220;System($computer) is Uptime since : &#8221; $sysuptime.days &#8220;days&#8221; $sysuptime.hours <strong>`</strong></p>
<p>&#8220;hours&#8221; $sysuptime.minutes &#8220;minutes&#8221; $sysuptime.seconds &#8220;seconds&#8221;</p>
<p>}</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/powershell/get-computer-uptime-using-powershell/659/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Utility to change password in Services/Scheduled tasks on remote Servers</title>
		<link>http://techibee.com/general/utility-to-change-the-servicescheduled-task-password-on-remote-servers/652</link>
		<comments>http://techibee.com/general/utility-to-change-the-servicescheduled-task-password-on-remote-servers/652#comments</comments>
		<pubDate>Wed, 28 Jul 2010 17:22:25 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[automate changing password on network servers]]></category>
		<category><![CDATA[automate changing password on remote services or scheduled tasks]]></category>
		<category><![CDATA[password change tool for system administrators]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=652</guid>
		<description><![CDATA[Changing the password is one of the regular activities for a typical System Administrator. It is not an easy task unless you have required tools in your tool kit. If you have changed one of your domain admin password, you need to find the places(be it services or scheduled tasks) where you have saved it [...]]]></description>
			<content:encoded><![CDATA[<p>Changing the password is one of the regular activities for a typical System Administrator. It is not an easy task unless you have required tools in your tool kit. If you have changed one of your domain admin password, you need to find the places(be it services or scheduled tasks) where you have saved it and update password there. If you have 1000 servers, then you will endup updating/scanning remote server&#8217;s services/scheduled tasks one after another unless you have some home grown scripts to serve this purpose. </p>
<p>Well, I have some good news if you are still spending long hours to change the passwords. Today I came across a new utility called SSTUM (<strong>S</strong>ervice and <strong>S</strong>cheduled <strong>T</strong>ask <strong>U</strong>ser <strong>M</strong>anager) which helps you in changing the password in remote services or scheduled Tasks with less efforts.</p>
<p>A few things I notices about this tool are&#8230;</p>
<p>1) Easy to use and saves lot of time<br />
2) Input can be a computer list or you can make selection from active directory<br />
3) Has an option to restart service after changing the password &#8212; pretty useful<br />
4) Support exporting of results to some text file<br />
 5) Supports changing the username as well.</p>
<p><img class="aligncenter" src="http://martin77s.files.wordpress.com/2010/07/sstum_thumb.jpg?w=644&amp;h=392" alt="" width="644" height="392" /></p>
<p><strong>More details about this tool and download location are available at </strong><a href="http://martin77s.wordpress.com/2010/07/19/service-and-scheduled-task-user-manager/"><strong>http://martin77s.wordpress.com/2010/07/19/service-and-scheduled-task-user-manager/</strong></a></p>
<p>Hope this definitely helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/general/utility-to-change-the-servicescheduled-task-password-on-remote-servers/652/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2003 &#8211; Queue Directory Corrupt</title>
		<link>http://techibee.com/exchange-2007/exchange-2003-queue-directory-corrupt/631</link>
		<comments>http://techibee.com/exchange-2007/exchange-2003-queue-directory-corrupt/631#comments</comments>
		<pubDate>Sun, 25 Jul 2010 13:29:21 +0000</pubDate>
		<dc:creator>uma</dc:creator>
				<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[The Microsoft Exchange Information Store service terminated with service-specific error 0 (0×0)]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=631</guid>
		<description><![CDATA[For one of our client, we have received an alert stating that &#8220;The Microsoft Exchange Information Store service terminated with service-specific error 0 (0&#215;0)&#8221;. The error seems to simple and everyone would just suggest to start the service back. But the root cause was different. One of our colleague started working on the alert and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://techibee.com/wp-content/uploads/2010/07/Exchange.jpg"></a><a href="http://techibee.com/wp-content/uploads/2010/07/Exchange1.jpg"></a>For one of our client, we have received an alert stating that &#8220;The Microsoft Exchange Information Store service terminated with service-specific error 0 (0&#215;0)&#8221;.</p>
<p>The error seems to simple and everyone would just suggest to start the service back. But the root cause was different.</p>
<p>One of our colleague started working on the alert and here is the chronology of steps followed in resolving the issue. found that the Information Store service was in stopped state and started the service.  Started verifying queues , encoutered error stating that &#8220;Default SMTP Virtual Server is unavailable&#8221;. Verified and found that SMTP Service was in started mode.</p>
<p>Escalated call to me and I&#8217;ve started working on the issue.</p>
<p>Upon further analysis, found that the SMTP Virtual Instance was stopped in ESM (Exchange System Manager). Tried to start the instance, encountered error stating that &#8220;Queue Directory is corrupted , hence the instance could not be started&#8221;.</p>
<p>Error logged in Eventlog &amp; Error pop-up when accessed Queue Directory from explorer.</p>
<p><a href="http://techibee.com/wp-content/uploads/2010/07/exchange-queue-corrupt-event.png"><img class="aligncenter size-full wp-image-648" title="exchange-queue-corrupt-event" src="http://techibee.com/wp-content/uploads/2010/07/exchange-queue-corrupt-event.png" alt="" width="400" height="217" /></a></p>
<p><a href="http://techibee.com/wp-content/uploads/2010/07/queue-corrupt-message.png"><img class="aligncenter size-full wp-image-649" title="queue-corrupt-message" src="http://techibee.com/wp-content/uploads/2010/07/queue-corrupt-message.png" alt="" width="387" height="122" /></a><a href="http://techibee.com/wp-content/uploads/2010/07/exchange-queue-corrupt-event.png"></a></p>
<p><a href="http://techibee.com/wp-content/uploads/2010/07/Exchange1.jpg"></a></p>
<p>Executed following Steps to resolve issue:</p>
<p>1. Uninstalled existing Antivirus (AVG)</p>
<p>2. Executed chkdsk on volume in which the exchange database is stored. Found disk errors.</p>
<p>3. Executed <strong><em>chkdsk /f</em></strong> on the volume and restarted the server</p>
<p>4. Created new Queue Directory and pointed the path from ESM to the new folder.</p>
<p>5. Started SMTP Virtual Instance &amp; Information Store Services.</p>
<p>Mails started flowing fine.</p>
<p><a href="http://techibee.com/wp-content/uploads/2010/07/Exchange.jpg"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/exchange-2007/exchange-2003-queue-directory-corrupt/631/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problems in recoverying emails &#8220;Recover Deleted Items&#8221; option in Outlook &#8212; Fixed</title>
		<link>http://techibee.com/outlook/case-of-problems-in-recoverying-emails-recover-deleted-items-option-in-outlook-fixed/625</link>
		<comments>http://techibee.com/outlook/case-of-problems-in-recoverying-emails-recover-deleted-items-option-in-outlook-fixed/625#comments</comments>
		<pubDate>Fri, 23 Jul 2010 16:13:21 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Mapi session exceeded the maximum of 500 objects of type objxxx]]></category>
		<category><![CDATA[Outlook was unable to recover some or all of the items in this folder. Make sure you have the required permissions to recover items in this folder and try again]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=625</guid>
		<description><![CDATA[Outlook was unable to recover some or all of the items in this folder. Make sure you have the required permissions to recover items in this folder and try again. If the problem persists, contact your administrator I came across this error while I(or my users) trying to restore bulk emails in outlook using &#8220;Recover [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Outlook was unable to recover some or all of the items in this folder. Make sure you have the required permissions to recover items in this folder and try again. If the problem persists, contact your administrator</p></blockquote>
<p>I came across this error while I(or my users) trying to restore bulk emails in outlook using &#8220;Recover Deleted Items&#8221; option. Single or little more emails restoration works fine but this issue is coming only when I attempt bulk restoration.</p>
<p>When this happened for the user, I am clue less what was happening. I went to event viewer on the server where user mailbox is hosted and observed below error when the user is attempting the restoration.</p>
<p>Event Type:     Error<br />
Event Source:   MSExchangeIS<br />
Event Category: General<br />
Event ID:       9646<br />
Date:           7/19/2010<br />
Time:           3:45:47 PM<br />
User:           N/A<br />
Computer:       MYEXCHANGE<br />
Description:<br />
Mapi session &#8220;/o=ORG/ou=SITE/cn=Recipients/cn=myuser&#8221; exceeded the maximum of 500 objects of type &#8220;objtFolder&#8221;.</p>
<p>After a little bit of googling I found an article (<a href="http://support.microsoft.com/kb/830829/en-us">http://support.microsoft.com/kb/830829/en-us</a>) which is talking about similar issue and increasing the limits on Object types that you see in event viewer should fix the issue. I tried increasing the <strong>ObjFolder</strong> limit to 1000(note: 500 is the default; if you don&#8217;t find this key, it is safe to create one as per KB) on my exchange server but still it didn&#8217;t work and was saying exceeded the limit of 1000 this time. At this point I was not sure what was the optimum value to which I should increase this limit to make the restoration happen. As I didn&#8217;t find answer to this question in google, I polled one of friend who is with MS and knows more about exchange. He said there are no limits defined as such and it&#8217;s a trial and error method we should try. I bumped it to 10,000 this time and restoration worked. Along with this informaiton, my friend passed me a note as well. The more limit you put the more the load on your exchange server. So, be cautious while increasing the limits and I prefer to do it during off hours so that load will be less on the server and your users will be away anyways and that also gives you ample time to troubleshoot any unforeseen issues.</p>
<p>Additional note: While trying this you might see events about exceeding the limits of other object types described in aforementioned KB. You should create necessary registry keys for them as well to make your restoration suceessfull. <strong>Don&#8217;t forget to revert your settings once you are done with restoration; otherwise it will impact your server performance</strong>. Generally this will come into effect after store restart. Otherwise you can wait for 15-30 mins to make store pick these changes without restarting the IS.</p>
<p>Hope this information helps you.</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/outlook/case-of-problems-in-recoverying-emails-recover-deleted-items-option-in-outlook-fixed/625/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unable to Access administrative shares(c$) on remote computers using local administrator account  &#8212; fixed</title>
		<link>http://techibee.com/windows-7/unable-to-access-administrative-sharesc-on-remote-computers-using-local-administrator-account-fixed/623</link>
		<comments>http://techibee.com/windows-7/unable-to-access-administrative-sharesc-on-remote-computers-using-local-administrator-account-fixed/623#comments</comments>
		<pubDate>Wed, 21 Jul 2010 15:17:49 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[problem in accessing c$ in windows 7]]></category>
		<category><![CDATA[unable to access remote shares in windows 2008 R2]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=623</guid>
		<description><![CDATA[I started my day with some exciting stuff. Since the time I started working on Windows 7 computers, I always failed to access remote computer&#8217;s(windows 7) administrative shares(for example: c$) using computer&#8217;s local admin account(this used to work in windows XP as the local admin name and password are same across all systems). I didn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I started my day with some exciting stuff. Since the time I started working on Windows 7 computers, I always failed to access remote computer&#8217;s(windows 7) administrative shares(for example: c$) using computer&#8217;s local admin account(this used to work in windows XP as the local admin name and password are same across all systems). I didn&#8217;t pay much attention to it as I got domain admin privileges which anyways working. But these days with the increase in my testing efforts on windows 7 computers, the need to access remote shares with local administrator got increased. I don&#8217;t want to put domain admin every time as it is a high level account and moreover I need to put in the credentials every time I access a new computer which is waste of efforts.</p>
<p>Well, I got this problem resolved by little registry tweak. Steps follows&#8230;.</p>
<p><strong>Fix:</strong></p>
<ol>
<li>Go to Start -&gt; RUN</li>
<li>Type: REGEDIT</li>
<li>Navigate to &#8220;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System&#8221;</li>
<li>Create a new DWORD key with name &#8220;LocalAccountTokenFilterPolicy&#8221; and value &#8220;1&#8243;</li>
<li>Restart your computer.</li>
</ol>
<p>This solved the problem and I am able to access the shares of the computers where I made above change.</p>
<p>Thanks to <a href="http://social.technet.microsoft.com/Forums/en-US/w7itprogeneral/thread/e2aaf455-a4e3-4561-b498-ab4e3c75015e">TechNet Forums</a> for directing me to the solution and special thanks to <a href="http://www.jimmah.com/vista/content.aspx?id=6">Jammah.com</a> for providing this tip.</p>
<p><strong>Additional Notes:</strong></p>
<p>Well, the registry key fixed the problem but I am curious about the reasons behind this design. I did some research on this topic and understood that, it is a &#8220;Security Measure&#8221; for UAC(User Access Contorl) enable systems. The whole purpose of enabling UAC is to make administrators work with non-elevated environment to defend the attacks. As part of UAC implementation, the ability for local administrators to elevate their rights from remote computers is disabled by default and can be enabled on optional basis using aforementioned procedure.</p>
<p>More details can be grabbed from:   <a href="http://support.microsoft.com/kb/951016">http://support.microsoft.com/kb/951016</a></p>
<p>Hope this information helps you.</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/windows-7/unable-to-access-administrative-sharesc-on-remote-computers-using-local-administrator-account-fixed/623/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Management Pot-Pourri &#8212;  A lesson for Every Salaried Employee</title>
		<link>http://techibee.com/general/management-pot-pourri-a-lesson-for-every-salaried-employee/618</link>
		<comments>http://techibee.com/general/management-pot-pourri-a-lesson-for-every-salaried-employee/618#comments</comments>
		<pubDate>Mon, 19 Jul 2010 16:37:21 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=618</guid>
		<description><![CDATA[[For a change today I am posting some non-technical stuff] Today I received this short story as a forward from my friend. Thought of posting it here. Here goes the story&#8230;. A shopkeeper watching over his shop is really surprised when he sees a dog coming inside the shop, He shoos him away. But later, [...]]]></description>
			<content:encoded><![CDATA[<p>[For a change today I am posting some non-technical stuff]</p>
<p>Today I received this short story as a forward from my friend. Thought of posting it here.</p>
<p>Here goes the story&#8230;.</p>
<p>A shopkeeper watching over his shop is really surprised when he sees a dog coming inside the shop, He shoos him away. But later, the dog is back inside again. So he goes over to the dog and notices that it has a note in its mouth. He takes the note and it reads “Can I have 12 soaps and a shampoo bottle, please. The money is with the dog.” The shopkeeper looks inside the dogs mouth and to his surprise there is a 100 rupees note in his mouth. So he takes the money and puts the soap, shampoo and change in a bag, and then places it in the dogs mouth.</p>
<p>The shopkeeper is so impressed, and since it is the closing time, he decides to follow the dog. The dog is walking down the street, when it comes to the zebra crossing; he waits till the signal turns green. He walks across the road till the bus stop. He waits on the stop and looks up the timetable for the bus. The shopkeeper is totally out of his mind as the dog gets into the bus and sits on a vacant seat. The shopkeeper followed the dog. The dog waits for the conductor to come to his seat. He gives the change to the conductor and shows him the neck belt to keep the ticket. The shopkeeper is almost fainting at this sight and so are the other people in the bus.</p>
<p>The dog then moves to the front exit of the door and waits for the bus stop to arrive, looking outside. As soon as the stop is in sight he wags his tail to inform the driver to stop. Then not even waiting for the bus stop to arrive the dog jumps out and runs to the house nearby. It opens an big iron gate and rushes towards the door. As it approaches the door, he changes his mind and walks towards the garden. The dog walks up to the window and beats his head several times on the window. It then walks back to the door and waits. The shopkeeper maintaining his senses walks up to the door and watched a big guy open the door.</p>
<p>The guy starts beating, kicking and abusing the dog. The shopkeeper is surprised and runs to stop the guy. the shopkeeper questions the guy “What in the heaven are you doing? The dog is a genius he could be famous in life.”</p>
<p>The guy responds “You call this clever? This is the 3rd time in this week that the dog has forgotten the door keys.”</p>
<p><strong>The moral of the story:</strong> <em>You may continue to exceed onlooker’s expectations… But will always fall short of the bosses expectation…</em></p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/general/management-pot-pourri-a-lesson-for-every-salaried-employee/618/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Enable Windows Firewall Logging in Windows 7 and Windows 2008 R2</title>
		<link>http://techibee.com/windows-7/enable-windows-firewall-logging-in-windows-7-and-windows-2008-r2/606</link>
		<comments>http://techibee.com/windows-7/enable-windows-firewall-logging-in-windows-7-and-windows-2008-r2/606#comments</comments>
		<pubDate>Fri, 16 Jul 2010 16:46:00 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[enable windows 7 firewall logging in windows 2008 R2]]></category>
		<category><![CDATA[enable windows firewall logging on windows 7]]></category>
		<category><![CDATA[troubleshooting windows firewall issues]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=606</guid>
		<description><![CDATA[Windows Firewall is one of the components which is enhanced greatly from windows XP to windows 7. In windows 7 it acts as two way firewall(Inbound/Outbound) with many advanced security features. This is also called as &#8220;Windows Firewall with Advanced security&#8221; in Window s7. The more features, the more details you need it for troubleshooting [...]]]></description>
			<content:encoded><![CDATA[<p>Windows Firewall is one of the components which is enhanced greatly from windows XP to windows 7. In windows 7 it acts as two way firewall(Inbound/Outbound) with many advanced security features. This is also called as &#8220;Windows Firewall with Advanced security&#8221; in Window s7.</p>
<p>The more features, the more details you need it for troubleshooting issues. Since this version of firewall acts as a bi-directional one, you need good amount logging to troubleshoot network connection level issues on windows 7 and windows 2008 R2.</p>
<p>This article talks about how to enable this logging, location of log files, and few more options avaiLalble in logging.</p>
<p><strong>Enabling Logging in Windows 7/Windows 2008 firewall.</strong></p>
<p>It is pretty easy. If you want to enable on a single computer, just go to <strong>Start</strong> -&gt; <strong>RUN -&gt; </strong>and type <strong> wf.exe</strong>. this opens up <strong>&#8220;Windows Firewall with Advanced Security&#8221;</strong>.</p>
<p>Now Right click on <strong>&#8220;Windows Firewall With Advanced Security on Local Computer&#8221;</strong> and go to properties which opens below page.</p>
<p><a href="http://techibee.com/wp-content/uploads/2010/07/Windows-firewall-properties1.png"><img class="aligncenter size-full wp-image-610" title="Windows-firewall-properties" src="http://techibee.com/wp-content/uploads/2010/07/Windows-firewall-properties1.png" alt="" width="415" height="462" /></a></p>
<p>Select <strong>&#8220;Customize&#8221;</strong> option under logging.</p>
<p>There browse for log files location where you want to place the logs and also choose the size limit for log files.</p>
<p><a href="http://techibee.com/wp-content/uploads/2010/07/Windows-firewall-logfilepathandsize.png"><img class="aligncenter size-full wp-image-611" title="Windows-firewall-logfilepathandsize" src="http://techibee.com/wp-content/uploads/2010/07/Windows-firewall-logfilepathandsize.png" alt="" width="413" height="309" /></a></p>
<p>Your Logging will not start until you select <strong>&#8220;YES&#8221;</strong> for one of the following options. <strong>1)</strong> Log dropped packets <strong>2)</strong> Log Successful connections.</p>
<p><a href="http://techibee.com/wp-content/uploads/2010/07/Windows-firewall-logging-options1.png"><img class="aligncenter size-full wp-image-612" title="Windows-firewall-logging-options" src="http://techibee.com/wp-content/uploads/2010/07/Windows-firewall-logging-options1.png" alt="" width="415" height="309" /></a></p>
<p>Click <strong>OK</strong> twice to complete your configuration.</p>
<p>This completes the configuration.</p>
<p>In my next post I will talk about how to analyze these logs files. Hope this information helps you.</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/windows-7/enable-windows-firewall-logging-in-windows-7-and-windows-2008-r2/606/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download Administrative Templates (ADMX) for Windows Server 2008 R2 and Windows 7</title>
		<link>http://techibee.com/windows-7/download-administrative-templates-admx-for-windows-server-2008-r2-and-windows-7/602</link>
		<comments>http://techibee.com/windows-7/download-administrative-templates-admx-for-windows-server-2008-r2-and-windows-7/602#comments</comments>
		<pubDate>Thu, 15 Jul 2010 19:22:14 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[GPO templates for windows 2008]]></category>
		<category><![CDATA[GPO templates for windows 7]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=602</guid>
		<description><![CDATA[Here is the download link. This MSI contains the all the ADMX and ADML files that are applicable to windows 7 and windows 2008 R2 computers. Download]]></description>
			<content:encoded><![CDATA[<p>Here is the download link. This MSI contains the all the ADMX and ADML files that are applicable to windows 7 and windows 2008 R2 computers.</p>
<p><strong><a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=16f69ffe-d51b-4e02-9d02-3e57f3ccd490&amp;utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed:+MicrosoftDownloadCenter+$Microsoft+Download+Center$&amp;lc=1033" target="_blank">Download</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/windows-7/download-administrative-templates-admx-for-windows-server-2008-r2-and-windows-7/602/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>God Mode in Windows 7 &#8212; Is it really doing godly things?</title>
		<link>http://techibee.com/windows-7/god-mode-in-windows-7-is-it-really-doing-godly-things/595</link>
		<comments>http://techibee.com/windows-7/god-mode-in-windows-7-is-it-really-doing-godly-things/595#comments</comments>
		<pubDate>Wed, 14 Jul 2010 17:49:29 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[god mode in windows 7]]></category>
		<category><![CDATA[what is god mode]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=595</guid>
		<description><![CDATA[Have you heard about &#8220;GOD Mode&#8221; in Windows 7? It sounds like a crazy and exciting stuff, right? Initially I felt the same when I came across this topic in one of technet support forums. After some reading I realized that is *not* exciting but a bit useful stuff. Basically, when you view control panel, [...]]]></description>
			<content:encoded><![CDATA[<p>Have you heard about &#8220;GOD Mode&#8221; in Windows 7? It sounds like a crazy and exciting stuff, right? Initially I felt the same when I came across this topic in one of technet support forums. After some reading I realized that is *not* exciting but a bit useful stuff. <a href="http://techibee.com/wp-content/uploads/2010/07/god-mode.png"><img class="alignright size-full wp-image-597" title="god-mode" src="http://techibee.com/wp-content/uploads/2010/07/god-mode.png" alt="" width="115" height="183" /></a></p>
<p>Basically, when you view control panel, you will get few initial options and selecting one will take you inside and show you few more options which are under it. Basically its like a categorization. But with this &#8220;God Mode&#8221;, you can view all items in control panel in a single page. Nothing more.</p>
<p>Let&#8217;s see how to configure this in Windows 7 computer.</p>
<ul>
<li>Create a folder and rename it to &#8220;God Mode.{ED7BA470-8E54-465E-825C-99712043E01C}&#8221;</li>
</ul>
<p>That&#8217;s sit. It converts the folder Icon to Control Panel Icon and clicking on which takes you to the single page view of all control panel items.</p>
<p style="text-align: center;">Well story not ended here. After trying above procedure, one question kept lingering in my mind &#8212; why it is called &#8220;God Mode&#8221; while it is not doing any &#8220;godly&#8221; things. I just replace the &#8220;God Mode&#8221; with my name &#8212; ha ha there is no change in functionality and it is still showing the things which it used to show when named as God mode. So there is no significance in that name and you can use any name you want but you should suffix it with the GUID which is related to control panel. Below is the sample screenshot which shows the view.<br />
<a href="http://techibee.com/wp-content/uploads/2010/07/god-mode-view.png"><img class="aligncenter size-large wp-image-598" title="god-mode-view" src="http://techibee.com/wp-content/uploads/2010/07/god-mode-view-1024x955.png" alt="" width="614" height="573" /></a></p>
<p>Hope this is somewhat informative for you guys&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/windows-7/god-mode-in-windows-7-is-it-really-doing-godly-things/595/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
