<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>computer system</title>
	<atom:link href="http://computersystem.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://computersystem.wordpress.com</link>
	<description>Information about computer system</description>
	<lastBuildDate>Sun, 06 Sep 2009 02:46:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='computersystem.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>computer system</title>
		<link>http://computersystem.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://computersystem.wordpress.com/osd.xml" title="computer system" />
	<atom:link rel='hub' href='http://computersystem.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Computer Program optimization</title>
		<link>http://computersystem.wordpress.com/2009/09/06/computer-program-optimization/</link>
		<comments>http://computersystem.wordpress.com/2009/09/06/computer-program-optimization/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 02:46:00 +0000</pubDate>
		<dc:creator>blogbintang</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[computer program]]></category>
		<category><![CDATA[program optimization]]></category>

		<guid isPermaLink="false">http://computersystem.wordpress.com/2009/09/06/computer-program-optimization/</guid>
		<description><![CDATA[In computer science, program optimization or software optimization is the process of modifying a software system to make some aspect of it work more efficiently or use fewer resources.[1] In general, a computer program may be optimized so that it executes more rapidly, or is capable of operating with less memory storage or other resources, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=computersystem.wordpress.com&amp;blog=8344659&amp;post=23&amp;subd=computersystem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In computer science, program optimization or software optimization is the process of modifying a software system to make some aspect of it work more efficiently or use fewer resources.[1] In general, a computer program may be optimized so that it executes more rapidly, or is capable of operating with less memory storage or other resources, or draw less power. </p>
<p>Although the word &quot;optimization&quot; shares the same root as &quot;optimal,&quot; it is rare for the process of optimization to produce a truly optimal system. The optimized system will typically only be optimal in one application or for one audience. One might reduce the amount of time that a program takes to perform some task at the price of making it consume more memory. In an application where memory space is at a premium, one might deliberately choose a slower algorithm in order to use less memory. Often there is no “one size fits all” design which works well in all cases, so engineers make trade-offs to optimize the attributes of greatest interest. Additionally, the effort required to make a piece of software completely optimal—incapable of any further improvement— is almost always more than is reasonable for the benefits that would be accrued; so the process of optimization may be halted before a completely optimal solution has been reached. Fortunately, it is often the case that the greatest improvements come early in the process. </p>
<p> <span id="more-23"></span>
</p>
<p>[edit] &#8216;Levels&#8217; of optimization </p>
<p>Optimization can occur at a number of &#8216;levels&#8217;: </p>
<p>&#160;&#160;&#160; * Design level </p>
<p>At the highest level, the design may be optimized to make best use of the available resources. The implementation of this design will benefit from a good choice of efficient algorithms and the implementation of these algorithms will benefit from writing good quality code. The architectural design of a system overwhelmingly affects its performance. The choice of algorithm affects efficiency more than any other item of the design. In some cases, however, optimization relies on using fancier algorithms, making use of special cases and special tricks and performing complex trade-offs; thus, a fully optimized program can be more difficult to comprehend and hence may contain more faults than unoptimized versions. </p>
<p>&#160;&#160;&#160; * Source code level </p>
<p>Avoiding bad quality coding can also improve performance, by avoiding obvious slowdowns. After that, however, some optimizations are possible which actually decrease maintainability; some, but not all of them can nowadays be performed by optimizing compilers. For instance, using more indirection is often needed to simplify or improve a software, but that indirection has a cost. </p>
<p>&#160;&#160;&#160; * Compile level </p>
<p>Use of an optimizing compiler tends to ensure that the executable program is optimized at least as much as the compiler can predict. </p>
<p>&#160;&#160;&#160; * Assembly level </p>
<p>At the lowest level, writing code using an assembly language designed for a particular hardware platform will normally produce the most efficient code since the programmer can take advantage of the full repertoire of machine instructions. The operating systems of most machines have been traditionally written in assembler code[citation needed] for this reason. </p>
<p>With more modern optimizing compilers and the greater complexity of recent CPUs, it is more difficult to write code that is optimized better than the compiler itself generates, and few projects need resort to this &#8216;ultimate&#8217; optimization step. </p>
<p>However, a large amount of code written today is still compiled with the intent to run on the greatest percentage of machines possible. As a consequence, programmers and compilers don&#8217;t always take advantage of the more efficient instructions provided by newer CPUs or quirks of older models. Additionally, assembly code tuned for a particular processor without using such instructions might still be suboptimal on a different processor, expecting a different tuning of the code. </p>
<p>&#160;&#160;&#160; * Run time </p>
<p>Just in time compilers and Assembler programmers may be able to perform run time optimization exceeding the capability of static compilers by dynamically adjusting parameters according to the actual input or other factors. </p>
<p>[edit] Platform dependent and independent optimizations </p>
<p>Code optimization can be also broadly categorized as platform dependent and platform independent techniques; while the latter ones are effective on most or all platforms,platform dependent techniques use specific properties of one platform, or rely on parameters depending on the single platform or even on the single processor; writing or producing different versions of the same code for different processors might be thus needed.For instance, in the case of compile-level optimization, platform independent techniques are generic techniques such as loop unrolling, reduction in function calls, memory efficient routines, reduction in conditions, etc., that impact most CPU architectures in a similar way.&#160; Generally, these serve to reduce the total Instruction path length required to complete the program and/or reduce total memory usage during the process.&#160; On the other side, platform dependent techniques involve instruction scheduling, instruction level parallelism, data level parallelism, cache optimization techniques, i.e. parameters that differ among various platforms; the optimal instruction scheduling might be different even on different processors of the same architecture. </p>
<p>When to optimize </p>
<p>Optimization can reduce readability and add code that is used only to improve the performance. This may complicate programs or systems, making them harder to maintain and debug. As a result, optimization or performance tuning is often performed at the end of the development stage. </p>
<p>Donald Knuth made the following statement on optimization: </p>
<p>&#160;&#160;&#160; * &quot;We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil.&quot;[2] </p>
<p>(He also attributed the quote to Tony Hoare several years later,[3] although this might have been an error as Hoare disclaims having coined the phrase.[4]) </p>
<p>&quot;Premature optimization&quot; is a phrase used to describe a situation where a programmer lets performance considerations affect the design of a piece of code. This can result in a design that is not as clean as it could have been or code that is incorrect, because the code is complicated by the optimization and the programmer is distracted by optimizing. </p>
<p>An alternative approach is to design first, code from the design and then profile/benchmark the resulting code to see which parts should be optimized. A simple and elegant design is often easier to optimize at this stage, and profiling may reveal unexpected performance problems that would not have been addressed by premature optimization. </p>
<p>In practice, it is often necessary to keep performance goals in mind when first designing software, but the programmer balances the goals of design and optimization.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/computersystem.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/computersystem.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/computersystem.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/computersystem.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/computersystem.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/computersystem.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/computersystem.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/computersystem.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/computersystem.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/computersystem.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/computersystem.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/computersystem.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/computersystem.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/computersystem.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=computersystem.wordpress.com&amp;blog=8344659&amp;post=23&amp;subd=computersystem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://computersystem.wordpress.com/2009/09/06/computer-program-optimization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/22b48719233abc7e8ba1386186de7e06?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bintang Taufik</media:title>
		</media:content>
	</item>
		<item>
		<title>Know Your Computer with System Information for Windows</title>
		<link>http://computersystem.wordpress.com/2009/09/02/know-your-computer-with-system-information-for-windows/</link>
		<comments>http://computersystem.wordpress.com/2009/09/02/know-your-computer-with-system-information-for-windows/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 07:46:00 +0000</pubDate>
		<dc:creator>blogbintang</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[computer system]]></category>
		<category><![CDATA[system information for windows]]></category>

		<guid isPermaLink="false">http://computersystem.wordpress.com/2009/09/02/know-your-computer-with-system-information-for-windows/</guid>
		<description><![CDATA[SIW is a small in size utility that is specially designed to audit your PC and display the results in a very comprehensive manner. The results can subsequently be saved to a report file in several different formats (i.e. HTML, CSV, TXT, XML).&#160; SIW can either be installed on your PC or you can download [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=computersystem.wordpress.com&amp;blog=8344659&amp;post=22&amp;subd=computersystem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gtopala.com/index.html"><strong>SIW</strong></a> is a small in size utility that is specially designed to audit your PC and display the results in a very comprehensive manner. The results can subsequently be saved to a report file in several different formats (i.e. HTML, CSV, TXT, XML).&#160; SIW can either be installed on your PC or you can download the “standalone version” that can be installed on your flash drive. The “standalone version” is an excellent choice for diagnostic purposes; and troubleshooting other PCs. The developer of SIW works hard to continually keep SIW&#160; up-to-date with the current changes in hardware &amp; software configurations.&#160; <a href="http://www.gtopala.com/index.html"><strong>SIW</strong></a>, highly recommended for the everyday user and for those you are in the spirit of helping others on their PCs.</p>
<p><strong>Examples of what </strong><a href="http://www.gtopala.com/index.html"><strong>SIW</strong></a><strong> will gather about your PC: </strong></p>
<p><strong>Software Inventory</strong>: Operating System, Installed Software and Hotfixes, Processes, Services, Users, Open Files, System Uptime, Installed Codecs, Software Licenses (Product Keys / Serial Numbers / CD Key), Secrets (Password Recovery).</p>
<p><strong>Hardware Inventory</strong>: Motherboard, Sensors, BIOS, CPU, chipset, PCI/AGP, USB and ISA/PnP Devices, Memory, Video Card, Monitor, Disk Drives, CD/DVD Devices, SCSI Devices, S.M.A.R.T., Ports, Printers.</p>
<p><strong>Network Information</strong>: Network Cards, Network Shares, currently active Network Connections, Open Ports.</p>
<p><strong>Network Tools</strong>: MAC Address Changer, Neighborhood Scan, Ping, Trace, Statistics</p>
<p><strong>Miscellaneous Tools</strong>: Eureka! (Reveal lost passwords hidden behind asterisks), Monitor Test, Shutdown / Restart.</p>
<p><strong>Real-time monitors</strong>: CPU, Memory, Page File usage and Network Traffic.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/computersystem.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/computersystem.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/computersystem.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/computersystem.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/computersystem.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/computersystem.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/computersystem.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/computersystem.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/computersystem.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/computersystem.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/computersystem.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/computersystem.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/computersystem.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/computersystem.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=computersystem.wordpress.com&amp;blog=8344659&amp;post=22&amp;subd=computersystem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://computersystem.wordpress.com/2009/09/02/know-your-computer-with-system-information-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/22b48719233abc7e8ba1386186de7e06?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bintang Taufik</media:title>
		</media:content>
	</item>
		<item>
		<title>improved computer system tracks activities of lobbyists</title>
		<link>http://computersystem.wordpress.com/2009/09/01/improved-computer-system-tracks-activities-of-lobbyists/</link>
		<comments>http://computersystem.wordpress.com/2009/09/01/improved-computer-system-tracks-activities-of-lobbyists/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 07:44:00 +0000</pubDate>
		<dc:creator>blogbintang</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://computersystem.wordpress.com/2009/09/01/improved-computer-system-tracks-activities-of-lobbyists/</guid>
		<description><![CDATA[That&#8217;s Tony Bledsoe, Ohio legislative inspector general, describing the vastly improved computerized system of registering, monitoring and tracking the activities of the thousands of lobbyists who attempt to influence government every day at the Statehouse. With a computer and a few clicks, anyone, anywhere, now can quickly search Bledsoe&#8217;s agency for the names of lobbyists [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=computersystem.wordpress.com&amp;blog=8344659&amp;post=21&amp;subd=computersystem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s Tony Bledsoe, Ohio legislative inspector general, describing the vastly improved computerized system of registering, monitoring and tracking the activities of the thousands of lobbyists who attempt to influence government every day at the Statehouse.</p>
<p>With a computer and a few clicks, anyone, anywhere, now can quickly search Bledsoe&#8217;s agency for the names of lobbyists working Columbus, their employers, the amount of money they spend and the treats and gifts they dole out to lawmakers and others.</p>
<p>You also can track lobbying activity by subject, such as which groups and individuals pursued federal stimulus dollars or the budget.</p>
<p>The old system stored and listed information in an onerous manner that was so difficult to navigate, it was virtually useless.</p>
<p>The new system, unveiled quietly amid the noisy final deliberations of the final budget battle in late spring, goes much further than listing information.</p>
<p>The average citizen, social activist, inquisitive reporter — heck, even the envious and competitive fellow lobbyist — can not only tap into Bledsoe&#8217;s reservoir, but also sort the lobbying activity by using any data requested in the reports, and download the information into an Excel file.</p>
<p>For example, with a few clicks, I learned that lobbyists and employers reported spending $362,633.58 from January through April this year on Ohio&#8217;s 132 lawmakers — or about $2,750 per legislator.</p>
<p>The Wholesale Beer and Wine Association of Ohio led the spending spree with $28,700.01, or about $217 per lawmaker, for a legislative luncheon March 10.</p>
<p>The reporting laws, written by the legislators themselves, require lobbyists and employers to list gifts, meals and beverages and funds spent on receptions.</p>
<p>The beer and wine group, like many other lobbying organizations, invited all legislators to the reception, and therefore, only reported the total amount spent rather than itemizing spending on individuals.</p>
<p>Lobbying money spent on individuals is treated differently.</p>
<p>Again with a few clicks, I easily could scan a list of lawmakers who received gifts from lobbyists in the first four months of 2009.</p>
<p><b></b>Locally, state Sen. Tom Sawyer and state Rep. Brian Williams, both Democrats from Akron, received lodging and meals from KnowledgeWorks on May 5 worth $513 and $342, respectively.</p>
<p>The beauty of the new system is I could find this information in several ways by looking at a spreadsheet of all spending or by running a query on an individual lawmaker or lobbyist.</p>
<p>In the old days, I would have had to find KnowledgeWorks among hundreds of thousands of pages filed with Bledsoe&#8217;s office.</p>
<p>Quickly, I also can look to see that KnowledgeWorks reported lobbying on House Bill 1, the two-year state budget, and has four lobbyists registered.</p>
<p>You can search by name for lobbyists or their employers to see their legislative, executive and pension plan priorities. Are they trying to change a law, obtain a tax credit, influence a state officeholder, work with a state agency that regulates their industry?</p>
<p>The new, improved system also lists lobbyists and employers who are delinquent in filing reports.</p>
<p>Bledsoe said those numbers have dropped significantly from the 660 reported just a few years ago to a few dozen today, in large part because the new system allows lobbyists to register online, check their status quickly and report others who are delinquent.</p>
<p>Yes, lobbyists are tattling on others, not only about filing, but they also monitor their competitors&#8217; reports to make sure their information is complete.</p>
<p>The site — <a href="http://www.jlec-olig.state.oh.us/">http://www.jlec-olig.state.oh.us/</a> — is not perfect.</p>
<p>It could be a little user-friendlier. First-time visitors should go immediately to the &#8221;How Do I?&#8221; link and click on &#8221;How do I search for information reported by lobbyists and their employers?&#8221; You will be on your way.</p>
<p>Even with the improvements, the system could be better.</p>
<p>Any information from 2008 or earlier is still in an unusable format.</p>
<p>More importantly, the financial disclosure statements filed by lawmakers and candidates are not in the new computer system, so searching those documents means opening a multipage PDF file and reading through single reports with no ability to sort or compare information.</p>
<p>Lawmakers need to address this immediately.</p>
<p>And while they are at it, lawmakers should require lobbyists to specify the sections of a bill they are attempting to influence through the legislative process.</p>
<p>Lobbyists zero in on exact sections of the Ohio Revised Code when they try to change a law, so why not ask them to list those?</p>
<p>The general public, watchdog groups, the media and fellow lobbyists then would know which lobbyist or employer was responsible for getting the legislature to change or write a new law.</p>
<p>Now that would be a step toward real transparency in a system that has improved dramatically but could be even better.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/computersystem.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/computersystem.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/computersystem.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/computersystem.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/computersystem.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/computersystem.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/computersystem.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/computersystem.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/computersystem.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/computersystem.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/computersystem.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/computersystem.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/computersystem.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/computersystem.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=computersystem.wordpress.com&amp;blog=8344659&amp;post=21&amp;subd=computersystem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://computersystem.wordpress.com/2009/09/01/improved-computer-system-tracks-activities-of-lobbyists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/22b48719233abc7e8ba1386186de7e06?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bintang Taufik</media:title>
		</media:content>
	</item>
		<item>
		<title>Repair System Restore in Windows XP and Vista</title>
		<link>http://computersystem.wordpress.com/2009/08/25/repair-system-restore-in-windows-xp-and-vista/</link>
		<comments>http://computersystem.wordpress.com/2009/08/25/repair-system-restore-in-windows-xp-and-vista/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 12:47:26 +0000</pubDate>
		<dc:creator>blogbintang</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[system Restore]]></category>
		<category><![CDATA[Windows System Restore]]></category>
		<category><![CDATA[windows vista]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://computersystem.wordpress.com/2009/08/25/repair-system-restore-in-windows-xp-and-vista/</guid>
		<description><![CDATA[System restore normally backs up the Registry and many important system files frequently and automatically in Windows XP and Vista. 1Check the available disk space. If its near or below 15% Windows will not create new restore points and may even delete them. The best way to check is through the defragmenter. Click start, system [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=computersystem.wordpress.com&amp;blog=8344659&amp;post=20&amp;subd=computersystem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>System restore</strong> normally backs up the Registry and many important system files frequently and automatically in Windows XP and Vista. </p>
<p>1Check the available disk space. If its near or below 15% Windows will not create new restore points and may even delete them. </p>
<p>The best way to check is through the defragmenter. Click start, system tools and disk defragmenter. This will display the percentage of available disc space for each drive.</p>
<p>Task Scheduler is turned off.: System Restore uses Windows&#8217; Task Scheduler to create system restore points automatically. To check and make sure Task Scheduler is active, click the “Start tab,” click “Run” (or Start in Vista), type “services.msc,” and press “Enter.” Scroll down to the” Task Scheduler,” and double click it. </p>
<p>If “Service status” doesn&#8217;t show “Started,” you will have turn it on. To do this click on the downward arrow in the “Start up type” box and select automatic.</p>
<p>System Restore creates restore points automatically when your PC is turned on and idle. If the system is turned off, in use or hibernating, it will not create any restore points.</p>
<p>Occasionally system restore points become corrupted. When this happens, you will need to reset system restore on your computer. </p>
<p>To do this, right click on, ”My Computer,” click properties, click the “System Restore” tab, and check the, turn of “system restore” box, click apply and uncheck the box to turn it back on.</p>
<p>In Windows Vista, right click on, ”My Computer,” click properties, click “ System Protection,” clear the box next to ‘C.” When prompted with the message “ Are you shore you want to turn system restore off” click “turn off system restore.” To turn it back on, check the box next to “C’.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/computersystem.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/computersystem.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/computersystem.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/computersystem.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/computersystem.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/computersystem.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/computersystem.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/computersystem.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/computersystem.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/computersystem.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/computersystem.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/computersystem.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/computersystem.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/computersystem.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=computersystem.wordpress.com&amp;blog=8344659&amp;post=20&amp;subd=computersystem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://computersystem.wordpress.com/2009/08/25/repair-system-restore-in-windows-xp-and-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/22b48719233abc7e8ba1386186de7e06?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bintang Taufik</media:title>
		</media:content>
	</item>
		<item>
		<title>Clean The windows Registry</title>
		<link>http://computersystem.wordpress.com/2009/08/25/clean-the-windows-registry/</link>
		<comments>http://computersystem.wordpress.com/2009/08/25/clean-the-windows-registry/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 04:37:39 +0000</pubDate>
		<dc:creator>blogbintang</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://computersystem.wordpress.com/2009/08/25/clean-the-windows-registry/</guid>
		<description><![CDATA[A Cleaning Windows registry is a neccessary thing to speed up computer system. Of course is only used when you are using as operating system. First and foremost you should know that manually editing the registry is not for the average user. The windows registry Has hundreds of thousands of entries and changing or deleting [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=computersystem.wordpress.com&amp;blog=8344659&amp;post=19&amp;subd=computersystem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A Cleaning Windows registry is a neccessary thing to speed up computer system. Of course is only used when you are using as operating system.</p>
<p>First and foremost you should know that manually editing the registry is not for the average user. The windows registry Has hundreds of thousands of entries and changing or deleting the wrong one can cause your PC to stop booting forever, Yes I said STOP BOOTING FOREVER. I tell you this so you can understand just how complex and important the registry is. Manually editing your registry is only for advanced users, Very advanced users, I only do it when I absolutly have to and only when I know exactly what I am doing and why.</p>
<p>This brings me to my own rule for working any problem in windows. The rule of three, is my personal rule. It states that anything you want to do in windows you should have three different pieces of software to achieve. I have found that no matter how good the software or how many promises they make you, no one piece of software can do the job completely. To really get things done in windows requires a multi pronged approached. If I want to clean the adware or spyware off of my system I will use three different programs, Adaware, Spybot S&amp;D, and Spyware blaster. Run them one at a time and then follow their instructions.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/computersystem.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/computersystem.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/computersystem.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/computersystem.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/computersystem.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/computersystem.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/computersystem.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/computersystem.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/computersystem.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/computersystem.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/computersystem.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/computersystem.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/computersystem.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/computersystem.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=computersystem.wordpress.com&amp;blog=8344659&amp;post=19&amp;subd=computersystem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://computersystem.wordpress.com/2009/08/25/clean-the-windows-registry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/22b48719233abc7e8ba1386186de7e06?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bintang Taufik</media:title>
		</media:content>
	</item>
		<item>
		<title>What is svchost.exe in windows system</title>
		<link>http://computersystem.wordpress.com/2009/08/05/what-is-svchost-exe-in-windows-system/</link>
		<comments>http://computersystem.wordpress.com/2009/08/05/what-is-svchost-exe-in-windows-system/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 20:32:01 +0000</pubDate>
		<dc:creator>blogbintang</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[svchost.exe]]></category>
		<category><![CDATA[windows system]]></category>

		<guid isPermaLink="false">http://computersystem.wordpress.com/?p=17</guid>
		<description><![CDATA[You are no doubt reading this article because you are wondering why on earth there are nearly a dozen processes running with the name svchost.exe. You can’t kill them, and you don’t remember starting them… so what are they? You could also use the command prompt to disable the service if you choose. In this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=computersystem.wordpress.com&amp;blog=8344659&amp;post=17&amp;subd=computersystem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You are no doubt reading this article because you are wondering why on earth there are nearly a dozen processes running with the name svchost.exe. You can’t kill them, and you don’t remember starting them… so what are they?</p>
<p>You could also use the command prompt to disable the service if you choose. In this command “trkwks” is the Service name from the above dialog, but if you go back to the tasklist command at the beginning of this article you’ll notice you can find it there as well.</p>
<p>If you’ve ever taken a look at the Services section in control panel you might notice that there are a Lot of services required by Windows. If every single service ran under a single svchost.exe instance, a failure in one might bring down all of Windows… so they are separated out.<span id="more-17"></span></p>
<p>Those services are organized into logical groups, and then a single svchost.exe instance is created for each group. For instance, one svchost.exe instance runs the 3 services related to the firewall. Another svchost.exe instance might run all the services related to the user interface, and so on.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/computersystem.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/computersystem.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/computersystem.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/computersystem.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/computersystem.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/computersystem.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/computersystem.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/computersystem.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/computersystem.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/computersystem.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/computersystem.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/computersystem.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/computersystem.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/computersystem.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=computersystem.wordpress.com&amp;blog=8344659&amp;post=17&amp;subd=computersystem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://computersystem.wordpress.com/2009/08/05/what-is-svchost-exe-in-windows-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/22b48719233abc7e8ba1386186de7e06?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bintang Taufik</media:title>
		</media:content>
	</item>
		<item>
		<title>System Cleanup On Your Computer</title>
		<link>http://computersystem.wordpress.com/2009/08/01/system-cleanup-on-your-computer/</link>
		<comments>http://computersystem.wordpress.com/2009/08/01/system-cleanup-on-your-computer/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 20:14:17 +0000</pubDate>
		<dc:creator>blogbintang</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[System Cleanup]]></category>

		<guid isPermaLink="false">http://computersystem.wordpress.com/?p=15</guid>
		<description><![CDATA[If you are using windows, you have to clean up your windows system. This is essential thing that can not be avoid. Follow these step : The start menu in the lower left hand corner of your screen click on that. Programs Menu, This will then bring up the programs menu of your computer. In [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=computersystem.wordpress.com&amp;blog=8344659&amp;post=15&amp;subd=computersystem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you are using windows, you have to clean up your windows system. This is essential thing that can not be avoid. Follow these step :</p>
<ol>
<li>The start menu in the lower left hand corner of your screen click on that.</li>
<li>Programs Menu, This will then bring up the programs menu of your computer.</li>
<li>In the programs menu scroll up to where it says accessories.</li>
<li>System Tools Option, Once you are on the accessories portion of the screen a new menu will pop up to the right of this.In this new menu find where it says system tools,</li>
<li>Once found this will then bring up a new menu as well, and in this menu is the option for Disk Cleanup. Click on this item, and it will bring up the disk cleanup dialog box, once it is up you can then click OK.</li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/computersystem.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/computersystem.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/computersystem.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/computersystem.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/computersystem.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/computersystem.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/computersystem.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/computersystem.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/computersystem.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/computersystem.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/computersystem.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/computersystem.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/computersystem.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/computersystem.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=computersystem.wordpress.com&amp;blog=8344659&amp;post=15&amp;subd=computersystem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://computersystem.wordpress.com/2009/08/01/system-cleanup-on-your-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/22b48719233abc7e8ba1386186de7e06?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bintang Taufik</media:title>
		</media:content>
	</item>
		<item>
		<title>Special B.C. computer system</title>
		<link>http://computersystem.wordpress.com/2009/07/23/special-b-c-computer-system/</link>
		<comments>http://computersystem.wordpress.com/2009/07/23/special-b-c-computer-system/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 18:54:29 +0000</pubDate>
		<dc:creator>blogbintang</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[computer system]]></category>

		<guid isPermaLink="false">http://computersystem.wordpress.com/?p=12</guid>
		<description><![CDATA[The RCMP is paying 65 per cent more to maintain an extra computer database for its officers in British Columbia, and that system still isn&#8217;t running smoothly, according to new documents released to CBC News. Records obtained through an Access to Information Act request show it costs the RCMP $22.7 million a year to run [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=computersystem.wordpress.com&amp;blog=8344659&amp;post=12&amp;subd=computersystem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The RCMP is paying 65 per cent more to maintain an extra computer database for its officers in British Columbia, and that system still isn&#8217;t running smoothly, according to new documents released to CBC News. Records obtained through an Access to Information Act request show it costs the RCMP $22.7 million a year to run two systems — one for B.C. and one for the rest of the country. If the RCMP didn&#8217;t have to support the extra database, the cost would be $13.7 million, about $9 million less. The CBC first reported in April that the RCMP&#8217;s extra system for B.C., known as PRIME, was costing taxpayers the extra $9 million a year. The RCMP has to maintain PRIME because in 2003 the B.C. government ordered the force, which is contracted to serve as its provincial police, to get on board as part of a province-wide information-sharing system among all municipal forces.</p>
<p>Mounties everywhere else in the country use a system called PROS. Both databases allow officers across any given force or jurisdiction to share information on cases by uploading photos, witness statements and other information. The new documents obtained by the CBC — a series of reports and emails — show an exact breakdown of the systems&#8217; costs. One report, drafted by Supt. Chuck Walker to brief William Elliott when he took over as RCMP commissioner in 2007, says that to run the B.C. system, it costs $1,666 for every Mountie in B.C., and that is a &#8220;best-case scenario.&#8221; It costs $1,058 per officer in the rest of the country to run their database. If all Mounties countrywide were on one single, compatible system, Walker notes that the overall cost per officer would decrease to $805.<span id="more-12"></span></p>
<p>Walker points out, though, that if the RCMP were to pull out of the B.C. system, it would have financial consequences for the B.C. municipal police forces still using the program. &#8220;The costs to the independent agencies using the system will skyrocket,&#8221; the report states.</p>
<p>Contradictions in info released</p>
<p>The recent batch of documents obtained through the Access to Information Act contradicts some of the information provided to CBC News when it first reported on the two computer systems. Then, spokespeople for the RCMP said the total cost to implement the B.C. system was about $41 million. However, a day after CBC News reported the story on April 27, an email from the RCMP&#8217;s executive director of financial management, Marty Muldoon, to Deputy Commissioner Darrell Madill and Chief Supt. Doug Lang said it actually cost $44.8 million. A further pitfall of the dual databases is that they are not integrated. In an earlier interview with CBC News, Assistant Commissioner Francois Bidal indicated the RCMP had addressed that problem by developing a program — a Police Information Portal (PIP) — to allow the two systems to interact. However, emails between RCMP communications personnel contain comments from Supt. Mario Beaulne stating that PIP will not be fully launched until next September. Beaulne&#8217;s comments also reveal that officers using the B.C. system can&#8217;t even seamlessly communicate among themselves:</p>
<p>&#8220;All PRIME users can share information, however only through PIP. PRIME users cannot exchange task workflow between district servers in B.C. — a key element of RMS [records management system] integration — nor can they see each others&#8217; files in their entirety.&#8221; As for the price of building the PIP, an April 28 email indicates it cost $4.5 million.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/computersystem.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/computersystem.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/computersystem.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/computersystem.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/computersystem.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/computersystem.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/computersystem.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/computersystem.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/computersystem.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/computersystem.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/computersystem.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/computersystem.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/computersystem.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/computersystem.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=computersystem.wordpress.com&amp;blog=8344659&amp;post=12&amp;subd=computersystem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://computersystem.wordpress.com/2009/07/23/special-b-c-computer-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/22b48719233abc7e8ba1386186de7e06?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bintang Taufik</media:title>
		</media:content>
	</item>
		<item>
		<title>Create System Restore with one click</title>
		<link>http://computersystem.wordpress.com/2009/07/02/create-system-restore-with-one-click/</link>
		<comments>http://computersystem.wordpress.com/2009/07/02/create-system-restore-with-one-click/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 12:51:40 +0000</pubDate>
		<dc:creator>blogbintang</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[system Restore]]></category>
		<category><![CDATA[Windows System Restore]]></category>

		<guid isPermaLink="false">http://computersystem.wordpress.com/?p=8</guid>
		<description><![CDATA[Using Windows System Restore assures you that you won’t lose personal data such as documents, e-mail settings and messages. However, keep in mind that data you have stored in My Documents, My Music  or My Pictures folders are not affected with this tool. I am going to introduce you one computer software that can be [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=computersystem.wordpress.com&amp;blog=8344659&amp;post=8&amp;subd=computersystem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#333333;font-family:Verdana;font-size:12px;line-height:22px;">Using <strong>Windows System Restore </strong>assures you that you won’t lose personal data such as documents, e-mail settings and messages. However, keep in mind that data you have stored in My Documents, </span><span style="color:#333333;font-family:Verdana;font-size:12px;line-height:22px;">My Music  or </span><span style="color:#333333;font-family:Verdana;font-size:12px;line-height:22px;">My Pictures folders are not affected with this tool.</span> <span style="color:#333333;font-family:Verdana;font-size:12px;line-height:22px;"><span> </span>I am going to introduce you one computer software that can be used to create Windows System restore point with a single click. </span><span style="color:#333333;font-family:Verdana;font-size:12px;line-height:22px;">The software is </span>Single Click Restore Point (SCRP).</p>
<p>Download this free computer software on http://tec-updates.blogspot.com/2008/01/download-single-click-restore-point.html.  After you download it, jus follow this article to use it.</p>
<p><span style="color:#333333;font-family:Verdana;font-size:12px;line-height:22px;">To use SCRP, you must with administrator privileges and it will automatically create a restore point for you &#8211; no need to dig through the menus. The only caveat is that you can’t name the restore points yourself, they’re all called “Created by SCRP Tool”. In my experience, SCRP does the job and makes it more convenient for less tech-savvy users.<span id="more-8"></span></span> <span style="color:#333333;font-family:Verdana;font-size:12px;line-height:22px;">To restore your computer to an earlier time in Windows XP, log in as an administrator, and then follow these steps:</span>Click Start&gt;All Programs&gt;Accessories&gt;System Tools, and then click System Restore.On the Welcome screen, click Restore my computer to an earlier time, and then click Next. You can also click on Create Restore Point to manually create a backup of the system files. This backup will appear along with the other automatically generated backups.</p>
<ul>
<li>Click Start&gt;All Programs&gt;Accessories&gt;System Tools, and then click System Restore.</li>
<li>On the Welcome screen, click Restore my computer to an earlier time, and then click Next. You can also click on Create Restore Point to manually create a backup of the system files. This backup will appear along with the other automatically generated backups.</li>
<li>On the Select a Restore Point page, select the date from the calendar that shows the point you’d like to restore to.</li>
<li>On the Confirm Restore Point Selection page, check to see if you selected the right restore point.</li>
<li>Click Next if you are ready to continue or click Back to change the restore point. The computer will automatically s</li>
</ul>
<p><span style="color:#333333;font-family:Verdana;font-size:12px;line-height:22px;">To manually create a restore point, open Advanced System Settings (by typing this into the Start Menu) and select the System Protection tab. Once there, click on Create.</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/computersystem.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/computersystem.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/computersystem.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/computersystem.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/computersystem.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/computersystem.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/computersystem.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/computersystem.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/computersystem.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/computersystem.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/computersystem.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/computersystem.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/computersystem.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/computersystem.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=computersystem.wordpress.com&amp;blog=8344659&amp;post=8&amp;subd=computersystem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://computersystem.wordpress.com/2009/07/02/create-system-restore-with-one-click/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/22b48719233abc7e8ba1386186de7e06?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bintang Taufik</media:title>
		</media:content>
	</item>
		<item>
		<title>Remote Backup</title>
		<link>http://computersystem.wordpress.com/2009/06/29/computer-backup-system/</link>
		<comments>http://computersystem.wordpress.com/2009/06/29/computer-backup-system/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 22:44:23 +0000</pubDate>
		<dc:creator>blogbintang</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Computer Backup System]]></category>
		<category><![CDATA[Remote Backup]]></category>

		<guid isPermaLink="false">http://computersystem.wordpress.com/?p=5</guid>
		<description><![CDATA[While a computer system backup can be a major undertaking if approached using legacy systems and software, modern tools like RBackup Remote Backup software can automate most elements of the task, and provide reporting and management capabilities formerly unavailable to business owners and IT managers. Download Rbackup in http://remote-backup.com RBackup includes the ability to backup [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=computersystem.wordpress.com&amp;blog=8344659&amp;post=5&amp;subd=computersystem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="left">While a <strong>computer system</strong> backup can be a major undertaking if approached using legacy systems and software, modern tools like RBackup <strong>Remote Backup</strong> software can automate most elements of the task, and provide reporting and management capabilities formerly unavailable to business owners and IT managers.</p>
<p align="left">Download Rbackup in http://remote-backup.com</p>
<p align="left">RBackup includes the ability to backup System State and Active Directory settings in Microsoft operating systems, two of the most critical components in a computer data disaster recovery process. <span id="more-5"></span></p>
<p align="left">Any computer backup system should include this functionality due to the dramatic decrease in manual system reconfiguration processes that it provides while restoring data.</p>
<p align="left">RBackup also includes our BitBackup TM file backup engine. BitBackup TM transfers only the changed portions of files during normal incremental data backup sessions.</p>
<p align="left">When compared to other file level online backup solutions, it dramatically reduces the amount of data being sent across the internet in any given session. This results in less bandwidth usage, faster backup sessions, and less disk space usage on the RBS Server.</p>
<p align="left">If you are looking for a computer system backup solution for your business or clients, RBS would like to provide you with detailed information about our products and services. With thousands of users around the world, RBS founded the internet backup industry, and still leads it in innovation, support, and service.</p>
<p align="left">
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/computersystem.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/computersystem.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/computersystem.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/computersystem.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/computersystem.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/computersystem.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/computersystem.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/computersystem.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/computersystem.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/computersystem.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/computersystem.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/computersystem.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/computersystem.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/computersystem.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=computersystem.wordpress.com&amp;blog=8344659&amp;post=5&amp;subd=computersystem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://computersystem.wordpress.com/2009/06/29/computer-backup-system/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/22b48719233abc7e8ba1386186de7e06?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bintang Taufik</media:title>
		</media:content>
	</item>
	</channel>
</rss>
