<?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>Vex Star &#187; apache</title>
	<atom:link href="http://www.vexstar.com/tag/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vexstar.com</link>
	<description>Computers and Programming</description>
	<lastBuildDate>Tue, 21 Jun 2011 01:52:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Website &#8216;Media Player&#8217;</title>
		<link>http://www.vexstar.com/website-media-player/</link>
		<comments>http://www.vexstar.com/website-media-player/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 18:55:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[A-Z]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[avi]]></category>
		<category><![CDATA[CGI]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[operating systems]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[rule processing]]></category>
		<category><![CDATA[then processing]]></category>
		<category><![CDATA[translator]]></category>
		<category><![CDATA[USD]]></category>
		<category><![CDATA[windows media player plugin]]></category>

		<guid isPermaLink="false">http://www.vexstar.com/website-media-player/</guid>
		<description><![CDATA[Do any of you know if it is possible to make it so if any .wmv / .avi file is clicked on my website, it is automatically loaded either in that window, or in a popup.. instead of prompting user to download?
People upload files to my website, and want to be able to play the [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Do any of you know if it is possible to make it so if any .wmv / .avi file is clicked on my website, it is automatically loaded either in that window, or in a popup.. instead of prompting user to download?</p>
<p>People upload files to my website, and want to be able to play the videos right on the site.. instead of having to download.</p>
<p>how the browser deals with .wmv/.avi files is up to the browser and the operating systems default file types.  instead of linking directly to the file you can either embed it in the current page or you can have a javascript link that opens a new window with the file embedded in the popup.<br /><span id="more-209"></span><br />i was hoping there may be a chance i could manipulate the way my website handles any url with *.wmv* in it.. maybe using the .htaccess&#8230; heh&#8230; guess i&#8217;ll have to do things the hard (right) way&#8230;</p>
<p>thanks<br />well you can link to a script that will output different headers and change the content-type while keeping the file as a wmv but that just helps the browser and OS know what to do with it.  examples with php here: </p>
<p>ya but if you actually want it to play inside the browser you&#8217;ll have to embed it.<br />short of using a windows media player plugin, java applet, or flash you can&#8217;t guarantee that function.  In the end, the browser decides how to handle it.<br />Use .htaccess to pass it through a PHP file that will properly embed it.
<div style="5px;">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>That&#8217;s what I am going to try do do.. </p>
<p>[edit] i sucks, read next post [/edit]<br />Okie Dokie&#8230; I&#8217;m a little stuck (and off to bed so I have given up until tomorrow night after work)</p>
<p>Dumpy: (or anybody) &#8230; embedding into a php file is easy.. manually&#8230; how can I make it so clicking on &#8216;mysite.com/uploaded/ai2a/funnylol.avi&#8217; will be rewritten to say&#8230; &#8216;mysite.com/streaming/video.php&#8217; with the &#8216;funnylol.avi&#8217; video embedded into it&#8230;</p>
<p>Or is that too dificult / too much work / not possible?<br />You want flash video, man.  Its REALLY easy to create a playable .swf (flash) video if you have .flv video, or any kind of video for that matter.  Get Flash (the program) and create videos to embed.  It will even output the HTML to embed them for you, and you can easily set options for the player like audio controls, FF/rewind, etc.</p>
<p>Otherwise you just want to embed the video file in HTML.  You do not need PHP.</p>
<p>Do this: &lt;EMBED SRC=&quot;filename.???&quot;&gt;&lt;/EMBED&gt;</p>
<p>Look up the EMBED HTML docs.</p>
<p>Here&#8217;s an example of some audio: &lt;embed width=&quot;200&quot; height=&quot;30&quot; src=&quot;http://dev.myapp.com/static/audio/bob/restaurant.wav&quot;/&gt;
<div style="5px;">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="1px inset">
<div></div>
<div style="italic">You want flash video, man.  Its REALLY easy to create a playable .swf (flash) video if you have .flv video, or any kind of video for that matter.  Get Flash (the program) and create videos to embed.  It will even output the HTML to embed them for you, and you can easily set options for the player like audio controls, FF/rewind, etc.</p>
<p>Otherwise you just want to embed the video file in HTML.  You do not need PHP.</p>
<p>Do this: &lt;EMBED SRC=&quot;filename.???&quot;&gt;&lt;/EMBED&gt;</p>
<p>Look up the EMBED HTML docs.</p>
<p>Here&#8217;s an example of some audio: &lt;embed width=&quot;200&quot; height=&quot;30&quot; src=&quot;http://dev.myapp.com/static/audio/bob/restaurant.wav&quot;/&gt;</p></div>
</td>
</tr>
</table>
</div>
<p>Converting to flv/swf is easy&#8230; my problem is I have people uploading .wmv, .avi, .mpg files, and I am trying to see if there is a way to redirect a direct URL if  to something like  &gt; video.php having code in it to grab that video and play it&#8230;</p>
<p>I think I am complicating things too much.
<div style="5px;">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="1px inset">
<div></div>
<div style="italic">Converting to flv/swf is easy&#8230; my problem is I have people uploading .wmv, .avi, .mpg files, and I am trying to see if there is a way to redirect a direct URL if  to something like  &gt; video.php having code in it to grab that video and play it&#8230;</p>
<p>I think I am complicating things too much.</p></div>
</td>
</tr>
</table>
</div>
<p>Then I suggest you read my post again, because I included instructions for embedding any kind of video using HTML.</p>
<p>I can embed&#8230; my issue was the video is being uploaded, and the url to the file will cause the browser (most likely) to download it&#8230;</p>
<p>I sort of figured this out&#8230; but I am having a problem&#8230;</p>
<p>I wanted when a user clicked , it to load in an embedded html/php file&#8230; </p>
<p>The easiest way to do this I figured was using .htaccess&#8230;</p>
<p>I have a php file that when combined with  &#8230; it plays it in the embedded page.</p>
<p>I then used a rewrite rule in .htaccess to rewrite the url  to &#8230;</p>
<p>Anyway&#8230; the video isn&#8217;t loading when it is redirected using the .htaccess!!</p>
<p>RewriteRule (.+).avi http://www.mysite.com/video.php?vid=$1.avi [QSA,L]</p>
<p>
*edited out website name because until i&#8217;m finished i dont want it published.<br />CLIFFS:</p>
<p>Embedded video = easy and works<br />
Rewriting link to video to the embedded link = easy? and no works&#8230; WtF<br />I posted this on another forum a while back (so I may not stand by the exact wording, but overall, it&#8217;s still accurate)&#8230;</p>
<p></p>
<div style="5px;">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="1px inset">
<div></div>
<div style="italic">
<div style="5px;">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="1px inset">
<div></div>
<div style="italic">
<div style="5px;">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>Could you please explain how this code works?? Im clueless.</p></div>
</td>
</tr>
</table>
</div>
<p>RewriteRule    </p>
<p>
Okay, this is put into your .htaccess file, but CD forgot to mention that you need to turn on the rewrite engine.</p>
<div style="5px">
<pre style="auto">Options +FollowSymlinks
RewriteEngine on</pre>
</div>
<p>Although, putting those in your .htaccess file may wind up being redundant if you&#8217;re on a shared server (since most shared hosts have already done it for you), it&#8217;s always good practice to do it since both commands MUST be passed in order for rewrite rules work.</p>
<p>Moving on&#8230;</p>
<p>RewriteRule </p>
<p> = Begining of regex phrase (verbatim)<br />
 = variable content<br />
 = End of regex phrase.<br />
To break it down even more, what that phrase is saying is &quot;Everything after  will be made into a variable (how to call the variable will be discussed in just a second). Of course, this is assuming your URL contains .</p>
<p> = variable. You use this to call the variable created from . </p>
<p> = just an example PHP with various GET options in the URL. Simply put, this can be anything your little heart desires. Another example would be:  (assuming you have a file named viewfile.php and it is set up to $_GET[&quot;file&quot;]).</p>
<p> = No Case (case insensitive)<br />
 = Last (last flag)</p>
<p>
So here&#8217;s another example:</p>
<div style="5px">
<pre style="auto">Options +FollowSymlinks
RewriteEngine on

RewriteRule ^files/(.+)$ view.php?file=$1 [NC,L]</pre>
</div>
<p>Everything that is in the directory &quot;files&quot; will be passed through view.php for processing. Obviously in here, I can put a border, create a HTML page, throw in some ads, etc.</p>
<p>Love Always,<br />
Dumpy Dooby</div>
</td>
</tr>
</table>
</div>
<p>
So in your case, you&#8217;re going to want to go with:</p>
<div style="5px">
<pre style="auto">Options +FollowSymlinks
RewriteEngine on

RewriteRule ^<b>videos</b>/(.+)$ videos.php?view=$1 [R,L]</pre>
</div>
<p>That&#8217;s assuming your videos are contained in the <i>videos</i> subdirectory.</p>
<p>
I noticed one funny thing about my post: I used [NC,L], which is contradictory. Like I put above, you&#8217;ll want to go with [<b>R</b>edirect,<b>L</b>ast rule].</p>
<p>
Here is the information on flags from Apache []:<br />
<blockquote>Additionally you can set special flags for       <i>Substitution</i> by appending<br />
<blockquote>         <b>[<i>flags</i>]</b>       </p></blockquote>
<p>as the third argument to the RewriteRule       directive. <i>Flags</i> is a comma-separated list of the       following flags:
<ul>
<li>           &#8216;<b>redirect|R           [=<i>code</i>]</b>&#8216; (force <b>r</b>edirect)<br />
           Prefix <i>Substitution</i> with           [:thisport]/ (which makes the           new URL a URI) to force a external redirection. If no           <i>code</i> is given a HTTP response of 302 (MOVED           TEMPORARILY) is used. If you want to use other response           codes in the range 300-400 just specify them as a number           or use one of the following symbolic names:           temp (default), permanent,           seeother. Use it for rules which should           canonicalize the URL and give it back to the client,           <i>e.g.</i>, translate &#8220;/~&#8221; into           &#8220;/u/&#8221; or always append a slash to           /u/<i>user</i>, etc.<br />
                       <b>Note:</b> When you use this flag, make           sure that the substitution field is a valid URL! If not,           you are redirecting to an invalid location! And remember           that this flag itself only prefixes the URL with           [:thisport]/, rewriting           continues. Usually you also want to stop and do the           redirection immediately. To stop the rewriting you also           have to provide the &#8216;L&#8217; flag.</li>
<li>&#8216;<b>forbidden|F</b>&#8216; (force URL         to be <b>f</b>orbidden)<br />
         This forces the current URL to be forbidden,         <i>i.e.</i>, it immediately sends back a HTTP response of         403 (FORBIDDEN). Use this flag in conjunction with         appropriate RewriteConds to conditionally block some         URLs.</li>
<li>&#8216;<b>gone|G</b>&#8216; (force URL to be         <b>g</b>one)<br />
         This forces the current URL to be gone, <i>i.e.</i>, it         immediately sends back a HTTP response of 410 (GONE). Use         this flag to mark pages which no longer exist as gone.</li>
<li>           &#8216;<b>proxy|P</b>&#8216; (force           <b>p</b>roxy)<br />
           This flag forces the substitution part to be internally           forced as a proxy request and immediately (<i>i.e.</i>,           rewriting rule processing stops here) put through the . You have to make           sure that the substitution string is a valid URI           (<i>e.g.</i>, typically starting with           ) which can be           handled by the Apache proxy module. If not you get an           error from the proxy module. Use this flag to achieve a           more powerful implementation of the  directive,           to map some remote stuff into the namespace of the local           server.             Notice: To use this functionality make sure you have           the proxy module compiled into your Apache server           program. If you don&#8217;t know please check whether           mod_proxy.c is part of the &#8220;httpd           -l&#8221; output. If yes, this functionality is           available to mod_rewrite. If not, then you first have to           rebuild the &#8220;httpd&#8221; program with mod_proxy           enabled.</li>
<li>&#8216;<b>last|L</b>&#8216;         (<b>l</b>ast rule)<br />
         Stop the rewriting process here and don&#8217;t apply any more         rewriting rules. This corresponds to the Perl         last command or the break command         from the C language. Use this flag to prevent the currently         rewritten URL from being rewritten further by following         rules. For example, use it to rewrite the root-path URL         (&#8216;/&#8217;) to a real one, <i>e.g.</i>,         &#8216;/e/www/&#8217;.</li>
<li>&#8216;<b>next|N</b>&#8216;         (<b>n</b>ext round)<br />
         Re-run the rewriting process (starting again with the         first rewriting rule). Here the URL to match is again not         the original URL but the URL from the last rewriting rule.         This corresponds to the Perl next command or         the continue command from the C language. Use         this flag to restart the rewriting process, <i>i.e.</i>,         to immediately go to the top of the loop.<br />
         <b>But be careful not to create an infinite         loop!</b></li>
<li>&#8216;<b>chain|C</b>&#8216;         (<b>c</b>hained with next rule)<br />
         This flag chains the current rule with the next rule         (which itself can be chained with the following rule,         <i>etc.</i>). This has the following effect: if a rule         matches, then processing continues as usual, <i>i.e.</i>,         the flag has no effect. If the rule does         <b>not</b> match, then all following chained         rules are skipped. For instance, use it to remove the         &#8220;.www&#8221; part inside a per-directory rule set         when you let an external redirect happen (where the         &#8220;.www&#8221; part should not to occur!).</li>
<li>         &#8216;<b>type|T</b>=<i>MIME-type</i>&#8216;         (force MIME <b>t</b>ype)<br />
         Force the MIME-type of the target file to be         <i>MIME-type</i>. For instance, this can be used to         simulate the mod_alias directive         ScriptAlias which internally forces all files         inside the mapped directory to have a MIME type of         &#8220;application/x-httpd-cgi&#8221;.</li>
<li>           &#8216;<b>nosubreq|NS</b>&#8216; (used only if           <b>n</b>o internal           <b>s</b>ub-request)<br />
           This flag forces the rewriting engine to skip a           rewriting rule if the current request is an internal           sub-request. For instance, sub-requests occur internally           in Apache when mod_include tries to find out           information about possible directory default files           (index.xxx). On sub-requests it is not           always useful and even sometimes causes a failure to if           the complete set of rules are applied. Use this flag to           exclude some rules.<br />
                       Use the following rule for your decision: whenever you           prefix some URLs with CGI-scripts to force them to be           processed by the CGI-script, the chance is high that you           will run into problems (or even overhead) on           sub-requests. In these cases, use this flag.</li>
<li>&#8216;<b>nocase|NC</b>&#8216;         (<b>n</b>o <b>c</b>ase)<br />
         This makes the <i>Pattern</i> case-insensitive,         <i>i.e.</i>, there is no difference between &#8216;A-Z&#8217; and         &#8216;a-z&#8217; when <i>Pattern</i> is matched against the current         URL.</li>
<li>&#8216;<b>qsappend|QSA</b>&#8216;         (<b>q</b>uery <b>s</b>tring         <b>a</b>ppend)<br />
         This flag forces the rewriting engine to append a query         string part in the substitution string to the existing one         instead of replacing it. Use this when you want to add more         data to the query string via a rewrite rule.</li>
<li>           &#8216;<b>noescape|NE</b>&#8216;           (<b>n</b>o URI <b>e</b>scaping of           output)<br />
           This flag keeps mod_rewrite from applying the usual URI           escaping rules to the result of a rewrite. Ordinarily,           special characters (such as &#8216;%&#8217;, &#8216;$&#8217;, &#8216;;&#8217;, and so on)           will be escaped into their hexcode equivalents (&#8216;%25&#8242;,           &#8216;%24&#8242;, and &#8216;%3B&#8217;, respectively); this flag prevents this           from being done. This allows percent symbols to appear in           the output, as in      RewriteRule /foo/(.*) /bar?arg=P1%3d$1 [R,NE]</p>
<p>          which would turn &#8216;/foo/zed&#8217; into a safe           request for &#8216;/bar?arg=P1=zed&#8217;.                                         <b>Notice:</b> The               noescape flag is only available with               Apache 1.3.20 and later versions.</li>
<li>           &#8216;<b>passthrough|PT</b>&#8216;           (<b>p</b>ass <b>t</b>hrough to next           handler)<br />
           This flag forces the rewriting engine to set the           uri field of the internal           request_rec structure to the value of the           filename field. This flag is just a hack to           be able to post-process the output of           RewriteRule directives by           Alias, ScriptAlias,           Redirect, <i>etc.</i> directives from           other URI-to-filename translators. A trivial example to           show the semantics: If you want to rewrite           /abc to /def via the rewriting           engine of mod_rewrite and then           /def to /ghi with           mod_alias:      RewriteRule ^/abc(.*)  /def$1 [PT]<br />
    Alias       /def       /ghi</p>
<p>          If you omit the PT flag then           mod_rewrite will do its job fine,           <i>i.e.</i>, it rewrites uri=/abc/&#8230; to           filename=/def/&#8230; as a full API-compliant           URI-to-filename translator should do. Then           mod_alias comes and tries to do a           URI-to-filename transition which will not work.             Note: <b>You have to use this flag if you want to           intermix directives of different modules which contain           URL-to-filename translators</b>. The typical example           is the use of mod_alias and           mod_rewrite..</li>
<li>&#8216;<b>skip|S</b>=<i>num</i>&#8216;         (<b>s</b>kip next rule(s))<br />
         This flag forces the rewriting engine to skip the next         <i>num</i> rules in sequence when the current rule         matches. Use this to make pseudo if-then-else constructs:         The last rule of the then-clause becomes         skip=N where N is the number of rules in the         else-clause. (This is <b>not</b> the same as the         &#8216;chain|C&#8217; flag!)</li>
<li>         &#8216;<b>env|E=</b><i>VAR</i>:<i>VAL</i>&#8216;         (set <b>e</b>nvironment variable)<br />
         This forces an environment variable named <i>VAR</i> to         be set to the value <i>VAL</i>, where <i>VAL</i> can         contain regexp backreferences $N and         %N which will be expanded. You can use this         flag more than once to set more than one variable. The         variables can be later dereferenced in many situations, but         usually from within XSSI (via &lt;!&#8211;#echo         var=&quot;VAR&quot;&#8211;&gt;) or CGI (<i>e.g.</i>         $ENV{&#8216;VAR&#8217;}). Additionally you can dereference         it in a following RewriteCond pattern via         %{ENV:VAR}. Use this to strip but remember         information from URLs.</li>
</ul>
</blockquote>
<p></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.vexstar.com/website-media-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Does anyone actually LIKE Windows Vista?</title>
		<link>http://www.vexstar.com/does-anyone-actually-like-windows-vista/</link>
		<comments>http://www.vexstar.com/does-anyone-actually-like-windows-vista/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 15:28:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[64bit processor]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Aero]]></category>
		<category><![CDATA[AIX]]></category>
		<category><![CDATA[AMD]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[bare bones services]]></category>
		<category><![CDATA[diarrhea]]></category>
		<category><![CDATA[domain controller]]></category>
		<category><![CDATA[file/print services]]></category>
		<category><![CDATA[GPU]]></category>
		<category><![CDATA[horseshit software]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[large network]]></category>
		<category><![CDATA[legacy systems]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[low-end hardware]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[managed mail server]]></category>
		<category><![CDATA[manager]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Vista]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Navy]]></category>
		<category><![CDATA[Nvidia]]></category>
		<category><![CDATA[online computer literacy test]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[party applications]]></category>
		<category><![CDATA[ram]]></category>
		<category><![CDATA[SAP consultant]]></category>
		<category><![CDATA[security software]]></category>
		<category><![CDATA[shared memory]]></category>
		<category><![CDATA[shitty software]]></category>
		<category><![CDATA[shitty software development practices]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[software providers]]></category>
		<category><![CDATA[software vendors]]></category>
		<category><![CDATA[software works]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[stupid software]]></category>
		<category><![CDATA[Toshiba]]></category>
		<category><![CDATA[UAC]]></category>
		<category><![CDATA[ubid.com]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[USD]]></category>
		<category><![CDATA[vista media]]></category>
		<category><![CDATA[vista media center]]></category>
		<category><![CDATA[web servers]]></category>
		<category><![CDATA[Windows Server 2003]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[winxp media]]></category>
		<category><![CDATA[winxp media center]]></category>
		<category><![CDATA[writer]]></category>
		<category><![CDATA[XP]]></category>
		<category><![CDATA[XP pro]]></category>

		<guid isPermaLink="false">http://www.vexstar.com/does-anyone-actually-like-windows-vista/</guid>
		<description><![CDATA[I can&#8217;t see any positives..   I recently (yesterday) got a new laptop from HP.  Its a beast compared to my old computer, yet I really don&#8217;t feel like I&#8217;ve made an improvement in performance.    
My old computer had Windows XP and Ubuntu Fiesty installed 
2.8 Ghz Pentium 4 
512 [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>I can&#8217;t see any positives..   I recently (yesterday) got a new laptop from HP.  Its a beast compared to my old computer, yet I really don&#8217;t feel like I&#8217;ve made an improvement in performance.    </p>
<p>My old computer had Windows XP and Ubuntu Fiesty installed <br />
2.8 Ghz Pentium 4 <br />
512 mb PC 2600 ram <br />
and a 128mb nVidia 6600 GT video card.   </p>
<p>My new laptop has Windows Vista Home installed<br />
AMD Turion 64 Dual Core 2.0 GHz <br />
3 GB DDR2 ram <br />
and an nVidia 7150 integrated card with 1 gb shared ram   <br /><span id="more-161"></span></p>
<p>But all the programs are still as slow as ever.  Crap takes forever to load when I&#8217;m using the DVD drive.  I don&#8217;t know if my expectations were too high for a 64bit processor and 6x the amount of ram, but I had no problem running multiple processes in Ubuntu.  </p>
<p>Some people say its the visual effects of Vista that clog it down, and I&#8217;m starting to think that it must be because they are so badly coded.  I had Compiz Fusion running nonstop in Ubuntu and never had any hangup (and this is with multiple transparencies, physics effects, live previews and other demanding processes).  </p>
<p>This has left me with an overwhelming distaste for the quality of this supposed Windows Upgrade.  Not to mention the plethora of antivirus and security software that came preinstalled on the computer&#8230;.    What are everyone else&#8217;s thoughts on this Stunning New Windows</p>
<p>
edit: Microsoft Smart Quotes messing everything up <br />Intel Core 2 Quad Q6600<br />
4gigs of RAM<br />
8800GTS 512<br />
7200rpm drives x2</p>
<p>Vista runs pretty smoothly for me. 
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
<div style="font-style:italic">Intel Core 2 Quad Q6600<br />
4gigs of RAM<br />
8800GTS 512<br />
7200rpm drives x2</p>
<p>Vista runs pretty smoothly for me. </p></div>
</td>
</tr>
</table>
</div>
<p>you also have a dedicated card that is far superior to mine&#8230;  does everyone need a high end graphics card just to run vista smoothly?
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>same computer?  huh
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>Same Compaq V2000 laptop.<br />my laptop has shared memory and runs vista just fine too? its just cheap gateway laptop. vista has been nice to me<br />I haven&#8217;t experienced many problems but if I was given the option of Windows XP Pro or Vista, I would still take XP Pro.<br />runs better than my other computer on XP</p>
<p>then again, I have 3 gigs of ram in my vista comp
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>well I can&#8217;t play Counter Strike for some unknown reason.  I installed it from the CD too.</p>
<p>I&#8217;m blaming vista.<br />don&#8217;t forget that laptop specs do not translate to desktops with respect to performance</p>
<p>(with the same specs, the desktop will perform better)<br />With one gig of shared video memory for the video card that means vista has available 2gb of memory. It has been said vista runs with 2gb as xp does with 1gb. </p>
<p>An athlon 64 x2 is about 40% (which is probably what an amd turion is closet too) behind compared to a core 2 duo but I think your biggest bottleneck is its a laptop.</p>
<p>If you had a core2 duo desktop or even a phenom desktop with 4gb of ram or so with at least a geforce 8200 onboard or 8500gt or higher you&#8217;d have a much better experience. An ati comparable video card would be fine as well.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>No reason to get childish just because you don&#8217;t believe me.  It is my work laptop (I am an SAP consultant) so it gets used more than most.  In my experience, people who bitch about like Vista are people who have never used it, Apple fanboys, or ignorant people who feel they know stuff they know nothing about.  </p>
<p>Are there shortcomings?  Yes.  Are there features that you simply don&#8217;t need and should turn off?  Yes.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>If you want to run Vista with full Aero effects and still run smoothly with a bunch of apps open, yeah, it&#8217;ll help to have a dedicated GPU.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>Our company is still considering the changeover. I&#8217;m not looking forward to it from what I have experienced so far.<br />Only thing I did on my PC was upgrade the RAM to 2GB and I think vista is much better than XP <br />I&#8217;ve had it for about a year now and have no complaints. It loads programs noticably faster than XP on this computer as well.<br />I have Vista and XP set to dual-boot on my laptop (Core2Duo, 2gb RAM, Radeon x1400), and I haven&#8217;t booted into the Vista partition for probably half a year.  I timed it once, and I was able to boot into XP and launch word, Opera, and AIM before Vista even made it to the log-in screen.  Add to that that for some reason Vista decided to stop talking to my router (it did start talking to it again after about a week), and I was fed up with it.<br />I have been using Vista Ultimate x64 since August 2007 and I have loved it then as much as I do now. The only issue I had &#8211; still have &#8211; is finding an internal tv tuner card that is supported for vista x64 and a few other minor drivers.</p>
<p>The pros outweigh the cons. And when you go back and forth between Vista and XP as I do for work, XP seems outdated.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>Going to be stuck with Vista for -ANY- new machine now aren&#8217;t you?  <br />
My home machines are staying with XP Pro up until I decide to run Ubuntu on one.  Work machine isn&#8217;t up from lease for another year or so I think but I&#8217;m afraid I&#8217;ll be stuck with Vista once I get a new one.  I have a feeling a few more people, including myself, will be dual booting primarily into Ubuntu for our day to day and keeping Vista there for the Adobe Suite programs.<br />a friend of mine bought an hp desktop that came with vista.  it only has 1gb of ram. it runs like crap, it took him almost 20 minutes to install nero.  he has about 100mb of ram free. he&#8217;s like &quot;well, they should give you the amount of ram you need from the factory&quot;</p>
<p>yeah, hes retarded</p>
<p>i have vista on one of my desktop computers only because the tuner card will only work with vista media center and nothing else.  tried linuxmce, mediaportal, winxp media center, mythtv etc, nothing will work except vista media center
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>Not with enterprise licensing.  </p>
<p>I agree with the statement that an IT department which switches to Vista is dumb; unless they have no other option.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
<div style="font-style:italic">Not with enterprise licensing. </p>
<p>I agree with the statement that an IT department which switches to Vista is dumb; unless they have no other option.</p></div>
</td>
</tr>
</table>
</div>
<p>Our entire company has gone to vista without a problem.. you just can&#8217;t have monkeys running the network. Most IT depts that have problems moving over to vista are related to horseshit Domain Policies that don&#8217;t work/break the domain controller.<br />I say it because there really isn&#8217;t a benefit to going to Vista.  Why put your users through a transition, and put strain on your help desk, if you don&#8217;t have to.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>i agree, there&#8217;s not much benefit for the transition.  i do like vista for personal use though.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
<div style="font-style:italic">a friend of mine bought an hp desktop that came with vista.  it only has 1gb of ram. it runs like crap, it took him almost 20 minutes to install nero.  he has about 100mb of ram free. he&#8217;s like &quot;well, they should give you the amount of ram you need from the factory&quot;</p>
<p>yeah, hes retarded</p>
<p>i have vista on one of my desktop computers only because the tuner card will only work with vista media center and nothing else.  tried linuxmce, mediaportal, winxp media center, mythtv etc, nothing will work except vista media center</p></div>
</td>
</tr>
</table>
</div>
<p>Vista will use all the RAM you give it, to cache frequently-used files. No way around it. RAM&#8217;s not the issue, though he could use more than 1GB anyway.</p>
<p>I&#8217;m running Vista on a Thinkpad R40 with a 1.5GHz P4 Centrino and 2GB of RAM; it does alright. My biggest beef with Vista at this point is that it&#8217;s like a fucking nanny; anything I want to change, I have to verify that I&#8217;m really the one requesting the change to be made. I can understand doing this for important shit, but for changing the screen resolution or changing the time? Come on, that&#8217;s just a waste of everyone&#8217;s time.<br />I think vista is quite good.</p>
<p>You need current-hardware to run it well&#8230;.  And that&#8217;s no diff than when XP first came out.  XP didn&#8217;t exactly run well on &quot;upgrade&quot; boxes, anyway, if you recall.<br />Once SP1 came out and I figured out how to turn off the fuckin UAC, I haven&#8217;t looked back at my XP disks since.  I have a machine that will run it easily though so that probably makes the difference.  The only other problem I&#8217;ve had with it is finding things that have been moved around to somewhat hide them from the click happy computer illiterate people of the world.<br />It&#8217;s fine apart from the permissions that I vented off about in the thread in C&amp;P <br />I was running it on a Toshiba laptop.. Core Duo, 1gb ram, onboard graphics.. for day to day stuff it ran fine, but good luck doing anything like Photoshop on it. </p>
<p>It was just a work laptop for checking email and browsing the web though, and I did like it more than XP, but definitely felt it struggle more than a few times.</p>
<p>I&#8217;m not fussy though </p>
<p>When I build my new desktop, i&#8217;ll be putting vista on it.. but it will be beefy enough to handle it without struggling.<br />I&#8217;ve been running Vista Ultimate 64 at home on my system for about 6 months now and it&#8217;s been fine. A few issues here and there, but nothing that I didn&#8217;t go through with XP when it came out.<br />I&#8217;ve been using it for about 18 months here at work, and its been great.  I&#8217;ve got it on one of my machines at home, but don&#8217;t have a license for my other machine, so its still running XP.  So far, I&#8217;ve had absolutely no problems with it.  I&#8217;ve had some problems with some applications, but you can&#8217;t hold MS responsible for other companies&#8217; shitty software development practices.<br />A relative has a newish PC with Vista on it.  It is slow like a 486.  What innovation!
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>that&#8217;s funny, mine runs like grease lightning.<br />Mine is too.  But e6600 and 2 gigs ram is plenty of machine for vista.  I had it running on my 2ghz 1gig ram laptop for a while and it was running fine with some of the fancy shit turned off.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>Thats because you have more money than him.  He bought a low-end new PC with Vista and got fucked.  Its the slowest &#8216;new&#8217; computer I have ever used.  Slower than Win 3.1
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>Maybe your relative doesn&#8217;t know how to configure a machine properly &#8212; like, for example, that magical and esoteric ritual called <i>defragmentation</i>. Woooooo&#8230;(waves hands in spooky manner)
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>well i imagine if it&#8217;s a new pc there wouldn&#8217;t be much defragmentation&#8230;
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>Its new.  It was slow when he got it.  They set the Vista limits WAY WAY below anything that is actually reasonable to run Vista.  MS lied, behaved horribly and he and millions of other conumers got fucked.  A defrag won&#8217;t get him out of that.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>Well, he got what he paid for. To get the machine to run decent with low-end hardware that just meets the required (not recommended) components he needs to turn off some of the fancy visuals. Also, get rid of the crap that is most likely preloaded on the computer. Should run fine then.<br />How did they lie?  2gigs ram is a RECOMMENDED spec.  Are game developers lying when they put the minimum and recommended specs on the back of a game because you can&#8217;t run it smoothly at the minimum specs?  No, because all it has to do at the minimum specs is run, not run well.<br />eh, i could take or leave Vista.  it is better for newer computer users in helping them not screw up their PCs, but that&#8217;s about it that i have found.  i wouldn&#8217;t buy it on its own, but i wouldn&#8217;t pay extra to put XP on it.</p>
<p>the thing that i find most stupid about Vista is that it can&#8217;t run on current hardware.  netbooks are the latest big thing in computers and they run Vista like shit.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>Quit being a fucking jackass and Microsoft hater, you buy cheap you get cheap. that $500 dell with 1 GB of RAM doesn&#8217;t cut it.. even for XP anymore.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>Oh. I thought it was an upgrade box.<br />Its a well known scandal that &quot;Vista Ready&quot; computers were NOT.  You guys are such hosers.  They under-specified the minimum.  His computer would work fine if it were XP.  Its Vista and so he is totally screwed.</p>
<p>But saying that obvious fact upsets you little honeybons?  OH NO!<br />Didn&#8217;t read much here, but I like Vista&#8230;  I have it on a dual core 2 gig RAM Shuttle PC.  </p>
<p>When I first installed it, it took about the same amount of time to boot as my XPS M1210 on XP did.  It&#8217;s slowed down some, but not much.<br />I like it.</p>
<p>networking is way easier with vista than with xp, folder navigation is a MILLION times better than xp, search is more capable but no faster than xp</p>
<p>all good software works on vista fine, so if you&#8217;re having trouble with software, you&#8217;re using shitty software. my computer starts in like a minute, and nothing ever seems slow (except firefox when it&#8217;s bleeding memory)<br />Vista is fine, but you have to realize it takes more power to run than XP. Just like how when everyone was upgrading from 98 to XP, they needed better machines to run XP.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>these days windows has 11ty million services running.  what they should do is when you install windows it should have nothing but the bare bones services running and then when a services is needed that&#8217;s not enabled it should tell you waht it is and let you enable it.  ya you might get a few of those messages to begin with but when you&#8217;re done you only have the services running that you need!</p>
<p>right now when you have a service disabled that you need it&#8217;s more of a just not work and fail horribly type thing going on.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
<div style="font-style:italic">these days windows has 11ty million services running.  what they should do is when you install windows it should have nothing but the bare bones services running and then when a services is needed that&#8217;s not enabled it should tell you waht it is and let you enable it.  ya you might get a few of those messages to begin with but when you&#8217;re done you only have the services running that you need!</p>
<p>right now when you have a service disabled that you need it&#8217;s more of a just not work and fail horribly type thing going on.</p></div>
</td>
</tr>
</table>
</div>
<p>I agree that should be an option.  Unfortunatly, MS has actually made effort to do the opposite &#8212; and for 95% of users, MS is right.<br />&quot;The operation you wish to perform requires the [insert service name] service. This service is not currently running. Starting the [insert service name] service will allow [explanation of consequences]. Do you want continue?&quot;</p>
<p>[Yes, start the service just this once] [Yes, start the service permanently] [No, don't start the service and cancel the operation]</p>
<p>- &#8211; -</p>
<p>Oh yeah, that&#8217;s totally hopeless.<br />Just out of curiosity, what would happen if all services were set to Manual startup? Would they still run on demand, when first needed, or would you have to open the Services panel to start them?
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
<div style="font-style:italic">&quot;The operation you wish to perform requires the [insert service name] service. This service is not currently running. Starting the [insert service name] service will allow [explanation of consequences]. Do you want continue?&quot;</p>
<p>[Yes, start the service just this once] [Yes, start the service permanently] [No, don't start the service and cancel the operation]</p>
<p>- &#8211; -</p>
<p>Oh yeah, that&#8217;s totally hopeless.</p></div>
</td>
</tr>
</table>
</div>
<p>i&#8217;ve seen that popup before which is what gave me the idea.  unfortunately most operations fail if the service is disabled rather than popping up that window.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
<div style="font-style:italic">I like it.</p>
<p>networking is way easier with vista than with xp, folder navigation is a MILLION times better than xp, search is more capable but no faster than xp</p>
<p>all good software works on vista fine, so if you&#8217;re having trouble with software, you&#8217;re using shitty software. my computer starts in like a minute, and nothing ever seems slow (except firefox when it&#8217;s bleeding memory)</p></div>
</td>
</tr>
</table>
</div>
<p>Are you shitting me? Folder navigation in Vista bugs the living fuck out of me. The folder tree was just fine.<br />i like vista </p>
<p>i use it on both of my main systems and it would also be on my laptop if it wasnt a bit too old </p>
<p>i do prefer vista over xp personally 
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
<div style="font-style:italic">Vista will use all the RAM you give it, to cache frequently-used files. No way around it. RAM&#8217;s not the issue, though he could use more than 1GB anyway.</p>
<p>I&#8217;m running Vista on a Thinkpad R40 with a 1.5GHz P4 Centrino and 2GB of RAM; it does alright. My biggest beef with Vista at this point is that it&#8217;s like a fucking nanny; anything I want to change, I have to verify that I&#8217;m really the one requesting the change to be made. I can understand doing this for important shit, but for changing the screen resolution or changing the time? Come on, that&#8217;s just a waste of everyone&#8217;s time.</p></div>
</td>
</tr>
</table>
</div>
<p>Do you still have UAC turned on?
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>speaking of UAC, that is the only thing that i&#8217;ve had cause problems on my own machine.  i tried leaving it on, just for the hell of it, and found that a few different programs wouldn&#8217;t install correctly with UAC on.  turned it off, and had none of the same problems.  </p>
<p>not blaming vista for this, i just didn&#8217;t think i would have problems like that 
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
<div style="font-style:italic">Its a well known scandal that &quot;Vista Ready&quot; computers were NOT. You guys are such hosers. They under-specified the minimum. His computer would work fine if it were XP. Its Vista and so he is totally screwed.</p>
<p>But saying that obvious fact upsets you little honeybons? OH NO!</p></div>
</td>
</tr>
</table>
</div>
<p>So you are still using the horseshit software that came preloaded right? A clean vista install with a real antivirus(not norton or mcafee) and your normal apps works fine with what that machine came with. Our office sells our customers lenovo PCs with quad core CPUs and 2 GB of ram and are so loaded with shit you would never know they were new. Get over it, they come loaded with shit to make them cheaper.<br />When I first got my hands on Vista, it was pre-SP1 and I had a shitload of problems with my networking, plus dealing with a bunch of third-party programs that couldn&#8217;t be used in Vista (wud?).  So I dumped it and went back to XP.</p>
<p>A few months ago I tried Vista again, this time with SP1.  So far, the only problem I&#8217;m having is with Vista not wanting to come back up on standby.   And as far as the muscle needed to propel Vista, a fast 7200rpm drive and 4GB of ram pretty much did the trick. </p>
<p>If I was running a business, I would stick to XP since I probably couldn&#8217;t be bothered to struggle with the upgrades.<br />Just installed Vista x64 yesterday, I like it so far.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
<div style="font-style:italic">speaking of UAC, that is the only thing that i&#8217;ve had cause problems on my own machine.  i tried leaving it on, just for the hell of it, and found that a few different programs wouldn&#8217;t install correctly with UAC on.  turned it off, and had none of the same problems.  </p>
<p>not blaming vista for this, i just didn&#8217;t think i would have problems like that </p></div>
</td>
</tr>
</table>
</div>
<p>UAC is a good idea, but they take it too far. It doesn&#8217;t need to check if the user wants to add a shortcut to the Start Menu. Delete system files? Yes. Change screen resolution? No.</p>
<p>Microsoft <i>does</i> have a good point* that users shouldn&#8217;t be using admin privileges all the time, and software vendors shouldn&#8217;t write programs that require them to use those admin privileges all the time. The problem is that there&#8217;s no in-between for old software that hasn&#8217;t been updated, and may never be updated.</p>
<p>
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
<div style="font-style:italic">UAC is a good idea, but they take it too far. It doesn&#8217;t need to check if the user wants to add a shortcut to the Start Menu. Delete system files? Yes. Change screen resolution? No.</p>
<p>Microsoft <i>does</i> have a good point* that users shouldn&#8217;t be using admin privileges all the time, and software vendors shouldn&#8217;t write programs that require them to use those admin privileges all the time. The problem is that there&#8217;s no in-between for old software that hasn&#8217;t been updated, and may never be updated.</p>
</div>
</td>
</tr>
</table>
</div>
<p>
it&#8217;s a good idea with a poor implementation.  OSX has the same thing and they implemented it much better.  when you want to make a change, it prompts you for your password.  then, i think it has a certain amount of time where it allows you to make changes without bothering you again.  that&#8217;s cool because quite often if you are changing one thing that they would flag for admin privs, you are probably doing more than one.</p>
<p>i agree about the other stuff too.  UAC should only be flagged for important things that actually matter, not stuff that is just preferences.<br />running Vista w/ 2 gigs ram and core 2 duo e4400 and ATI 2600pro.</p>
<p>it runs most programs (word, excel, quickbooks, database program, IE7) pretty well.  It opens and works pretty well in Adobe CS3 too.  Not great but not too bad.  I bought this thing for $400 about 6 months ago.  Budget PC that still runs pretty well.  I only &#8216;upgraded&#8217; the vid card b/c it used to be onboard.</p>
<p>UAC pisses me off too.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
<div style="font-style:italic">it&#8217;s a good idea with a poor implementation.  OSX has the same thing and they implemented it much better.  when you want to make a change, it prompts you for your password.  then, i think it has a certain amount of time where it allows you to make changes without bothering you again.  that&#8217;s cool because quite often if you are changing one thing that they would flag for admin privs, you are probably doing more than one.</p>
<p>i agree about the other stuff too.  UAC should only be flagged for important things that actually matter, not stuff that is just preferences.</p></div>
</td>
</tr>
</table>
</div>
<p>I was reading a discussion about that on another forum; apparently, whereas Linux and Vista lock down the desktop and launch the confirmation window in a completely separate memory space that no other programs have access to, OSX just pops up the confirmation window in the middle of the user&#8217;s desktop. That means a two-part malware could keylog your password when the window pops up, then run a virus that needs admin permissions, then &quot;type&quot; your password into the confirmation window and &quot;click&quot; OK before you even know what&#8217;s happening. OSX&#8217;s implementation might be friendly, but it&#8217;s not secure.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>that is a level of implementation that i&#8217;m not concerned with.  microsoft could easily have implemented their own more secure version without harassing you indefinitely with their stupid &quot;are you really sure you want to do that?  i mean really sure.  come on.  are you positive?  have you really thought this through?  do you really, really, really want to create your own directory in c:program files?  and then do you really want to name it something in particular?&quot;</p>
<p>the only security i really want from those things is to make the user think twice about what they are doing, not stop some sort of malware from infecting the system.  also, it stops other people from installing shit (which is what always breaks my parents&#8217; and brother&#8217;s computers when my young cousins want to install their stupid software).<br />MS was in a tough spot.  They have all those programs out there needing administrative access because of all the hacks required to get windows apps to run across versions over the last couple decades&#8230; and yet they were under mucho pressure to improve security.  So they just decided to inconvenience the user with admin access warnings until all the software providers updated their software.  Its not just about security, its about &quot;This program hasn&#8217;t been updated to our new way of doing things, doesn&#8217;t this PISS YOU OFF?&quot;  Its advertising for updates from vendors.<br />Maybe they should add a disclaimer to the confirmation window that says &quot;&#8230;if you are seeing this message very often, please contact the software vendor to request that they update their software.&quot; That would take the heat off Microsoft in an instant.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>I find it ironic that the Mac guy is bashing Vista&#8217;s UAC, considering how transparent and ultimately more time-consuming Mac&#8217;s UAC is.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
<div style="font-style:italic">that is a level of implementation that i&#8217;m not concerned with.  microsoft could easily have implemented their own more secure version without harassing you indefinitely with their stupid &quot;are you really sure you want to do that?  i mean really sure.  come on.  are you positive?  have you really thought this through?  do you really, really, really want to create your own directory in c:program files?  and then do you really want to name it something in particular?&quot;</p>
<p>the only security i really want from those things is to make the user think twice about what they are doing, not stop some sort of malware from infecting the system.  also, it stops other people from installing shit (which is what always breaks my parents&#8217; and brother&#8217;s computers when my young cousins want to install their stupid software).</p></div>
</td>
</tr>
</table>
</div>
<p>It&#8217;s a level of implementation you <i>should</i> be concerned with, because something that asks the user to confirm they are in control of the machine doesn&#8217;t do any good if a machine process can trick the OS into thinking the user is in control when he&#8217;s not.</p>
<p>Yes, I agree that Microsoft applied UAC to things that don&#8217;t need it; something is wrong with the rule system they cooked up to determine which settings need UAC and which don&#8217;t. I made that point a couple of times myself. But it&#8217;s all pointless if it isn&#8217;t actually <i>secure</i>.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>more time consuming?  i used OSX for a while, enough not to be a noob, but not enough to be the best, and i had no issues at all with their UAC.  i had vista for less than a week and i was about to smash my brand new laptop because of Microsoft&#8217;s incredibly intrusive and utterly horrendous implementation.  so, you are completely bass ackwards on that one.</p>
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
<div style="font-style:italic">It&#8217;s a level of implementation you <i>should</i> be concerned with, because something that asks the user to confirm they are in control of the machine doesn&#8217;t do any good if a machine process can trick the OS into thinking the user is in control when he&#8217;s not.</p>
<p>Yes, I agree that Microsoft applied UAC to things that don&#8217;t need it; something is wrong with the rule system they cooked up to determine which settings need UAC and which don&#8217;t. I made that point a couple of times myself. But it&#8217;s all pointless if it isn&#8217;t actually <i>secure</i>.</div>
</td>
</tr>
</table>
</div>
<p>Vista&#8217;s UAC is not going to stop viruses and malware.  This is Windows.  Every door they close leaves 4 other windows (pun not intended) open for malware programmers to sneak their code though.</p>
<p>All UAC is going to do is help keep machines running a little better by A) making someone think twice before they make that change and B) by preventing those without access from installing software or making changes that they shouldn&#8217;t be making.  So, once you acknowledge that you recognize the changes you are going to make are possibly dangerous, it should leave you alone.  But, because it doesn&#8217;t, so many people shut off their super shitty UAC and break the biggest new security enhancements that their shitty programmers came up with.<br />Vista&#8217;s UAC takes about 30 seconds to turn off.. Mac&#8217;s CAN&#8217;T be turned off.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>it doesn&#8217;t need to be turned off.  it does what it is supposed to do without being intrusive or problematic.  it is a poor comment on a piece of software when people think its best feature is the ability to easily shut it off.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>Mac&#8217;s continuously gets in my way, but I can&#8217;t turn it off. Vista&#8217;s took no time at all to turn off.</p>
<p>It&#8217;s a poor comment on Mac&#8217;s &quot;just works&quot; philosophy.. when it doesn&#8217;t.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>Type password vs. click ok.  Now, type password into a window that runs in user-space, or click ok on a screen that runs in a memory space you&#8217;re not allowed to step into.  I honestly cannot see how anyone that is remaining completely objective can claim to hate Vista UAC and not claim that Apple&#8217;s is just as bad.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>Apple geeks are <i>never</i> objective.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
<div style="font-style:italic">Mac&#8217;s continuously gets in my way, but I can&#8217;t turn it off. Vista&#8217;s took no time at all to turn off.</p>
<p>It&#8217;s a poor comment on Mac&#8217;s &quot;just works&quot; philosophy.. when it doesn&#8217;t.</p></div>
</td>
</tr>
</table>
</div>
<p>Maybe there should be an online computer literacy test that people can take, and if they pass, then they&#8217;re allowed to create an admin account for themselves on their machine; otherwise, they&#8217;re required to use a normal account and put up with UAC.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>until one of the questions asked &quot;do you consider scripting languages to be programming languages?&quot; in which you would fail the test and be stuck with UAC.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>Since the test would be written in a scripting language by someone who probably has never worked with anything that actually compiles, chances are you&#8217;d be right. However, I could anticipate that, and guess the correct answer.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>I find it laughable that you think I was bashing UAC.  </p>
<p>As to time consuming&#8230; I type my password in once a week or so.  OMG so hard!
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>OSX just doesn&#8217;t have the security problems that Windows does.  all of the people who fail to recognize this are just ignorant.  for years people have been saying that when Apple&#8217;s OS has the market share to justify hackers spending time on writing malware for it that everything would come crashing down on them&#8230;.  but it hasn&#8217;t.  OSX continues to gain market share and definitely has enough to be worth attacking, but you never hear a peep about anything like you do with Windows.</p>
<p>and again, with the OSX implementation, you put in your password once and it lasts for a while.  with Vista, if you were doing the exact same thing, you would be intruded upon god only knows how many times.</p>
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
<div style="font-style:italic">Mac&#8217;s continuously gets in my way, but I can&#8217;t turn it off. Vista&#8217;s took no time at all to turn off.</p>
<p>It&#8217;s a poor comment on Mac&#8217;s &quot;just works&quot; philosophy.. when it doesn&#8217;t.</p></div>
</td>
</tr>
</table>
</div>
<p>2 things&#8230;  1) if you are constantly being harassed by OSX&#8217;s UAC, you are doing something wrong.  what are you changing that often to be bothered?  they are so much more intelligent about what you would be bothered about than Microsoft whose UAC was flagged for all kinds of stupid shit. 2) i&#8217;m sure that Microsoft made it so easy to turn off because it is a horrible piece of shit.  again, the best thing you could say about Vista&#8217;s UAC is that it is easy to turn off.  lol.  how could you possibly argue then that it isn&#8217;t a piece of shit?  if it didn&#8217;t suck, leave it on.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>that&#8217;s not true, i hear many peeps concerning osx security.  probably more than its share considering it only has 10% of the market.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>are you hearing that people are having problems or are you stumbling across the various articles talking about how insecure OSX is?  when you read about Windows insecurities you are reading about people whose computers have been compromised and are now part of a bot net or about people whose computers are all but dying due to the various malware that is on it.  if you read about OSX insecurities, you are generally reading theoretical discussions about possible insecurities that are rarely exploited.</p>
<p>i remember reading an article that was posted on this forum about how OSX is less secure than Windows because the writer counted the number of security reports on some website for Windows and OSX and saw that there were more for OSX.  it was the most ignorant article i can remember reading outside of readers digest.  if you looked at most of the security reports for OSX, most were either place holders for security problems that weren&#8217;t found yet or were security problems with 3rd party applications such as various Adobe products.  then, for the Windows side, each security report covered a multitude of issues that were resolved with a single patch.  so, to compare the security of the OSs based on numbers was bullshit.<br />Like, stop raining on the windows parade, man.</p>
<p>Thats not cool, man.</p>
<p>Its not easy being hip-resistive, especially against superior products.  You have to get bigotted and hoot and haw a lot&#8230; while you defragment, de-spam and virus scan.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
<div style="font-style:italic">Like, stop raining on the windows parade, man.</p>
<p>Thats not cool, man.</p>
<p>Its not easy being hip-resistive, especially against superior products.  You have to get bigotted and hoot and haw a lot&#8230; while you defragment, de-spam and virus scan.</p></div>
</td>
</tr>
</table>
</div>
<p>  i actually don&#8217;t use OSX at all anymore and never switched over when i had my MBP for a few months (as a manager many of the tools i used had to run in IE, so i did most of my work in VMWare Fusion).  but, there were certainly things about OSX that i liked and there are things that MS ripped off from OSX that they never implemented properly in Vista.<br />THATS NOT POSSIBLE.  YOU MUST BE AN OS X &#8216;SACK RIDER.&#8217;  THAT IS THE ONLY POSSIBILITY.  </p>
<p>You want to give them cognitive dissonance and diarrhea, don&#8217;t you?
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
<div style="font-style:italic">THATS NOT POSSIBLE. YOU MUST BE AN OS X &#8216;SACK RIDER.&#8217; THAT IS THE ONLY POSSIBILITY. </p>
<p>You want to give them cognitive dissonance and diarrhea, don&#8217;t you?</p></div>
</td>
</tr>
</table>
</div>
<p>You must not work in a large network oriented environment.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<p>				for years people have been saying that when Apple&#8217;s OS has the market share to justify hackers spending time on writing malware for it that everything would come crashing down on them&#8230;. but it hasn&#8217;t.</p>
</td>
</tr>
</table>
</div>
<p>Get back to me when OSX has at least 25% of the market or more, preferably more.<br />Oh, one of these threads!  Fun!</p>
<p>(I like Vista, and use and generally prefer it over my other computers running OSX, XP or Ubuntu&#8230; of course it&#8217;s on my most powerful computer which is used for some programming, image analysis and photography.)
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>You mean like the interweb?
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>He means like an <i>office</i>. Belonging to a <i>company</i>.</p>
<p>Maybe the big companies run their shit on *nix, but that&#8217;s because they bought into it back when *nix was the only viable option for huge networks. Nobody who doesn&#8217;t already have a *nix infrastructure to maintain is bothering with it anymore. Windows is just too goddamned easy.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
<div style="font-style:italic">He means like an <i>office</i>. Belonging to a <i>company</i>.</p>
<p>Maybe the big companies run their shit on *nix, but that&#8217;s because they bought into it back when *nix was the only viable option for huge networks. Nobody who doesn&#8217;t already have a *nix infrastructure to maintain is bothering with it anymore. Windows is just too goddamned easy.</p></div>
</td>
</tr>
</table>
</div>
<p>are you kidding me?  you must have absolutely no clue if you would make that statement.  Windows is easy and it certainly has its place in the corporate environment, but it is still light years behind UNIX when it comes to stability and scaleability.  anyone who even considers running a multi-terabyte database in Windows should be shot on sight.  i&#8217;d also much rather run UNIX/Linux web servers than Windows unless we had some dependency on .NET or ASP.</p>
<p>If companies weren&#8217;t interested in UNIX, why would Linux have taken off?  You would have the big companies running Solaris, HPUX and AIX and no one would&#8217;ve considered Linux.  Everyone else would&#8217;ve just used Windows and these other companies would stop adding to their UNIX footprint and would start migrating everything they could to Windows.</p>
<p>please don&#8217;t talk about shit that you just don&#8217;t understand because these are the things that make people question your intelligence.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>why?  SQL Server is quite nice, especially in large database environments.</p>
<p></p>
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>because it&#8217;s free?  (other than support licenses)</p>
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>how is he talking shit?  a little passionate are we?
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
<div style="font-style:italic">why?  SQL Server is quite nice, especially in large database environments.</p>
<p>because it&#8217;s free?  (other than support licenses)</p>
<p>how is he talking shit?  a little passionate are we?</p></div>
</td>
</tr>
</table>
</div>
<p>I&#8217;m a UNIX admin and have been one for years.  I&#8217;ve run into ignorance on both the Windows and UNIX side for years.  Anyone who thinks the particular OS that they like is the best is always misguided.  UNIX is the best for certain tasks.  Windows is the best for others.  Even OSX is the best in its own space.  To not understand that is to live in a world with blinders.</p>
<p>For large databases, Windows can&#8217;t compete with UNIX.  The amount of CPUs and memory available in a RISC environment is staggering compared to what you can get with the x86/x64 platform.<br />
Windows is great for desktops, email, middle tier application servers and file/print services.  It is pretty good at small to medium databases as well.  I think MS SQL is much easier than Oracle for smaller databases.</p>
<p>I don&#8217;t know so much about Windows for web, but UNIX is a no brainer.  It is simple and stable and you can run it on some really cheap hardware with great availability options.</p>
<p>
So, he basically said that UNIX is only around because companies are too lazy to switch over from their legacy systems to the much easier Windows.  That is ignorance.  I&#8217;ve also argued the opposite point to some ignorant UNIX admins who think that UNIX is the answer to everything.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
<div style="font-style:italic">I&#8217;m a UNIX admin and have been one for years.  I&#8217;ve run into ignorance on both the Windows and UNIX side for years.  Anyone who thinks the particular OS that they like is the best is always misguided.  UNIX is the best for certain tasks.  Windows is the best for others.  Even OSX is the best in its own space.  To not understand that is to live in a world with blinders.</p>
<p>For large databases, Windows can&#8217;t compete with UNIX.  The amount of CPUs and memory available in a RISC environment is staggering compared to what you can get with the x86/x64 platform.<br />
Windows is great for desktops, email, middle tier application servers and file/print services.  It is pretty good at small to medium databases as well.  I think MS SQL is much easier than Oracle for smaller databases.</p>
<p>I don&#8217;t know so much about Windows for web, but UNIX is a no brainer.  It is simple and stable and you can run it on some really cheap hardware with great availability options.</p>
<p>
So, he basically said that UNIX is only around because companies are too lazy to switch over from their legacy systems to the much easier Windows.  That is ignorance.  I&#8217;ve also argued the opposite point to some ignorant UNIX admins who think that UNIX is the answer to everything.</div>
</td>
</tr>
</table>
</div>
<p>well i&#8217;ve run both IIS and apache and they both work as i would expect, nicely.  so there you go, you both win.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>lol.  so diplomatic.  it still doesn&#8217;t address his ignorance which is his comment about how companies that aren&#8217;t running UNIX aren&#8217;t considering it.  like i said, how did Linux become so popular?  Linux competes against Windows much more so than it does against other UNIX flavors.  people choose it over Windows for whatever reason and quite often they are shops that aren&#8217;t running UNIX already.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>well if you want my honest answer i think price is the biggest determinant in them choosing linux.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>that may be.  i didn&#8217;t specify any reason.</p>
<p>
my point is that depending on the task at hand, there are many &quot;best&quot; choices for your operating system.  up until recently, i would&#8217;ve said that XP was the best choice for me for home desktop use, but i&#8217;m slowly being swayed to the Vista path.  i know a few people for which OSX is the best choice and many ignorant people will never grasp that.<br />ive had vista for about a year and have no problems with it. as long as you have a decently powerful computer you should be able to run it just fine
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
<div style="font-style:italic">are you kidding me?  you must have absolutely no clue if you would make that statement.  Windows is easy and it certainly has its place in the corporate environment, but it is still light years behind UNIX when it comes to stability and scaleability.  anyone who even considers running a multi-terabyte database in Windows should be shot on sight.  i&#8217;d also much rather run UNIX/Linux web servers than Windows unless we had some dependency on .NET or ASP.</p>
<p>If companies weren&#8217;t interested in UNIX, why would Linux have taken off?  You would have the big companies running Solaris, HPUX and AIX and no one would&#8217;ve considered Linux.  Everyone else would&#8217;ve just used Windows and these other companies would stop adding to their UNIX footprint and would start migrating everything they could to Windows.</p>
<p>please don&#8217;t talk about shit that you just don&#8217;t understand because these are the things that make people question your intelligence.</p></div>
</td>
</tr>
</table>
</div>
<p>Linux <i>didn&#8217;t</i> take off until it got the backing of wealthy philanthropists, and companies that saw Linux users as a ready and willing beta tester pool. Some would argue it <i>still</i> hasn&#8217;t taken off, though it&#8217;s certainly more viable than it&#8217;s ever been. That said, I don&#8217;t know anyone who runs any *nix besides Solaris in their server rooms.</p>
<p>I never denied that *nix has a longer history in server rooms (in fact, I stated it clearly), but that doesn&#8217;t mean it&#8217;s impossible for Windows to catch up. In fact, the Navy is running my company&#8217;s products on a multi-terabyte database, running on (gasp) Windows Server 2003 Enterprise Edition.</p>
<p>In general, your posts are pretty good, but this one reeks of fanboyism. *nix can&#8217;t do anything Windows can&#8217;t do nowadays, and Windows usually does it more easily.<br />Too many are talking about running databases and running numbers through their computers, but that is just a fraction of the actual work in a corporate environment. Like trouphaz mentioned, windows and *nix have their own place. Many offices would be unproductive without a managed mail server or domain policies and network distribution.
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>you must have misread my fanaticism.  apparently, i am strictly a UNIX fanboy who can&#8217;t recognize that Windows has any place on computers.  i guess only deus recognizes that.  
<div style="margin:20px; margin-top:5px; ">
<table cellpadding="6" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div></div>
</td>
</tr>
</table>
</div>
<p>
how &quot;low-end&quot;?  i bought a $320 machine off ubid.com and it runs like a champ for normal shit (gaming wasn&#8217;t too great, 8400gs ftl).   threw in a hd4850 and full settings in  orange box doens&#8217;t slow it down.   that&#8217;s all i&#8217;ve been playing on it.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.vexstar.com/does-anyone-actually-like-windows-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

