<?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"
	>

<channel>
	<title>Netexceed &#187; How to pst a exchange 2007 mailbox</title>
	<atom:link href="http://netexceed.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.netexceed.com</link>
	<description></description>
	<pubDate>Thu, 23 Oct 2008 18:42:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>How to pst a exchange 2007 mailbox</title>
		<link>http://www.netexceed.com/exchange/how-to-pst-a-exchange-2007-mailbox/</link>
		<comments>http://www.netexceed.com/exchange/how-to-pst-a-exchange-2007-mailbox/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 16:14:22 +0000</pubDate>
		<dc:creator>Jason Mohan</dc:creator>
		
		<category><![CDATA[exchange]]></category>

		<category><![CDATA[mailbox]]></category>

		<category><![CDATA[mailbox to pst]]></category>

		<category><![CDATA[outlook]]></category>

		<category><![CDATA[pst]]></category>

		<category><![CDATA[pst exchange 2007 mailbox]]></category>

		<guid isPermaLink="false">http://netexceed.com/?p=195</guid>
		<description><![CDATA[In this article I&#8217;ll show you how to pst a exchange 2007 mailbox for backup purposes. First there are a couple of things you need to understand. PST mailboxes is very time consuming, but this is a great way for small organizations to get a brick level backup. I use symantec for my backups, but [...]]]></description>
			<content:encoded><![CDATA[<p>In this article I&#8217;ll show you how to pst a exchange 2007 mailbox for backup purposes. First there are a couple of things you need to understand. PST mailboxes is very time consuming, but this is a great way for small organizations to get a brick level backup. I use symantec for my backups, but I always feel like I need another level of protection for the &#8220;just in case&#8221; of scenario. You can also use the free windows backup utility already in windows also to do backups. For a secondary backup, I do a brick level pst backup and upload to my online backup provider at set intervals. Here&#8217;s what I did to get it to work. I used another machine for the backups, as I didn&#8217;t want to use additional processing power, and disk i/o on my exchange server.</p>
<p><strong>Prerequisites:</strong> Exchange 2007 SP1, Outlook 2003 SP2 (on the backup server), Exchange Management Console and Powershell (on the backup server)</p>
<p><span style="text-decoration: underline;"><strong>Steps to backing up mailboxes automatically to pst</strong></span></p>
<p>In the below scenario you don&#8217;t need to do anything to your exchange server, this is all done on a backup server (that&#8217;s the way I decided to do it, but to each his own).</p>
<p>1. Load Exchange management console on your backup server.</p>
<p>2. Login as administrator (or a backup administrator account if you have one) onto the backup server.</p>
<p>3. Now make sure the administrator has access to <span style="text-decoration: underline;">all</span> the mailboxes you need to backup. If not go to exchange management console &gt; recipient configuration &gt; mailbox &gt; choose the user. Then click on manage full access permission and make sure the administrator (or backup administrator account is added). Now you may be able to change permissions to a certain level to backup without giving full access, but in this article I just gave the admin account full access to the mailbox.</p>
<p>4. Make sure Outlook 2003 SP2 is loaded on the backup server (this process requires it).</p>
<p>5. Open up exchange powershell, and type in the follow command (for the italics replace it with your organization or server information).</p>
<p><span style="color: #ff0000;">Get-Mailbox -Database &#8220;<em>server name</em>\<em>first storage group</em>\<em>mailbox database</em>&#8221; | Export-Mailbox -PSTFolderPath <em>d:</em>\<em>pst_backup</em>\</span></p>
<p><span style="color: #800000;">d:\pst_backup was my backup path but you can change to whatever you like.</span></p>
<p>6. Run the command, and give it a test run (just choose one mailbox for now to pst, just to see if it works).</p>
<p><strong>Now to automate the whole thing.</strong></p>
<p>1. Once you were able to backup one mailbox (from the above command) copy that command somewhere you&#8217;ll need it later.</p>
<p>2. Now create two file, pstbackup.cmd, and pstbackup.ps1, and put them in your pst backup folder (doesn&#8217;t have to be there).</p>
<p>3. Edit the pstbackup.ps1 file and put the following (same as the earlier command except with the -confirm:$false).</p>
<p><span style="color: #ff0000;">Get-Mailbox -Database &#8220;<em>servername</em>\<em>first storage group</em>\<em>mailbox database</em>&#8221; | Export-Mailbox -PSTFolderPath <em>d:</em>\<em>pst_backup</em>\ -confirm:$false</span></p>
<p>4. Save it, and let&#8217;s edit the pstbackup.cmd file now. Put in the following command.</p>
<p><span style="color: #ff0000;">powershell -PSConsoleFile &#8220;<em>d:</em>\<em>Program Files</em>\<em>exchange</em>\<em>bin</em>\<em>exshell.psc1</em>&#8221; -command &#8220;<em>d</em>:\<em>pst_backup</em>\<em>pstbackup.ps1</em>&#8221; &gt; <em>d:</em>\<em>pst_backup</em>\<em>pstbackup-log.txt</em></span></p>
<p><span style="color: #800000;">Now your path for the exshell.psc1 may be different so search your server for the exact path of that file. </span></p>
<p><span style="color: #800000;">The pstbackup-log.txt file will generate a log (you can put it wherever you like).</span></p>
<p>5. Now run the pstbackup.cmd file, and it should starting psting the mailboxes (it only does 4 at a time).</p>
<p>6. Schedule the pstbackup.cmd in your scheduled tasks for your backup, and that&#8217;s it.</p>
<p>If you get errors in your log make sure that that the administrator or the logged in user of the backup server has full permissions to the mailbox.  I&#8217;ve also provided my files that I used in the download section of this website in case you need a reference.</p>
<p><a href="http://netexceed.com/download/">Download the exchange 2007 pstbackup files</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.netexceed.com/exchange/how-to-pst-a-exchange-2007-mailbox/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Connect to two exchange servers at the same time</title>
		<link>http://www.netexceed.com/other/connect-to-two-exchange-servers-at-the-same-time/</link>
		<comments>http://www.netexceed.com/other/connect-to-two-exchange-servers-at-the-same-time/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 13:40:43 +0000</pubDate>
		<dc:creator>Jason Mohan</dc:creator>
		
		<category><![CDATA[other]]></category>

		<category><![CDATA[exchange]]></category>

		<category><![CDATA[outlook]]></category>

		<guid isPermaLink="false">http://netexceed.com/?p=171</guid>
		<description><![CDATA[In this article I show you how to connect to two different exchange servers at the same time. We all know the trick create on profile for one exchange server you need to connect to, and then create another profile for the other exchange server you need to connect to. However the problem is you [...]]]></description>
			<content:encoded><![CDATA[<p>In this article I show you how to connect to two different exchange servers at the same time. We all know the trick create on profile for one exchange server you need to connect to, and then create another profile for the other exchange server you need to connect to. However the problem is you can&#8217;t run the two profiles at the same time. Which is a big problem I had because I had a home exchange server that I connect too, and one at work. There is a solution. First let me explain the downside, this solution runs outlook twice (so twice the memory, and cpu used by outlook). If you&#8217;re ok with that continue below.</p>
<p>1. Create two profiles on your outlook (control panel &gt; mail &gt; show profiles). Label them easily like one work and the other home, or something like that.</p>
<p>2. Then download this lightweight program called <a href="http://www.hammerofgod.com/download/ExtraOutlook.zip">ExtraOutlook</a>.</p>
<p>3. Not unzip the program and place it somewhere.</p>
<p>4. Open a command line prompt and navigate to the directory where you placed extraoutlook.exe.</p>
<p>5. Type in the following command (the outlook path may be different on your computer, right click on your current outlook and find the current path).</p>
<p><em>extraoutlook.exe &#8220;c:\program files\Microsoft Office\Office11\Outlook.exe&#8221; /profile &#8220;Home&#8221;</em></p>
<p>6. The /profile &#8220;Home&#8221; the word in the quotes needs to be what you named your profile. Then type in the command again, but replace the profile &#8220;Home&#8221; with the next profile you created. Now you should have two seperate instances of outlook connecting to two exchange servers.</p>
<p>7. Here is an <a href="http://www.makeuseof.com/tag/open-two-different-instances-of-outlook-with-extraoutlook/">article</a> with more screenshots of the instructions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.netexceed.com/other/connect-to-two-exchange-servers-at-the-same-time/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Max users on a Blackberry Enterprise Server</title>
		<link>http://www.netexceed.com/blackberry/max-users-on-a-blackberry-enterprise-server/</link>
		<comments>http://www.netexceed.com/blackberry/max-users-on-a-blackberry-enterprise-server/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 18:54:22 +0000</pubDate>
		<dc:creator>Jason Mohan</dc:creator>
		
		<category><![CDATA[blackberry]]></category>

		<category><![CDATA[blackberry enterprise server]]></category>

		<guid isPermaLink="false">http://netexceed.com/?p=159</guid>
		<description><![CDATA[How many users can you put on a blackberry server? I wasn&#8217;t sure either, but below are the numbers I got from tech support at RIM. This is for a blackberry server connected to exchange. Let us know if you&#8217;re able to get more on with no issues.
BES with MSDE: 200-250 users
BES with SQL (sql [...]]]></description>
			<content:encoded><![CDATA[<p>How many users can you put on a blackberry server? I wasn&#8217;t sure either, but below are the numbers I got from tech support at RIM. This is for a blackberry server connected to exchange. Let us know if you&#8217;re able to get more on with no issues.</p>
<p>BES with MSDE: 200-250 users</p>
<p>BES with SQL (sql on a different machine): 2000-2500 users</p>
]]></content:encoded>
			<wfw:commentRss>http://www.netexceed.com/blackberry/max-users-on-a-blackberry-enterprise-server/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Moving BES from an MSDE database to SQL</title>
		<link>http://www.netexceed.com/blackberry/moving-bes-from-an-msde-database-to-sql/</link>
		<comments>http://www.netexceed.com/blackberry/moving-bes-from-an-msde-database-to-sql/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 18:51:46 +0000</pubDate>
		<dc:creator>Jason Mohan</dc:creator>
		
		<category><![CDATA[blackberry]]></category>

		<category><![CDATA[blackberry enterprise server]]></category>

		<guid isPermaLink="false">http://netexceed.com/?p=161</guid>
		<description><![CDATA[So how do you move from MSDE to SQL on you BES server? If you didn&#8217;t know already MSDE can only handle about 200-250 users with Blackberry Server Enterprise. Though officially from Microsoft on paper it says 500, but according to blackberry support personnel it&#8217;s only 200-250 before you start expercining delays with email from [...]]]></description>
			<content:encoded><![CDATA[<p>So how do you move from MSDE to SQL on you BES server? If you didn&#8217;t know already MSDE can only handle about 200-250 users with Blackberry Server Enterprise. Though officially from Microsoft on paper it says 500, but according to blackberry support personnel it&#8217;s only 200-250 before you start expercining delays with email from you blackberry server or handheld. So what&#8217;s the process and how complicated is it was my question? Now that I&#8217;ve done it, I can tell you it&#8217;s pretty easy. Here&#8217;s the link to the <a href="http://www.blackberry.com/btsc/search.do?cmd=displayKC&amp;docType=kc&amp;externalId=KB12247&amp;sliceId=SAL_Public&amp;dialogID=193164222&amp;stateId=1%200%20193162279">KB 12247</a> that fully describes the process, but below I&#8217;ll give you a brief overview.</p>
<p>1. Create the BES admin user on you sql server</p>
<p>2. Run the createdb.exe tool, so it creates the sql database (you&#8217;ll need this from the orginial installation cd of you BES server, or you can download it from the internet).</p>
<p>3. Give the BES admin user dbo and public rights to the datbase</p>
<p>4. Stop the services on the BES server</p>
<p>5. Backup the database using OSQL -E at the command line.</p>
<p>6. Restore the database to the SQL database that was created by the createdb tool.</p>
<p>7. Change the database on the Blackberry server configuration.</p>
<p>8. Restart all the services.</p>
<p>9. Change the database on the ODBC system dsn if you are 3.0 or 4.0.</p>
<p>10. Don&#8217;t forget to change the database in the Blackberry manager (or domain), by right clicking and choosing properties, then choose database, and make sure that information is correct.</p>
<p>That&#8217;s it, very simple and easy not as hard as I thought it was initially.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.netexceed.com/blackberry/moving-bes-from-an-msde-database-to-sql/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Printers missing in citrix?</title>
		<link>http://www.netexceed.com/citrix/printers-missing-in-citrix/</link>
		<comments>http://www.netexceed.com/citrix/printers-missing-in-citrix/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 18:57:06 +0000</pubDate>
		<dc:creator>Jason Mohan</dc:creator>
		
		<category><![CDATA[citrix]]></category>

		<category><![CDATA[driver problems]]></category>

		<category><![CDATA[print]]></category>

		<category><![CDATA[print drivers]]></category>

		<category><![CDATA[printer migrator]]></category>

		<category><![CDATA[spooler crashing]]></category>

		<category><![CDATA[terminal services]]></category>

		<guid isPermaLink="false">http://netexceed.com/?p=127</guid>
		<description><![CDATA[Are you getting calls from users saying their printers are missing in citrix? It&#8217;s probably a problem with a or a few print drivers interacting with citrix.  First off you can&#8217;t blame citrix as I was initially doing. It&#8217;s really not a citrix problem (I&#8217;ll prove that below showing that the print server has no [...]]]></description>
			<content:encoded><![CDATA[<p>Are you getting calls from users saying their printers are missing in citrix? It&#8217;s probably a problem with a or a few print drivers interacting with citrix.  First off you can&#8217;t blame citrix as I was initially doing. It&#8217;s really not a citrix problem (I&#8217;ll prove that below showing that the print server has no citrix software on it), it&#8217;s more related to the print driver and the ways it acts with terminal services. If your spooler keeps crashing, or you hear your users complaining saying all my printers are missing in citrix then it might be a print driver acting up crashing your spooler. Well the problem is how do you narrow down the printer driver causing the issue. We had this same problem across the board, with different users all the time until I talked to a citrix engineer. So I&#8217;ve described the steps from what I learned from him below, so you don&#8217;t need to waste a support call or your time. Hopefully this will help you out.</p>
<p>Problem: Printers are missing when user logs on to citrix.</p>
<p>1. Create a another print server for testing purposes. I used a virtual machine for testing. If you don&#8217;t want to do this skip to step 6 (but I highly recommend you do this as you&#8217;ll be crashing your spooler most likely on your live print server).</p>
<p>2. Go to the live print server and lets migrate all the printers and the drivers to test print server we created in the above step using the Microsoft Printer Migrator 3.1 tool, which you can download <a href="http://www.microsoft.com/windowsserver2003/techinfo/overview/printmigrator3.1.mspx">here</a>.</p>
<p>3. Now you&#8217;ll need to install the tool on the live print server and the test print server.</p>
<p>4. Backup the printer and drivers on the live print server to a file (it&#8217;ll create a .cab), then restore the printers and drivers on the test print server using the .cab file you created when you backed it up.</p>
<p>5. Now that&#8217;s all you need to do with the live print server, lets focus on the test print server.</p>
<p>6. Download the <a href="http://support.citrix.com/article/CTX109374">stress print tool</a> from citrix and read the article on their website explaining the instructions on how to use it <a href="http://support.citrix.com/article/CTX109374">http://support.citrix.com/article/CTX109374</a>.</p>
<p>7. Run the stress tool, and also run a perfmon (performance monitor) on the spooler thread and how it interacts with the processor.</p>
<p>8. Now test one driver (check off the driver and highlight it). You really don&#8217;t need to change any of the default options, except for the add events use 5, and 5 times to repeat the test (according to what a citrix engineer told me).</p>
<p>9. Now run the test, watch how the driver interacts with the spooler and processor, and also check for any warning in the stress tool.</p>
<p>If it crashes the spooler that&#8217;s a bad driver</p>
<p>Now what the citrix engineer told me was that if you get 0 errors, and the spooler didn&#8217;t crash that&#8217;s a good driver. If you get 1or 2 warning errors from the stress tool it&#8217;s ok, anything more than that you need to look into getting another driver for that printer.</p>
<p>10. Now restart the print spooler test and repeat.</p>
<p>Hope that helps some of you, remember you need to check print driver with the tool before installing drivers, saves a lot of headache later.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.netexceed.com/citrix/printers-missing-in-citrix/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Netexceed Tracker: Free Helpdesk Solution</title>
		<link>http://www.netexceed.com/featured-articles/netexceed-tracker-coming-soon/</link>
		<comments>http://www.netexceed.com/featured-articles/netexceed-tracker-coming-soon/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 19:17:19 +0000</pubDate>
		<dc:creator>Jason Mohan</dc:creator>
		
		<category><![CDATA[featured articles]]></category>

		<guid isPermaLink="false">http://netexceed.com/?p=58</guid>
		<description><![CDATA[Netexceed Tracker a project by Jason Mohan. Tracker has been redeveloped in php, and with mysql. Netexceed tracker will be a free open source helpdesk solution for personal or commercial use. There are no fees, no per user charges, or anything like that. This was a old college project of mine that I built in [...]]]></description>
			<content:encoded><![CDATA[<p>Netexceed Tracker a project by Jason Mohan. Tracker has been redeveloped in php, and with mysql. Netexceed tracker will be a free open source helpdesk solution for personal or commercial use. There are no fees, no per user charges, or anything like that. This was a old college project of mine that I built in ASP a few years back, however in my effort to learn PHP I decided to completely rebuild Netexceed Tracker from the ground up (I didn&#8217;t take one bit of code from the old version). This is a completely redesigned version, and I hope you like it. I will be updating it often, but feel free to modify the code for your environment. Keep an eye on this post for the download link which will be coming soon. I&#8217;m just working on a few modifications with an installation file and running a few bug checks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.netexceed.com/featured-articles/netexceed-tracker-coming-soon/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Show clients ip through citrix or terminal services</title>
		<link>http://www.netexceed.com/citrix/show-client-computer-ip-through-citrix/</link>
		<comments>http://www.netexceed.com/citrix/show-client-computer-ip-through-citrix/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 17:09:13 +0000</pubDate>
		<dc:creator>Jason Mohan</dc:creator>
		
		<category><![CDATA[citrix]]></category>

		<category><![CDATA[show ip]]></category>

		<category><![CDATA[terminal services]]></category>

		<guid isPermaLink="false">http://netexceed.com/?p=40</guid>
		<description><![CDATA[So how can you get the ip address of the client instead of the citrix server? There are times, actually many times that IT gets called when something is wrong with a persons computer. However navigating a user through finding their computer&#8217;s ip is a difficult process sometimes. Some companies have labels on the computer or [...]]]></description>
			<content:encoded><![CDATA[<p>So how can you get the ip address of the client instead of the citrix server? There are times, actually many times that IT gets called when something is wrong with a persons computer. However navigating a user through finding their computer&#8217;s ip is a difficult process sometimes. Some companies have labels on the computer or monitor, but if you are one of those companies who doesn&#8217;t, and have citrix then this program can help you out. Bascially what I did was wrote a batch file on top of an existing utility called ENVTSCIP published by <a href="http://www.ctrl-alt-del.com.au">Ctrl-Alt-Del IT Consultancy</a>. They have a lot of great utilities, check out their website. All you have to do is publish the showip.bat file located in this zip file. You may need to edit the .bat file to put in the correct path, but otherwise it&#8217;s a easy to use, and lightweight. Change the file as you wish. This works with Citrix and Terminal Services.</p>
<p>Download the file: <a class="s3-link" href="http://jasonmohan_web.s3.amazonaws.com/netexceed.com/downloads/showip/ENVTSCIP.zip">ENVTSCIP.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.netexceed.com/citrix/show-client-computer-ip-through-citrix/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Push VNC to client machines</title>
		<link>http://www.netexceed.com/software/push-vnc-install-to-client-machines/</link>
		<comments>http://www.netexceed.com/software/push-vnc-install-to-client-machines/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 16:15:24 +0000</pubDate>
		<dc:creator>Jason Mohan</dc:creator>
		
		<category><![CDATA[software]]></category>

		<category><![CDATA[push]]></category>

		<category><![CDATA[remote viewing]]></category>

		<category><![CDATA[vnc]]></category>

		<guid isPermaLink="false">http://netexceed.com/?p=11</guid>
		<description><![CDATA[Got hundreds of machines to deploy vnc onto, do it in one simple batch file? Most network admins use VNC for client machines. It&#8217;s easy to access, but not so secure, but inside a network it&#8217;s a okay option to use. However the problem is how to install VNC on machine on the network without [...]]]></description>
			<content:encoded><![CDATA[<p>Got hundreds of machines to deploy vnc onto, do it in one simple batch file? Most network admins use VNC for client machines. It&#8217;s easy to access, but not so secure, but inside a network it&#8217;s a okay option to use. However the problem is how to install VNC on machine on the network without touching the machine itself. I know you can do installation through AD and through different pieces of software, but I was looking for a simple script to use. The reason was so my IT co-workers can install on demand when needed. So I used to pieces of a script that was already created, and created my own installation batch file. One of the script was <a href="http://www.darkage.co.uk/">fastpush from Dark Age</a>, and the other was VNCencode by Mauro Castald. However I&#8217;ve packaged all of it for you to use, in one simple download below. Download the zip file below, then continue reading on how to edit and put your own vnc password.</p>
<p><a class="s3-link" href="http://jasonmohan_web.s3.amazonaws.com/netexceed.com/downloads/pushvnc/PushVnc.zip">Download PushVnc.zip</a></p>
<p><span style="text-decoration: underline;"><strong>Steps on how to setup Push VNC</strong></span></p>
<p>1. Download the file above and extract the file somewhere.</p>
<p>2. Go to command line navigate to the directory called VNCpassword. Run vncenc with the password you want. Like the screenshot below where I used the password &#8220;itsmypassword&#8221;</p>
<p><a href="http://jasonmohan_web.s3.amazonaws.com/wp-content/uploads/2008/08/new_password.jpg"  rel="lightbox[roadtrip]"><br />
</a></p>
<p><a rel="lightbox" href="http://jasonmohan_web.s3.amazonaws.com/netexceed.com/images/new_password.jpg"  rel="lightbox[roadtrip]"><img class="s3-img alignnone" style="border: 0pt none;" src="http://jasonmohan_web.s3.amazonaws.com/netexceed.com/images/new_password.jpg" border="0" alt="new_password.jpg" width="375" height="183" /></a></p>
<p>3. Now copy all the &#8220;Password = REG_BINARY&#8230;&#8230;.&#8221;, and paste it into the VNC4.ini file located in the common directory. Like the screenshot below.</p>
<p><a rel="lightbox" href="http://jasonmohan_web.s3.amazonaws.com/netexceed.com/images/edit_vnc_ini.jpg"  rel="lightbox[roadtrip]"><img class="s3-img" style="border: 0pt none;" src="http://jasonmohan_web.s3.amazonaws.com/netexceed.com/images/edit_vnc_ini.jpg" border="0" alt="edit_vnc_ini.jpg" width="461" height="318" /> </a></p>
<p>4. Now there is two places where you need to edit the path of where you are planning to put this Push VNC program at. In this example I&#8217;m placing it in my c:\temp folder. First we&#8217;ll edit the install.bat file, and change the path where I highlighted in the screenshot below. Second we&#8217;ll edit the fp82.cmd file, same thing change the path where I highlighted in the screenshot also.</p>
<p><em>* If you want to place it on the network you need to edit it to use &#8220;net use v: \\server\share&#8221;.  Then set the path accordingly. Since I&#8217;m sharing this program with my IT co-workers I used the net use.</em></p>
<p><a rel="lightbox" href="http://jasonmohan_web.s3.amazonaws.com/netexceed.com/images/change_path_installbat.jpg"  rel="lightbox[roadtrip]"><img class="s3-img" style="border: 0pt none;" src="http://jasonmohan_web.s3.amazonaws.com/netexceed.com/images/change_path_installbat.jpg" border="0" alt="change_path_installbat.jpg" width="461" height="318" /></a></p>
<p><a rel="lightbox" href="http://jasonmohan_web.s3.amazonaws.com/netexceed.com/images/change_path_fp82.jpg"  rel="lightbox[roadtrip]"><img class="s3-img" style="border: 0pt none;" src="http://jasonmohan_web.s3.amazonaws.com/netexceed.com/images/change_path_fp82.jpg" border="0" alt="change_path_fp82.jpg" width="461" height="318" /></a></p>
<p>5. Now that&#8217;s bascially all you have to do. Now run the install.bat program and you&#8217;ll see a screen like below. Type in the ip address of the computer you want to install VNC onto, and then watch it&#8217;s magic. Remember you must be logged in as a domain admin or have such privileges to the client computer to install. Feel free to change my name and put yours.</p>
<p><a rel="lightbox" href="http://jasonmohan_web.s3.amazonaws.com/netexceed.com/images/install_screen.jpg"  rel="lightbox[roadtrip]"><img class="s3-img" style="border: 0pt none;" src="http://jasonmohan_web.s3.amazonaws.com/netexceed.com/images/install_screen.jpg" border="0" alt="install_screen.jpg" width="401" height="203" /></a></p>
<p>Much credit goes to DarkAge. If you want to dig in more and set more options check out there <a href="http://www.darkage.co.uk/downloads/">website</a>.</p>
<p><a class="s3-link" href="http://jasonmohan_web.s3.amazonaws.com/netexceed.com/images/new_password.jpg"  rel="lightbox[roadtrip]"> </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.netexceed.com/software/push-vnc-install-to-client-machines/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Domain not defaulting on windows logon</title>
		<link>http://www.netexceed.com/windows/domain-not-defaulting-on-windows-logon/</link>
		<comments>http://www.netexceed.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.netexceed.com/windows/domain-not-defaulting-on-windows-logon/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Active Directory Roles</title>
		<link>http://www.netexceed.com/active-directory/active-directory-roles/</link>
		<comments>http://www.netexceed.com/active-directory/active-directory-roles/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 14:38:54 +0000</pubDate>
		<dc:creator>Jason Mohan</dc:creator>
		
		<category><![CDATA[active directory]]></category>

		<category><![CDATA[directory domain]]></category>

		<category><![CDATA[domain controller]]></category>

		<category><![CDATA[microsoft]]></category>

		<category><![CDATA[netdom]]></category>

		<category><![CDATA[roles]]></category>

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

Here’s the command to view what role or roles each domain controller in your active directory domain has.
netdom query fsmo
I’m not going to do a write up on how to change these roles, since Microsoft has an excellent article that talks about it already.
http://support.microsoft.com/kb/324801

]]></description>
			<content:encoded><![CDATA[<div class="post-content">
<div class="snap_preview">
<p>Here’s the command to view what role or roles each domain controller in your active directory domain has.</p>
<p><em>netdom query fsmo</em></p>
<p>I’m not going to do a write up on how to change these roles, since Microsoft has an excellent article that talks about it already.</p>
<p><a href="http://support.microsoft.com/kb/324801">http://support.microsoft.com/kb/324801</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.netexceed.com/active-directory/active-directory-roles/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
