<?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>Netexceed blog by Jason Mohan&#187; Netexceed by Jason Mohan</title>
	<atom:link href="http://www.jasonmohan.com/category/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jasonmohan.com</link>
	<description>I am an IT professional who loves to stay on the leading edge of technology, and tries to tackle most commonly faced issues by computer users, and administrators.</description>
	<lastBuildDate>Mon, 19 Jul 2010 20:18:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Terminal server exceeded maximum connections</title>
		<link>http://www.jasonmohan.com/windows/terminal-server-exceed-maximum-connections/</link>
		<comments>http://www.jasonmohan.com/windows/terminal-server-exceed-maximum-connections/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 15:20:01 +0000</pubDate>
		<dc:creator>Jason Mohan</dc:creator>
				<category><![CDATA[windows]]></category>
		<category><![CDATA[Console]]></category>
		<category><![CDATA[RDC]]></category>
		<category><![CDATA[RDP]]></category>

		<guid isPermaLink="false">http://www.jasonmohan.com/?p=343</guid>
		<description><![CDATA[Don&#8217;t you hate that message when you need to logon to a server for a few minutes to change something. This usually means someone forgot to logoff their RDP connections (actually two connections must be opened and left in a idle state), and now you need to logon to the server. Now you can go [...]]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t you hate that message when you need to logon to a server for a few minutes to change something. This usually means someone forgot to logoff their RDP connections (actually two connections must be opened and left in a idle state), and now you need to logon to the server. Now you can go through terminal services manager, and log that user off, but sometimes you need to get on immediately and don&#8217;t have time. Use the below command in &#8220;computer name&#8221; field when you are connecting to a computer through RDC, and you will logon to the console immediately.</p>
<p><strong>Depending on which version of RDC you have one of the below commands should work:</strong></p>
<p>Computer Name: computername /admin</p>
<p>Computer Name: computername /console</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonmohan.com/windows/terminal-server-exceed-maximum-connections/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running commands on remote servers</title>
		<link>http://www.jasonmohan.com/windows/running-commands-on-remote-servers/</link>
		<comments>http://www.jasonmohan.com/windows/running-commands-on-remote-servers/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 19:08:27 +0000</pubDate>
		<dc:creator>Jason Mohan</dc:creator>
				<category><![CDATA[citrix]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://www.netexceed.com/?p=294</guid>
		<description><![CDATA[We have many citrix servers, but whenever I need to run one simple command I hate to go to all my citrix servers to run on. I wish I could just connect to one server, and access the command line for all the other server. Well you can, as I soon learned with psexec. It&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>We have many citrix servers, but whenever I need to run one simple command I hate to go to all my citrix servers to run on. I wish I could just connect to one server, and access the command line for all the other server. Well you can, as I soon learned with <a href="http://www.microsoft.com/technet/sysinternals/utilities/psexec.mspx">psexec</a>. It&#8217;s a Microsoft tool (formerly sysinternals), and you can download it <a href="http://www.microsoft.com/technet/sysinternals/utilities/psexec.mspx">here</a>.  Below is how you use it.</p>
<p>psexec \\RemoteComputer cmd.exe</p>
<p>Now your at the command line of the remote computer. This requires the admin$ to be on (which it usually is).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonmohan.com/windows/running-commands-on-remote-servers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Repairing file associations</title>
		<link>http://www.jasonmohan.com/windows/repairing-file-associations/</link>
		<comments>http://www.jasonmohan.com/windows/repairing-file-associations/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 19:02:39 +0000</pubDate>
		<dc:creator>Jason Mohan</dc:creator>
				<category><![CDATA[citrix]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.netexceed.com/?p=291</guid>
		<description><![CDATA[Have two versions of the same software that open the same file extension? Having trouble getting windows to open the right one. We had this same problem with Crystal reports (.rpt extension), but setting it in the file types options in windows did not work. However the bottom command worked in our citrix farm. Don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Have two versions of the same software that open the same file extension? Having trouble getting windows to open the right one. We had this same problem with Crystal reports (.rpt extension), but setting it in the file types options in windows did not work. However the bottom command worked in our citrix farm. Don&#8217;t put this is a batch file because the %1 doesn&#8217;t flow correctly.</p>
<p>change user /install<br />
assoc .rpt=rpt_auto_type<br />
ftype rpt_auto_type=&#8221;C:\Program Files\Business Objects\Crystal Reports Viewer 2008\CrystalReportsViewer.exe&#8221; &#8220;%1&#8243;<br />
change user /execute</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonmohan.com/windows/repairing-file-associations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Send your events log to sql</title>
		<link>http://www.jasonmohan.com/windows/send-your-events-log-to-sql/</link>
		<comments>http://www.jasonmohan.com/windows/send-your-events-log-to-sql/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 21:29:06 +0000</pubDate>
		<dc:creator>Jason Mohan</dc:creator>
				<category><![CDATA[other]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.netexceed.com/?p=279</guid>
		<description><![CDATA[Recently I had to turning on auditing on a file server. However turning on auditing was fine but what to do with the logs. The max recommended size for logs are 65Mb. However within 4 hours I was hitting that 65MB limit, and my oldest logs would start erasing. There are some tools out there [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I had to turning on auditing on a file server. However turning on auditing was fine but what to do with the logs. The max recommended size for logs are 65Mb. However within 4 hours I was hitting that 65MB limit, and my oldest logs would start erasing. There are some tools out there that can help you, but nothing beats building your own. While I was researching how to archive my logs in a format I want, I stumbled on <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=890cd06b-abf8-4c25-91b2-f8d975cf8c07&amp;displaylang=en">LogParser by Microsoft</a>. This tools allows you to save your logs to SQL, CSV, TXT and provides only the information you want. All I wanted archived was the date/time stamp, the user, and what they did. This tool helped me accomplish that. I highly recommend you try it, if you need to archive, or audit logs. <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=890cd06b-abf8-4c25-91b2-f8d975cf8c07&amp;displaylang=en">Click here</a> to download from Microsoft, or here <a class="s3-link" href="http://jasonmohan_web.s3.amazonaws.com/jasonmohan.com/downloads/LogParser.msi">LogParser.msi</a> to download from this site. Below is a code I used to extract the security log with the time stamp,  eventid, sid, and the message into a file.</p>
<p>LogParser &#8220;SELECT TimeGenerated, EventID, SID, Message INTO c:\temp\security.txt FROM \\SERVERNAME\security&#8221; -resolveSIDs:ON</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonmohan.com/windows/send-your-events-log-to-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Print Spooler nightmares?</title>
		<link>http://www.jasonmohan.com/windows/print-spooler-nightmares/</link>
		<comments>http://www.jasonmohan.com/windows/print-spooler-nightmares/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 18:44:06 +0000</pubDate>
		<dc:creator>Jason Mohan</dc:creator>
				<category><![CDATA[windows]]></category>
		<category><![CDATA[print spooler]]></category>
		<category><![CDATA[spoolsv.exe]]></category>

		<guid isPermaLink="false">http://www.netexceed.com/?p=271</guid>
		<description><![CDATA[Got a print spooler that won&#8217;t start, or crashes everytime you start it. Well here&#8217;s a last resort fix that should bring it back up. However this will remove all printer drivers, print monitors, and printers off of the machine. If you are able to access the registry on the machine you can at least [...]]]></description>
			<content:encoded><![CDATA[<p>Got a print spooler that won&#8217;t start, or crashes everytime you start it. Well here&#8217;s a last resort fix that should bring it back up. <span style="text-decoration: underline;">However this will remove all printer drivers, print monitors, and printers off of the machine.</span> If you are able to access the registry on the machine you can at least write down the name, share name, ip, and printer driver used for each of your printers (see below for those instructions).  This instructions are for Windows Server 2003.</p>
<p><strong>Write down your current printers, drivers, and share names (if you can access the registry)</strong></p>
<p>1. Navigate to HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Print\Printers</p>
<p>2. There you will see a listing of all the printers loaded on that machine.</p>
<p>3. Click on one of each of them, and you will see the NAME, PORT, and SHARE NAME of that printer.</p>
<p>4. You will need to write them down for each printer.</p>
<p><strong>Fixing and Cleaning the Spooler with CLEANSPL.exe</strong></p>
<p>1. Download the Windows Server Resource Kit at <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9d467a69-57ff-4ae7-96ee-b18c4790cffd&amp;DisplayLang=en">http://www.microsoft.com/downloads/details.aspx?FamilyID=9d467a69-57ff-4ae7-96ee-b18c4790cffd&amp;DisplayLang=en</a></p>
<p>2. Now run the cleanspl.exe tool that came with resource kit.</p>
<p>3. Remove everything <span style="text-decoration: underline;">except</span> these two, Standard TCP/IP Port, and BJL Language Monitor.</p>
<p>4. The tool will tell you to reboot your machine, reboot it.</p>
<p>5. After the reboot the spooler should be running once again, now comes the hard part of having to reinstall the drivers, and printers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonmohan.com/windows/print-spooler-nightmares/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Domain not defaulting on windows logon</title>
		<link>http://www.jasonmohan.com/windows/domain-not-defaulting-on-windows-logon/</link>
		<comments>http://www.jasonmohan.com/windows/domain-not-defaulting-on-windows-logon/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 14:39:55 +0000</pubDate>
		<dc:creator>Jason Mohan</dc:creator>
				<category><![CDATA[windows]]></category>
		<category><![CDATA[citrix]]></category>
		<category><![CDATA[default domain]]></category>
		<category><![CDATA[domain name]]></category>
		<category><![CDATA[microsoft windows]]></category>
		<category><![CDATA[open regedit]]></category>
		<category><![CDATA[terminal services]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://netexceed.com/?p=9</guid>
		<description><![CDATA[

All of a sudden the server name would be the default to log into instead of the domain name. This was frustrating our users, who were used to logging in just with their username and password, they never worried about the log on to box. So I found this fix after some research.
1. Open regedit
2. [...]]]></description>
			<content:encoded><![CDATA[<div class="post-content">
<div class="snap_preview">
<p>All of a sudden the server name would be the default to log into instead of the domain name. This was frustrating our users, who were used to logging in just with their username and password, they never worried about the log on to box. So I found this fix after some research.</p>
<p>1. Open regedit</p>
<p>2. Navigate to My Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon</p>
<p>Change the key DefaultDomainName to your default domain, and that’s it. Try logging in now.</p></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonmohan.com/windows/domain-not-defaulting-on-windows-logon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
