<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3" -->
<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/"
	>

<channel>
	<title>MS Windows Articles, Reviews and Videos &#187; account</title>
	<link>http://windowspalace.com</link>
	<description>All about Windows. Drivers, reviews, tutorials and videos</description>
	<pubDate>Fri, 16 May 2008 18:20:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3</generator>
	<language>en</language>
			<item>
		<title>Create A Batch File To Open Multiple Programs At Once</title>
		<link>http://windowspalace.com/contributors/create-a-batch-file-to-open-multiple-programs-at-once.html</link>
		<comments>http://windowspalace.com/contributors/create-a-batch-file-to-open-multiple-programs-at-once.html#comments</comments>
		<pubDate>Fri, 09 May 2008 11:58:23 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
		
		<category><![CDATA[1340]]></category>

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

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

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

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

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

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

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

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

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

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

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

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

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

		<category><![CDATA[Internet Explorer]]></category>

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

		<category><![CDATA[Windows Vista]]></category>

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

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

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

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

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://www.pctipsbox.com/?p=1569</guid>
		<description><![CDATA[Ever have the need to open more than one program or application at the same time?
Say it&#8217;s the beginning of the month and time to pay those dreaded bills. You know you need Excel, Windows calculator and Firefox or Internet Explorer open. Instead of opening them up one by one, you can easily create a [...]]]></description>
			<content:encoded><![CDATA[<p>Ever have the need to open more than one program or <a href="http://www.pctipsbox.com/tag/application/" rel="tag" title="Posts tagged with application">application</a> at the same time?</p>
<p>Say it&#8217;s the beginning of the month and time to pay those dreaded bills. You know you need <a href="http://www.pctipsbox.com/tag/excel/" rel="tag" title="Posts tagged with excel">Excel</a>, <a href="http://www.pctipsbox.com/tag/windows/" rel="tag" title="Posts tagged with Windows">Windows</a> <a href="http://www.pctipsbox.com/tag/calculator/" rel="tag" title="Posts tagged with calculator">calculator</a> and <a href="http://www.pctipsbox.com/tag/firefox/" rel="tag" title="Posts tagged with Firefox">Firefox</a> or <a href="http://www.pctipsbox.com/tag/internet/" rel="tag" title="Posts tagged with Internet">Internet</a> Explorer open. Instead of opening them up one by one, you can easily create a batch file that will open all three programs at once.</p>
<p>And while your at it, why not have <a href="http://www.pctipsbox.com/tag/excel/" rel="tag" title="Posts tagged with excel">Excel</a> open the spreadsheet file you use for tracking your budget and the <a href="http://www.pctipsbox.com/tag/browser/" rel="tag" title="Posts tagged with Browser">browser</a> open to your Bank&#8217;s home page. Here&#8217;s how to do it…</p>
<p>First let&#8217;s take a look at a batch file I created that will just open <a href="http://www.pctipsbox.com/tag/excel/" rel="tag" title="Posts tagged with excel">Excel</a>, <a href="http://www.pctipsbox.com/tag/calculator/" rel="tag" title="Posts tagged with calculator">Calculator</a> and <a href="http://www.pctipsbox.com/tag/firefox/" rel="tag" title="Posts tagged with Firefox">Firefox</a>:</p>
<p>NOTE: Examples and file paths are from <a href="http://www.pctipsbox.com/tag/windows/" rel="tag" title="Posts tagged with Windows">Windows</a> Vista. XP paths will probably be different for some programs as well as for MS <a href="http://www.pctipsbox.com/tag/office/" rel="tag" title="Posts tagged with Office">Office</a> (<a href="http://www.pctipsbox.com/tag/office/" rel="tag" title="Posts tagged with Office">Office</a> 2007 is used in the example).</p>
<blockquote><p>start /d C:\<a href="http://www.pctipsbox.com/tag/windows/" rel="tag" title="Posts tagged with Windows">Windows</a>\<a href="http://www.pctipsbox.com/tag/system32/" rel="tag" title="Posts tagged with system32">System32</a>\calc.exe<br />
start /d &#8220;C:\<a href="http://www.pctipsbox.com/tag/program-files/" rel="tag" title="Posts tagged with Program Files">Program Files</a>\<a href="http://www.pctipsbox.com/tag/mozilla/" rel="tag" title="Posts tagged with Mozilla">Mozilla</a> <a href="http://www.pctipsbox.com/tag/firefox/" rel="tag" title="Posts tagged with Firefox">Firefox</a>&#8221; <a href="http://www.pctipsbox.com/tag/firefox/" rel="tag" title="Posts tagged with Firefox">firefox</a>.exe<br />
start /d &#8220;C:\<a href="http://www.pctipsbox.com/tag/program-files/" rel="tag" title="Posts tagged with Program Files">Program Files</a>\<a href="http://www.pctipsbox.com/tag/microsoft/" rel="tag" title="Posts tagged with Microsoft">Microsoft</a> <a href="http://www.pctipsbox.com/tag/office/" rel="tag" title="Posts tagged with Office">Office</a>\Office12&#8243; <a href="http://www.pctipsbox.com/tag/excel/" rel="tag" title="Posts tagged with excel">EXCEL</a>.EXE</p></blockquote>
<p><strong>Pretty simple</strong>.</p>
<p>The above <a href="http://www.pctipsbox.com/tag/command/" rel="tag" title="Posts tagged with command">command</a>, start tells <a href="http://www.pctipsbox.com/tag/windows/" rel="tag" title="Posts tagged with Windows">Windows</a> to open a separate window to run the specified program.</p>
<p>The /d switch tells start <a href="http://www.pctipsbox.com/tag/command/" rel="tag" title="Posts tagged with command">command</a> the path of the program. For starting <a href="http://www.pctipsbox.com/tag/excel/" rel="tag" title="Posts tagged with excel">Excel</a> and <a href="http://www.pctipsbox.com/tag/firefox/" rel="tag" title="Posts tagged with Firefox">Firefox</a>, notice that the paths are in quotes, which is needed when there is a space in the file path.</p>
<p>Now it&#8217;s great that all three programs open, but since it&#8217;s time to pay your bills, you need to have <a href="http://www.pctipsbox.com/tag/excel/" rel="tag" title="Posts tagged with excel">Excel</a> open that budget spreadsheet and <a href="http://www.pctipsbox.com/tag/firefox/" rel="tag" title="Posts tagged with Firefox">Firefox</a> open to your Bank home page so you can log on and access you checking <a href="http://www.pctipsbox.com/tag/account/" rel="tag" title="Posts tagged with account">account</a>.</p>
<p>Here&#8217;s how the commands look in the batch file to do this:</p>
<blockquote><p>start /d C:\<a href="http://www.pctipsbox.com/tag/windows/" rel="tag" title="Posts tagged with Windows">Windows</a>\<a href="http://www.pctipsbox.com/tag/system32/" rel="tag" title="Posts tagged with system32">System32</a>\ calc.exe<br />
start /d &#8220;C:\<a href="http://www.pctipsbox.com/tag/program-files/" rel="tag" title="Posts tagged with Program Files">Program Files</a>\<a href="http://www.pctipsbox.com/tag/mozilla/" rel="tag" title="Posts tagged with Mozilla">Mozilla</a> <a href="http://www.pctipsbox.com/tag/firefox/" rel="tag" title="Posts tagged with Firefox">Firefox</a>&#8221; <a href="http://www.pctipsbox.com/tag/firefox/" rel="tag" title="Posts tagged with Firefox">firefox</a>.exe https://www.bankofamerica.com<br />
start /d C:\<a href="http://www.pctipsbox.com/tag/finance/" rel="tag" title="Posts tagged with finance">finance</a>\spreadsheets budget.xls</p></blockquote>
<p>To open Bank Of America home page with <a href="http://www.pctipsbox.com/tag/firefox/" rel="tag" title="Posts tagged with Firefox">Firefox</a>, just add the URL to end of the <a href="http://www.pctipsbox.com/tag/command/" rel="tag" title="Posts tagged with command">command</a> as shown above using https://www.bankofamerica.com.</p>
<p>To open the <a href="http://www.pctipsbox.com/tag/excel/" rel="tag" title="Posts tagged with excel">Excel</a> spreadsheet, budget.xls you don&#8217;t need to first open <a href="http://www.pctipsbox.com/tag/excel/" rel="tag" title="Posts tagged with excel">Excel</a>. budget.xls can be opened directly using the start <a href="http://www.pctipsbox.com/tag/command/" rel="tag" title="Posts tagged with command">command</a>, as long as the extension or file type is associated to the program.</p>
<p>If you need <a href="http://www.pctipsbox.com/tag/firefox/" rel="tag" title="Posts tagged with Firefox">Firefox</a> to open more than one URL, say to <a href="http://www.pctipsbox.com/tag/google/" rel="tag" title="Posts tagged with google">Google</a>, just add the URL like this (make sure you use a space in between URL&#8217;s):</p>
<p>start /d &#8220;C:\<a href="http://www.pctipsbox.com/tag/program-files/" rel="tag" title="Posts tagged with Program Files">Program Files</a>\<a href="http://www.pctipsbox.com/tag/mozilla/" rel="tag" title="Posts tagged with Mozilla">Mozilla</a> <a href="http://www.pctipsbox.com/tag/firefox/" rel="tag" title="Posts tagged with Firefox">Firefox</a>&#8221; <a href="http://www.pctipsbox.com/tag/firefox/" rel="tag" title="Posts tagged with Firefox">firefox</a>.exe https://www.bankofamerica.com www.<a href="http://www.pctipsbox.com/tag/google/" rel="tag" title="Posts tagged with google">google</a>.com</p>
<p>Now you&#8217;re probably saying &#8220;that&#8217;s great, but how do I create a batch file?&#8221;.</p>
<p>That&#8217;s the easy part.</p>
<p>    * Just open up <a href="http://www.pctipsbox.com/tag/notepad/" rel="tag" title="Posts tagged with notepad">Notepad</a> or your favorite text editor.<br />
    * Copy the commands from above and modify them to use which ever program or <a href="http://www.pctipsbox.com/tag/office/" rel="tag" title="Posts tagged with Office">Office</a> files you want open. Make sure when you copy file and folder paths that have spaces, to use quotes.<br />
    * Then save the file with any name and a .bat extension (make sure it&#8217;s not saved using .txt as the file type extension)</p>

	<b>Tags:</b><a href="http://www.pctipsbox.com/tag/account/" title="account" rel="tag">account</a>, <a href="http://www.pctipsbox.com/tag/application/" title="application" rel="tag">application</a>, <a href="http://www.pctipsbox.com/tag/browser/" title="Browser" rel="tag">Browser</a>, <a href="http://www.pctipsbox.com/tag/calculator/" title="calculator" rel="tag">calculator</a>, <a href="http://www.pctipsbox.com/tag/command/" title="command" rel="tag">command</a>, <a href="http://www.pctipsbox.com/tag/excel/" title="excel" rel="tag">excel</a>, <a href="http://www.pctipsbox.com/tag/finance/" title="finance" rel="tag">finance</a>, <a href="http://www.pctipsbox.com/tag/firefox/" title="Firefox" rel="tag">Firefox</a>, <a href="http://www.pctipsbox.com/tag/google/" title="google" rel="tag">google</a>, <a href="http://www.pctipsbox.com/tag/internet/" title="Internet" rel="tag">Internet</a>, <a href="http://www.pctipsbox.com/tag/internet-explorer/" title="internet explorer" rel="tag">internet explorer</a>, <a href="http://www.pctipsbox.com/tag/microsoft/" title="Microsoft" rel="tag">Microsoft</a>, <a href="http://www.pctipsbox.com/tag/mozilla/" title="Mozilla" rel="tag">Mozilla</a>, <a href="http://www.pctipsbox.com/tag/notepad/" title="notepad" rel="tag">notepad</a>, <a href="http://www.pctipsbox.com/tag/office/" title="Office" rel="tag">Office</a>, <a href="http://www.pctipsbox.com/tag/program-files/" title="Program Files" rel="tag">Program Files</a>, <a href="http://www.pctipsbox.com/tag/system32/" title="system32" rel="tag">system32</a>, <a href="http://www.pctipsbox.com/tag/windows/" title="Windows" rel="tag">Windows</a>, <a href="http://www.pctipsbox.com/tag/windows-vista/" title="windows vista" rel="tag">windows vista</a><br />

	<h4>Related posts</h4>
	<ul>
	<li><a href="http://www.pctipsbox.com/uninstalling-internet-explorer-8/" title="Uninstalling Internet Explorer 8 (March 11, 2008)">Uninstalling Internet Explorer 8</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/speed-up-windows-vista-network-performance-with-tcp-windows-tuning/" title="Speed Up Windows Vista Network Performance with TCP Windows Tuning (February 23, 2008)">Speed Up Windows Vista Network Performance with TCP Windows Tuning</a> (2)</li>
	<li><a href="http://www.pctipsbox.com/save-space-when-using-two-drives-or-dual-booting/" title="Save space when using two drives or dual-booting (February 28, 2008)">Save space when using two drives or dual-booting</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/how-to-move-web-applications-to-your-desktop/" title="How to Move Web Applications to Your Desktop (May 5, 2008)">How to Move Web Applications to Your Desktop</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/5-quick-firefox-tips/" title="5 Quick FireFox Tips (May 2, 2008)">5 Quick FireFox Tips</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/windows-xp-and-vista-the-benchmark-rundown/" title="The Benchmark Rundown (March 4, 2008)">Windows XP and Vista: The Benchmark Rundown</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/windows-vista-sp1-security-vulnerabilities/" title="Windows Vista SP1 Security Vulnerabilities (April 5, 2008)">Windows Vista SP1 Security Vulnerabilities</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/windows-powershell-v2-ctp2/" title="Windows PowerShell V2 CTP2 (May 6, 2008)">Windows PowerShell V2 CTP2</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/what-is-google-updater-and-why-its-running/" title="what is google updater and why its running? (March 9, 2008)">what is google updater and why its running?</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/vista-taking-a-nibble-out-of-apple-in-os-wars/" title="Vista taking a nibble out of Apple in OS wars? (April 6, 2007)">Vista taking a nibble out of Apple in OS wars?</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/use-path-wildcards-to-save-time-in-explorer-and-command-prompt/" title="Use path wildcards to save time in explorer and command prompt (March 21, 2007)">Use path wildcards to save time in explorer and command prompt</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/unlock-the-supersecret-administrator-account-for-vista/" title="Unlock the supersecret Administrator account for vista (July 14, 2007)">Unlock the supersecret Administrator account for vista</a> (6)</li>
	<li><a href="http://www.pctipsbox.com/uninstalling-vista-product-keys-activates-the-platforms-kill-switch/" title="Uninstalling Vista Product Keys Activates the Platform&#8217;s Kill Switch (February 21, 2008)">Uninstalling Vista Product Keys Activates the Platform&#8217;s Kill Switch</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/switch-off-use-the-web-annoyance/" title="Switch Off Use the Web Annoyance (April 24, 2008)">Switch Off Use the Web Annoyance</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/recover-from-reduced-functionality-mode/" title="Recover from Reduced Functionality Mode (April 5, 2007)">Recover from Reduced Functionality Mode</a> (2)</li>
	<li><a href="http://www.pctipsbox.com/ie8-beta-1-is-live/" title="IE8 Beta 1 Is Live (February 27, 2008)">IE8 Beta 1 Is Live</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/how-to-open-multiple-home-pages-at-startup-in-mozilla-firefox/" title="How to open multiple home pages at startup in Mozilla firefox (February 16, 2008)">How to open multiple home pages at startup in Mozilla firefox</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/fix-windows-and-internet-explorer-missing-files/" title="Fix Windows and Internet Explorer Missing Files (February 20, 2008)">Fix Windows and Internet Explorer Missing Files</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/bypass-megaupload-country-limitblock/" title="Bypass MegaUpload Country Limit/Block (February 21, 2008)">Bypass MegaUpload Country Limit/Block</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/windows-vista-an-faq-for-nonprofits/" title="An FAQ for Nonprofits (February 10, 2007)">Windows Vista: An FAQ for Nonprofits</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/windows-vista-sp1-rtm-optimized-desktop/" title="Windows Vista SP1 RTM Optimized Desktop (May 1, 2008)">Windows Vista SP1 RTM Optimized Desktop</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/windows-vista-application-verifier/" title="Windows Vista Application Verifier (September 3, 2007)">Windows Vista Application Verifier</a> (2)</li>
	<li><a href="http://www.pctipsbox.com/windows-product-keys-available-online/" title="Windows Product Keys Available Online (April 19, 2007)">Windows Product Keys Available Online</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/windows-powershell-10/" title="Windows PowerShell 1.0 (February 14, 2007)">Windows PowerShell 1.0</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/windows-live-vp-to-resign/" title="Windows Live VP To Resign (March 5, 2007)">Windows Live VP To Resign</a> (0)</li>
</ul>

<div>
<a href="http://feeds.feedburner.com/~f/PcTipsBox?a=nMx8xH"><img src="http://feeds.feedburner.com/~f/PcTipsBox?i=nMx8xH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/PcTipsBox?a=kuHnGh"><img src="http://feeds.feedburner.com/~f/PcTipsBox?i=kuHnGh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/PcTipsBox?a=DNtpHh"><img src="http://feeds.feedburner.com/~f/PcTipsBox?i=DNtpHh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/PcTipsBox?a=19qVaH"><img src="http://feeds.feedburner.com/~f/PcTipsBox?i=19qVaH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/PcTipsBox?a=MAvlMH"><img src="http://feeds.feedburner.com/~f/PcTipsBox?i=MAvlMH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/PcTipsBox?a=3MxKOH"><img src="http://feeds.feedburner.com/~f/PcTipsBox?i=3MxKOH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/PcTipsBox?a=GLP2Ph"><img src="http://feeds.feedburner.com/~f/PcTipsBox?i=GLP2Ph" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://windowspalace.com/contributors/create-a-batch-file-to-open-multiple-programs-at-once.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to turn off User Account Control (UAC) in Windows Vista</title>
		<link>http://windowspalace.com/contributors/how-to-turn-off-user-account-control-uac-in-windows-vista.html</link>
		<comments>http://windowspalace.com/contributors/how-to-turn-off-user-account-control-uac-in-windows-vista.html#comments</comments>
		<pubDate>Mon, 07 Apr 2008 08:17:08 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
		
		<category><![CDATA[Contributors]]></category>

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

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

		<category><![CDATA[Windows Vista]]></category>

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

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

		<category><![CDATA[control panel]]></category>

		<category><![CDATA[how to]]></category>

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

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

		<category><![CDATA[user accounts]]></category>

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

		<guid isPermaLink="false">http://www.pctipsbox.com/?p=1518</guid>
		<description><![CDATA[


User Account Control can be annoying, but it’s an extra layer of protection that protects your computer from viruses, hackers, and poorly written software.
UAC lets you know when someone or something is trying to change a setting or install/uninstall software on your computer. It also removes administrative rights from software making it harmless to critical [...]]]></description>
			<content:encoded><![CDATA[<p>


</p><p>User <a href="http://www.pctipsbox.com/tag/account/" rel="tag" title="Posts tagged with account">Account</a> Control can be annoying, but it’s an extra layer of protection that protects your <a href="http://www.pctipsbox.com/tag/computer/" rel="tag" title="Posts tagged with Computer">computer</a> from viruses, hackers, and poorly written <a href="http://www.pctipsbox.com/tag/software/" rel="tag" title="Posts tagged with Software">software</a>.</p>
<p><a href="http://www.pctipsbox.com/tag/uac/" rel="tag" title="Posts tagged with uac">UAC</a> lets you know when someone or something is trying to change a setting or <a href="http://www.pctipsbox.com/tag/install/" rel="tag" title="Posts tagged with install">install</a>/<a href="http://www.pctipsbox.com/tag/uninstall/" rel="tag" title="Posts tagged with Uninstall">uninstall</a> <a href="http://www.pctipsbox.com/tag/software/" rel="tag" title="Posts tagged with Software">software</a> on your <a href="http://www.pctipsbox.com/tag/computer/" rel="tag" title="Posts tagged with Computer">computer</a>. It also removes administrative rights from <a href="http://www.pctipsbox.com/tag/software/" rel="tag" title="Posts tagged with Software">software</a> making it harmless to critical <a href="http://www.pctipsbox.com/tag/system/" rel="tag" title="Posts tagged with system">system</a> files and services.</p>
<p>Before <a href="http://www.pctipsbox.com/tag/uac/" rel="tag" title="Posts tagged with uac">UAC</a>, settings could be changed and <a href="http://www.pctipsbox.com/tag/software/" rel="tag" title="Posts tagged with Software">software</a> could be installed/uninstalled without you knowing. <a href="http://www.pctipsbox.com/tag/software/" rel="tag" title="Posts tagged with Software">Software</a> running under an <a href="http://www.pctipsbox.com/tag/account/" rel="tag" title="Posts tagged with account">account</a> with admin rights also had full admin rights which gave it full access to critical <a href="http://www.pctipsbox.com/tag/system/" rel="tag" title="Posts tagged with system">system</a> files and services.</p>
<p>You must be logged in as a user with admin rights to turn <a href="http://www.pctipsbox.com/tag/uac/" rel="tag" title="Posts tagged with uac">UAC</a> off.</p>
<p>   1. Click the Start orb and select <a href="http://www.pctipsbox.com/tag/control-panel/" rel="tag" title="Posts tagged with control panel">Control Panel</a>.<br />
   2. Click Classic View on the left side of the <a href="http://www.pctipsbox.com/tag/control-panel/" rel="tag" title="Posts tagged with control panel">Control Panel</a>.<br />
   3. Open <a href="http://www.pctipsbox.com/tag/user-accounts/" rel="tag" title="Posts tagged with user accounts">User Accounts</a>.<br />
   4. Click Turn User <a href="http://www.pctipsbox.com/tag/account/" rel="tag" title="Posts tagged with account">Account</a> Control on or off.<br />
   5. Uncheck Use User <a href="http://www.pctipsbox.com/tag/account/" rel="tag" title="Posts tagged with account">Account</a> Control and then click OK.<br />
   6. <a href="http://www.pctipsbox.com/tag/restart/" rel="tag" title="Posts tagged with restart">Restart</a> your <a href="http://www.pctipsbox.com/tag/computer/" rel="tag" title="Posts tagged with Computer">computer</a>.</p>
<p></p>
	<b>Tags:</b><a href="http://www.pctipsbox.com/tag/account/" title="account" rel="tag">account</a>, <a href="http://www.pctipsbox.com/tag/computer/" title="Computer" rel="tag">Computer</a>, <a href="http://www.pctipsbox.com/tag/control-panel/" title="control panel" rel="tag">control panel</a>, <a href="http://www.pctipsbox.com/tag/critical-system-files/" title="critical system files" rel="tag">critical system files</a>, <a href="http://www.pctipsbox.com/tag/how-to/" title="how to" rel="tag">how to</a>, <a href="http://www.pctipsbox.com/tag/restart/" title="restart" rel="tag">restart</a>, <a href="http://www.pctipsbox.com/tag/system/" title="system" rel="tag">system</a>, <a href="http://www.pctipsbox.com/tag/uac/" title="uac" rel="tag">uac</a>, <a href="http://www.pctipsbox.com/tag/uninstall/" title="Uninstall" rel="tag">Uninstall</a>, <a href="http://www.pctipsbox.com/tag/user-accounts/" title="user accounts" rel="tag">user accounts</a>, <a href="http://www.pctipsbox.com/tag/windows/" title="Windows" rel="tag">Windows</a>, <a href="http://www.pctipsbox.com/tag/windows-vista/" title="windows vista" rel="tag">windows vista</a><br />

	<h4>Related posts</h4>
	<ul>
	<li><a href="http://www.pctipsbox.com/uninstalling-vista-product-keys-activates-the-platforms-kill-switch/" title="Uninstalling Vista Product Keys Activates the Platform&#8217;s Kill Switch (February 21, 2008)">Uninstalling Vista Product Keys Activates the Platform&#8217;s Kill Switch</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/fix-windows-and-internet-explorer-missing-files/" title="Fix Windows and Internet Explorer Missing Files (February 20, 2008)">Fix Windows and Internet Explorer Missing Files</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/windows-automatically-restart/" title="Windows Automatically Restart (August 25, 2007)">Windows Automatically Restart</a> (3)</li>
	<li><a href="http://www.pctipsbox.com/what-is-wmpnscfgexe-and-why-it-is-running-in-vista/" title="What is WMPNSCFG.exe? and why it is running? in vista (February 17, 2008)">What is WMPNSCFG.exe? and why it is running? in vista</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/user-account-protection-for-vista/" title="User Account Protection for vista (February 13, 2007)">User Account Protection for vista</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/should-i-install-activex-controls/" title="Should I install ActiveX controls? (April 11, 2007)">Should I install ActiveX controls?</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/make-room-for-windows-xp-sp3/" title="Make Room for Windows XP SP3 (March 20, 2008)">Make Room for Windows XP SP3</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/install-vista-without-setting-it-up/" title="Install Vista without Setting It Up (February 3, 2008)">Install Vista without Setting It Up</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/how-to-perform-disk-defragment-windows-vista-from-the-command-line/" title="How to Perform Disk Defragment Windows Vista from the Command Line (February 19, 2008)">How to Perform Disk Defragment Windows Vista from the Command Line</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/how-to-get-your-computer-to-boot-faster/" title="How to Get Your Computer to Boot Faster (February 14, 2008)">How to Get Your Computer to Boot Faster</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/how-to-disable-windows-vista%e2%80%99s-user-account-control/" title="How To Disable Windows Vista&#8217;s User Account Control (May 6, 2007)">How To Disable Windows Vista&#8217;s User Account Control</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/how-to-delete-your-windows-vista-logon-password/" title="How To Delete Your Windows Vista Logon Password (April 28, 2007)">How To Delete Your Windows Vista Logon Password</a> (3)</li>
	<li><a href="http://www.pctipsbox.com/how-to-clear-your-memory-without-restarting/" title="How To Clear Your Memory Without Restarting (December 30, 2007)">How To Clear Your Memory Without Restarting</a> (1)</li>
	<li><a href="http://www.pctipsbox.com/how-to-automatically-log-on-to-a-user-account-in-windows-vista/" title="How To Automatically Log On To a User Account in Windows Vista (May 26, 2007)">How To Automatically Log On To a User Account in Windows Vista</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/how-processor-speed-is-reported-to-a-computer/" title="How Processor Speed Is Reported to a Computer (October 7, 2007)">How Processor Speed Is Reported to a Computer</a> (3)</li>
	<li><a href="http://www.pctipsbox.com/freeup-memory-in-one-click-with-instant-memory-cleaner/" title="Freeup Memory In One Click With Instant Memory Cleaner (February 25, 2008)">Freeup Memory In One Click With Instant Memory Cleaner</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/fix-hibernate-after-running-disk-cleanup/" title="Fix hibernate after running disk cleanup (June 24, 2007)">Fix hibernate after running disk cleanup</a> (4)</li>
	<li><a href="http://www.pctipsbox.com/enable-parental-controls-on-a-domain-computer/" title="Enable Parental Controls on a Domain Computer (March 10, 2007)">Enable Parental Controls on a Domain Computer</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/disable-user-account-control-uac-only-for-administrators/" title="Disable User Account Control (UAC) only for Administrators (February 20, 2007)">Disable User Account Control (UAC) only for Administrators</a> (1)</li>
	<li><a href="http://www.pctipsbox.com/disable-indexing-services/" title="Disable Indexing Services (February 4, 2007)">Disable Indexing Services</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/configurating-updates-stage-3-of-3-stuck-in-endless-reboot-loop/" title="stage 3 of 3 stuck in endless reboot loop (February 19, 2008)">Configurating updates: stage 3 of 3 stuck in endless reboot loop</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/checking-for-solutions-to-problems/" title="Checking for Solutions to Problems (February 22, 2008)">Checking for Solutions to Problems</a> (1)</li>
	<li><a href="http://www.pctipsbox.com/windows-vista-an-faq-for-nonprofits/" title="An FAQ for Nonprofits (February 10, 2007)">Windows Vista: An FAQ for Nonprofits</a> (0)</li>
	<li><a href="http://www.pctipsbox.com/windows-vista-reduced-functionality-mode-triggers/" title="Windows Vista Reduced Functionality Mode Triggers (August 19, 2007)">Windows Vista Reduced Functionality Mode Triggers</a> (1)</li>
	<li><a href="http://www.pctipsbox.com/windows-vista-hack-run-vista-legally-for-a-year-without-activation/" title="Run Vista legally for a year without activation (March 16, 2007)">Windows Vista Hack: Run Vista legally for a year without activation</a> (0)</li>
</ul>

<div>
<a href="http://feeds.feedburner.com/~f/PcTipsBox?a=N4jPXOG"><img src="http://feeds.feedburner.com/~f/PcTipsBox?i=N4jPXOG" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/PcTipsBox?a=0eo1iXg"><img src="http://feeds.feedburner.com/~f/PcTipsBox?i=0eo1iXg" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/PcTipsBox?a=xIHyrKg"><img src="http://feeds.feedburner.com/~f/PcTipsBox?i=xIHyrKg" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/PcTipsBox?a=E14LVPG"><img src="http://feeds.feedburner.com/~f/PcTipsBox?i=E14LVPG" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/PcTipsBox?a=i7yEJ3G"><img src="http://feeds.feedburner.com/~f/PcTipsBox?i=i7yEJ3G" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/PcTipsBox?a=jjB8qlG"><img src="http://feeds.feedburner.com/~f/PcTipsBox?i=jjB8qlG" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/PcTipsBox?a=Xyjdhkg"><img src="http://feeds.feedburner.com/~f/PcTipsBox?i=Xyjdhkg" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://windowspalace.com/contributors/how-to-turn-off-user-account-control-uac-in-windows-vista.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Install Vista without Setting It Up</title>
		<link>http://windowspalace.com/windows/install-vista-without-setting-it-up.html</link>
		<comments>http://windowspalace.com/windows/install-vista-without-setting-it-up.html#comments</comments>
		<pubDate>Sun, 03 Feb 2008 22:43:34 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
		
		<category><![CDATA[OOBE]]></category>

		<category><![CDATA[Windows Vista]]></category>

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

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

		<category><![CDATA[install vista]]></category>

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

		<guid isPermaLink="false">http://www.pctipsbox.com/install-vista-without-setting-it-up/</guid>
		<description><![CDATA[This guide shows you how to install Windows Vista but leave the set up (user name and password, PC name, recommended settings, time zone, and firewall settings) to the soon to be user of that computer just like the major PC manufacturers like Dell and HP do.

This is great for when you install Vista on [...]]]></description>
			<content:encoded><![CDATA[<p>This guide shows you how to install Windows Vista but leave the set up (user name and password, PC name, recommended settings, time zone, and firewall settings) to the soon to be user of that computer just like the major PC manufacturers like Dell and HP do.</p>

<p>This is great for when you install Vista on a computer for a friend or family member but you want to leave the set up to them.</p>

<ul>
<li>Install Windows Vista but stop at the first set up window (the user account creation window) also known as the beginning of Out of box experience (OOBE) shown below. <a href="http://www.pctipsbox.com/install-vista-without-setting-it-up/#more-1367">(more&#8230;)</a></li>
</ul>
<div>
<a href="http://feeds.feedburner.com/~f/PcTipsBox?a=7B80hXE"><img src="http://feeds.feedburner.com/~f/PcTipsBox?i=7B80hXE" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/PcTipsBox?a=gXHyVze"><img src="http://feeds.feedburner.com/~f/PcTipsBox?i=gXHyVze" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/PcTipsBox?a=rj7KhEe"><img src="http://feeds.feedburner.com/~f/PcTipsBox?i=rj7KhEe" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/PcTipsBox?a=5dCQxTE"><img src="http://feeds.feedburner.com/~f/PcTipsBox?i=5dCQxTE" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/PcTipsBox?a=6NXkRLE"><img src="http://feeds.feedburner.com/~f/PcTipsBox?i=6NXkRLE" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/PcTipsBox?a=TaG0czE"><img src="http://feeds.feedburner.com/~f/PcTipsBox?i=TaG0czE" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/PcTipsBox?a=1v04Dce"><img src="http://feeds.feedburner.com/~f/PcTipsBox?i=1v04Dce" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://windowspalace.com/windows/install-vista-without-setting-it-up.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
