Tampilkan postingan dengan label Tweaking. Tampilkan semua postingan

in WHM: Service Configuration >> Apache Configuration >> Include Editor
Under Post virtualhost includes (select your Apache version) is a good place for adding htaccess stuff too.
###----------------------------------------------------###
###-> BEGIN WHM POST-VIRTUAL INCLUDES <-###
###----------------------------------------------------###

# ---
# Help IE users for better experience
# ---

## Use ChromeFrame
<IfModule mod_setenvif.c>
  <IfModule mod_headers.c>
    BrowserMatch MSIE ie
    Header set X-UA-Compatible "IE=Edge,chrome=1" env=ie
  </IfModule>
</IfModule>

## Set proxy notify for changes, choose from 2 flavors!
<IfModule mod_headers.c>
#Header append Vary User-Agent
  Header append Vary User-Agent env=!dont-vary
</IfModule>

# ---
# Cross-domain AJAX requests
# ---

## Serve cross-domain ajax requests, disabled
#<IfModule mod_headers.c>
#  Header set Access-Control-Allow-Origin "*"
#</IfModule>

# ---
# Webfont access
# ---

## Allow access from all domains for webfonts
## Or only whitelist a domain(s) "*.domain.com"

<FilesMatch "\.(ttf|otf|eot|woff|font.css)$">
  <IfModule mod_headers.c>
    Header set Access-Control-Allow-Origin "*"
  </IfModule>
</FilesMatch>

# ---
# Proper MIME type for all files (default) ok to leave?
# ---

## audio
AddType audio/ogg                      oga ogg

## video
AddType video/ogg                      ogv
AddType video/mp4                      mp4
AddType video/webm                     webm

## Proper svg serving. Required for svg webfonts on iPad
AddType     image/svg+xml              svg svgz 
AddEncoding gzip                       svgz
                                       
## webfonts                             
AddType application/vnd.ms-fontobject  eot
AddType font/truetype                  ttf
AddType font/opentype                  otf
AddType application/x-font-woff        woff

## Assorted types                                      
AddType image/x-icon                   ico
AddType image/webp                     webp
AddType text/cache-manifest            appcache manifest
AddType text/x-component               htc
AddType application/x-chrome-extension crx
AddType application/x-xpinstall        xpi
AddType application/octet-stream       safariextz

# ---
# Allow concatenation from within specific js and css files (combo)
# ---

## Ex: Inside of script.combined.js you could have
##   <!--#include file="libs/jquery-1.5.0.min.js" -->
##   <!--#include file="plugins/jquery.idletimer.js" -->
## and they would be included into this single file

# <FilesMatch "\.combined\.(js|css)$">
#         Options +Includes
#         SetOutputFilter INCLUDES
# </FilesMatch>

# ---
# Mod Deflate gzip compression
# ---

<IfModule mod_deflate.c>
SetOutputFilter DEFLATE
DeflateCompressionLevel 9

<IfModule mod_setenvif.c>
## Netscape 4.x has some problems…
BrowserMatch ^Mozilla/4 gzip-only-text/html

## Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4\.0[678] no-gzip

## MSIE masquerades as Netscape, but it is fine
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html

## NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48
## the above regex won’t work. You can use the following
## workaround to get the desired effect:

#BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html

## Don’t compress already-compressed files
  SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary
  SetEnvIfNoCase Request_URI .(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary
  SetEnvIfNoCase Request_URI .(?:avi|mov|mp3|mp4|rm|flv|swf|mp?g)$ no-gzip dont-vary
  SetEnvIfNoCase Request_URI .pdf$ no-gzip dont-vary

<IfModule mod_headers.c>
  SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s,?\s(gzip|deflate)?|X{4,13}|~{4,13}|-{4,13})$ HAVE_Accept-Encoding
  RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
</IfModule>

## End SetEnvIf
</IfModule>

## html, txt, css, js, json, xml, htc:
<IfModule filter_module>
  FilterDeclare   COMPRESS
  FilterProvider  COMPRESS  DEFLATE resp=Content-Type /text/(html|css|javascript|plain|x(ml|-component))/
  FilterProvider  COMPRESS  DEFLATE resp=Content-Type /application/(javascript|json|xml|x-javascript)/
  FilterChain     COMPRESS
  FilterProtocol  COMPRESS  change=yes;byteranges=no
</IfModule>

## Legacy versions of Apache
<IfModule !mod_filter.c>
  AddOutputFilterByType DEFLATE text/html text/plain text/css application/json
  AddOutputFilterByType DEFLATE text/javascript application/javascript application/x-javascript 
  AddOutputFilterByType DEFLATE text/xml application/xml text/x-component
</IfModule>

## webfonts and svg graphics
<FilesMatch "\.(ttf|otf|eot|svg)$" >
  SetOutputFilter DEFLATE
</FilesMatch>

## End Mod Deflate
</IfModule>

# ---
# Expires headers, better browser cache control
# ---

<IfModule mod_expires.c>
  ExpiresActive on

## Default file expires 
  ExpiresDefault                          "access plus 1 month"

## cache.appcache needs re-requests in FF 3.6
  ExpiresByType text/cache-manifest       "access plus 0 seconds"

## your document html 
  ExpiresByType text/html                 "access plus 0 seconds"
  
## data
  ExpiresByType text/xml                  "access plus 0 seconds"
  ExpiresByType application/xml           "access plus 0 seconds"
  ExpiresByType application/json          "access plus 0 seconds"

## rss feed
  ExpiresByType application/rss+xml       "access plus 1 hour"

## favicon (cannot be renamed)
  ExpiresByType image/x-icon              "access plus 1 week" 

## media: images, video, audio
  ExpiresByType image/gif                 "access plus 1 month"
  ExpiresByType image/png                 "access plus 1 month"
  ExpiresByType image/jpg                 "access plus 1 month"
  ExpiresByType image/jpeg                "access plus 1 month"
  ExpiresByType video/ogg                 "access plus 1 month"
  ExpiresByType audio/ogg                 "access plus 1 month"
  ExpiresByType video/mp4                 "access plus 1 month"
  ExpiresByType video/webm                "access plus 1 month"
  
## htc files  (css3pie)
  ExpiresByType text/x-component          "access plus 1 month"
  
## webfonts
  ExpiresByType font/truetype             "access plus 1 month"
  ExpiresByType font/opentype             "access plus 1 month"
  ExpiresByType application/x-font-woff   "access plus 1 month"
  ExpiresByType image/svg+xml             "access plus 1 month"
  ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
    
## css and javascript
  ExpiresByType text/css                  "access plus 1 week"
  ExpiresByType application/javascript    "access plus 1 week"
  ExpiresByType text/javascript           "access plus 1 week"
  
<IfModule mod_headers.c>
  Header append Cache-Control "public"
</IfModule>
  
</IfModule>

# ---
# ETag removal (default)
# ---

## Active by Default
## Since using far-future expires, no need ETags for static content
#FileETag None

# ---
# Stop screen flicker in IE on CSS rollovers
# ---

## The following directives stop screen flicker in IE on CSS rollovers
## in combination with the "ExpiresByType" rules for images, see above
BrowserMatch "MSIE" brokenvary=1
BrowserMatch "Mozilla/4.[0-9]{2}" brokenvary=1
BrowserMatch "Opera" !brokenvary
SetEnvIf brokenvary 1 force-no-vary

# ---
# Cookie setting from iframes
# ---

## Allow cookies to be set from iframes (for IE only)
## If needed, uncomment and specify a path or regex in the Location directive
<IfModule mod_headers.c>
   <Location />
     Header set P3P "policyref=\"/w3c/p3p.xml\", CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\""
   </Location>
</IfModule>

# ---
# Start rewrite engine (default)
# ---

## Active by Default
## Make sure rewrite engine is on, needed for the following rules
#<IfModule mod_rewrite.c>
#  RewriteEngine On
#</IfModule>

# ---
# Suppress or force the "www." at the beginning of URLs
# ---

## The same content should never be available under two different URLs
## Remember: Shorter URLs are sexier, rewrite "www.domain.com -> domain.com"
<IfModule mod_rewrite.c>
 RewriteCond %{HTTPS} !=on
  RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
  RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
</IfModule>

# ---
# Add/remove trailing slash to (non-file) URLs
# ---

## Google treats URLs with and without trailing slashes separately
## Forcing a trailing slash is usually preferred
## Rewrite "domain.com/foo -> domain.com/foo/"
<IfModule mod_rewrite.c>
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/|#(.*))$
  RewriteRule ^(.*)$ /$1/ [R=301,L]
</IfModule>

# ---
# Built-in filename-based cache busting
# ---

## Enable filename version revving, ex: /css/style.20110203.css to /css/style.css
<IfModule mod_rewrite.c>
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.+)\.(\d+)\.(js|css|png|jpg|gif)$ $1.$3 [L]
</IfModule>
 
# ---
# Prevent SSL cert warnings
# ---

## Rewrite secure requests properly to prevent browser SSL cert warnings
<IfModule mod_rewrite.c>
  RewriteCond %{SERVER_PORT} !^443
  RewriteRule (.*) https://example-domain-please-change-me.com/$1 [R=301,L]
</IfModule>

# ---
# Prevent 404 errors for non-existing redirected folders (default)
# ---

## Active by Default
#Options -MultiViews 

# ---
# Custom 404 page (default)
# ---

## Active by Default
## You can add custom pages to handle 500 or 403
#ErrorDocument 404 /404.html

# ---
# UTF-8 encoding
# ---

## Use utf-8 encoding for anything served text/plain or text/html
AddDefaultCharset utf-8

## Force utf-8 for a number of file formats
AddCharset utf-8 .html .css .js .xml .json .rss

# ---
# More Security
# ---

## Active by Default
#ServerTokens Prod

## "-Indexes" will have Apache block users from browsing folders without a default document
# Active by Default
#Options -Indexes

## Block access to "hidden" directories that begin with a period, ie Subversion or Git
<IfModule mod_rewrite.c>
  RewriteRule "(^|/)\." - [F]
</IfModule>

###-------------------------------------------------###
###-> END WHM POST-VIRTUAL INCLUDES <-###
###-------------------------------------------------###
byeee =))
Description: Tweaking WHM Server for Security
Rating: 4.5
Reviewer: Unknown
ItemReviewed: Tweaking WHM Server for Security
8StartButton v1.2.0 merupakan versi terbaru dari 8StartButton. 8StartButton v1.2.0 adalah software utilitas yang relatif ringan yang dapat memulihkan sistem operasi Windows 8 pada menu start, yang mungkin banyak dari sobat sudah terbiasa menggunakan tombol atau menu start tersebut. Tapi 8StartButton v1.2.0 tidak hanya menampilkan tombol atau menu start yang biasa, namun 8StartButton v1.2.0 menampilkan menu start yang memilki desain yang unik dan kaya fitur, dan tentunya tidak menurangi rasa Windows 8 sobat tapi menambah fitur dan keunikan pada Windows 8 sobat.

Screenshot :


Download :
Jika ada masalah, inbox atau mention di :
Semoga bermanfaat..
Regards, Admin - Asyazili
Description: 8StartButton v1.2.0
Rating: 4.5
Reviewer: Unknown
ItemReviewed: 8StartButton v1.2.0
My Emoticons 1.6 adalah fitur atau tambahan yang bagus untuk browser Chrome, IE dan FireFox, yang memungkinkan sobat untuk mengirim banyak smile atau emoticons dan gambar keren lainnya di layanan seperti Twitter, Facebook, Gmail. Saya sangat menyarankan semua sobat BAGAS31 untuk mencoba software yang satu ini. My Emoticons 1.6 dibagi ke dalam tiga kategori, masing-masing kategori dengan sejumlah besar sub-kategori. Seperti kata iklan itu sobat, coba dulu.. baru tau rasanya, hhee.

Screenshot : 
  • Facebook
  • Twitter
  • Gmail

Download :
Jika ada masalah, inbox atau mention di :
Semoga bermanfaat..
Regards, Admin - Asyazili
Description: My Emoticons 1.6 for Twitter, Facebook, and Gmail
Rating: 4.5
Reviewer: Unknown
ItemReviewed: My Emoticons 1.6 for Twitter, Facebook, and Gmail

TuneUp Utilities 2013 13.0.3020.7 Portable  adalah sebuah software utilities yang mempunyai banyak fungsi diantara mengoptimalkan komputer, membersihkan komputer dari file-file yang tidak berguna. Sebenarnya kemaren  saya sudah sempat posting tentang software yang satu ini, hanya saja kali ini saya akan bagikan versi portable nya yang bisa kamu gunakan tanpa perlu melakukan instalasi software. Untuk fitur dan keampuhan software ini sama dengan versi installer nya. Penasaran dengan software yang satu ini ? Mari kita coba. 


screenshoot : 


Download link:
Password :  | Status : Tested (Windows 7 32-bit)

Jika ada masalah:
Semoga bermanfaat, Admin - Ajie :)
Description: TuneUp Utilities 2013 13.0.3020.7 Portable
Rating: 4.5
Reviewer: Unknown
ItemReviewed: TuneUp Utilities 2013 13.0.3020.7 Portable
Uniblue SystemTweaker adalah produk software terbaru dari Uniblue yang dapat kita gunakan untuk men-tweaking atau men-konfigurasi windows kita. Uniblue SystemTweaker terbaru ini support dengan Windows XP, Windows Vista, Windows 7, dan Windows 8. Dengan software Uniblue SystemTweaker ini sobat dapat men-tweaking beberapa konfigurasi windows yang mana settingannya tidak ada pada windows kita. Sobat pun juga tidak perlu khawatir akan terjadinya error atau kerusakan pada windows kita, karena di dalam software ini sudah disediakan fitur System Restore.

Screenshot

Download :
Features :
"Start" menu:
  • Adjustments to display the menu icons �Start� (XP, Vista, 7): These adjustments can hide or show the icons in the "Start" menu.
  • Enable scrolling menu "Start� (XP, Vista, 7): Windows can use more than one column to display icons "Start" menu. When the scroll menu "Start� Windows saves a single column, but it adds the ability to scroll.
Control Panel:
  • Deny access to remotely administer the floppy disk / floppy disk CD-ROM (XP, Vista, 7): If remote access is enabled, other users on the network have access to your data. For safety reasons, this access can be disabled.
  • Multiple Network Load Balancing (XP, VISTA, 7): Uniform distribution network load among multiple network adapters, if any.
  • Enable notification messages Print Server (XP, Vista, 7): If this adjustment is enabled, any server notices will automatically be displayed in the form of pop-up taskbar.
  • Broadcast of information in the network to access the new shared printer (XP, Vista, 7): If this adjustment is off, shared printers are not available to other computers on the network.
  • Hide passwords for access to the file resources (XP, Vista, 7): If this adjustment is enabled, the password to access the file resources are shown as asterisks.
  • Lock printer sharing (XP): This block allows you to restrict the use of the printers connected to your PC via the network.
  • Disable file sharing (XP): If this adjustment is off, locked access shared files from other computers on the network.
  • Hide my computer in the list of web browsers (XP, Vista, 7): Hides your computer from other users on your network.
  • Allow remote access to the registry for all types of users (XP): If this adjustment is enabled, access to your registry is open to all users.
  • Display statistics of network errors (XP, Vista, 7): Go to the network connection tab is added with additional statistics.
Multimedia:
  • Enable DVD Player, in Windows Media (XP): Enables Windows Media Player to open and play the DVD.
  • Automatic start inserted CD with data / audio CD (XP): If this adjustment is enabled, you are automatically start when the CD.
  • Enable faster access to media files with the extension AVI (XP): quicker access to movies in a folder with the extension AVI by preventing loading of unnecessary data.
Startup and shutdown Windows:
  • Enable password caching Windows (XP, Vista, 7): If this adjustment is off, the user will have to enter your Windows password every time you try to access a password-protected resource.
  • Allow downloading desktop runtime login script (XP, Vista, 7): If this adjustment is enabled, the Windows desktop is loaded even before finalizing the login script.
  • Clear the paging file on every shutdown Windows (XP, Vista, 7): If this adjustment is enabled, used for virtual memory file is deleted at shutdown.
Context menu:
  • Suppress the default context menu in Windows Explorer Windows (XP, Vista, 7): By default, a shortcut menu appears when you right-click on the desktop or in a window
  • Explorer Windows. When this adjustment menu access is performed.
  • Add the option "Open with" in the menu of Windows (XP, Vista, 7): The "Open with" to select a program to open certain files.
  • Suppress the context menu from the right-click the taskbar Windows (XP, Vista, 7): Hides the menus that appear when you right-click on the taskbar.
  • Add the option "Open Command Prompt" in the menu of Windows (XP, Vista, 7): This adjustment adds a context menu option "Open Command Prompt" to the directory in which you press the right mouse button to display the menu.
More Search Options Windows:
  • Automatic restart of Windows blue screen error (XP, Vista, 7): Automatically restart Windows in response to a critical system failure.
  • Suppress sound PC speaker system error (XP, Vista, 7): When an error is detected the PC speaker emits a warning sound.
  • This adjustment allows you to turn off the sound.
  • Display more detailed information in the Device Manager Windows (XP): The Device Manager displays additional information in the section "Information" tab "Properties".
  • Run the Windows desktop as a separate process (XP): Normally, Windows runs one process for desktop Windows, Taskbar and all other tasks Explorer. This means that in case of failure of this process all the other above-mentioned tasks will also be closed. If you run the Windows desktop in a separate process, it will increase its stability.
  • Maintain the productivity of software Print Job (XP, Vista, 7): This adjustment ensures that, for what would be the print job does not slow down the programs, taking too large a share of system resources.
Administration:
  • Automatically set the focus to the window when you move the mouse over them (XP, Vista, 7): With this tuning the operating system activates the window when you move the mouse pointer over it.
  • Display tips for buttons "Close", "Open" and "Close� (XP, Vista, 7): By default, when you move the mouse pointer on the "Close", "Open" or "Close" in the upper right corner of any window , you will be prompted with information about the button. This adjustment allows you to turn off the display mechanism such clues.
  • Use the attached web files and folders (XP, Vista, 7) to the hard disk HTML documents often contain a large number of files associated with the main document HTML. This adjustment combines the main HTML file with all related files, so that when the main document to another location, all related files are copied with it.
  • Use Windows Explorer when you open "My Computer� (XP, Vista, 7): If you open "My Computer" with Explorer, you get easy navigation bar. If this adjustment is enabled, the window of "My Computer" is always equipped with a navigation bar.
With SystemTweaker you can:
  • Streamline the Start and Control Panel menu to your taste
  • Adjust network settings to boost functionality and increase security
  • Tweak Windows start-up and shutdown rules
  • Customize right-click menu options
  • Access detailed system information

Jika ada masalah, hubungi saya di :
Semoga Bermanfaat :)
Regards, Admin - Aditya Eka
Description: Uniblue SystemTweaker 2013 2.0.7.0 Full Serial
Rating: 4.5
Reviewer: Unknown
ItemReviewed: Uniblue SystemTweaker 2013 2.0.7.0 Full Serial

Ashampoo WinOptimizer 1.0 2013 Full

Senin, 28 Januari 2013
Posted by Unknown
Ashampoo WinOptimizer 1.0 2013 Full - Mungkin anda tidak asing dengan software yang satu ini. Ya anda benar, Ashampoo WinOptimizer adalah sebuah software utilities yang fungsi nya hampir mirip dengan Tuneup Utilities 2013 13.0.3 Full Patch yaitu untuk menjaga, merawat, dan mengoptimalkan kinerja komputer. Selain itu Ashampoo WinOptimizer juga memiliki banyak fitur yang tak kalah bagusnya dengan Tuneup Utilities 2013 . Penasaran ? Silahkan dicoba :)

screenshoot :

Download link:
Password :  | Status : Tested (Windows 7 32-bit)

Jika ada masalah:
Semoga bermanfaat, Admin - Ajie :)
Description: Ashampoo WinOptimizer 1.0 2013 Full
Rating: 4.5
Reviewer: Unknown
ItemReviewed: Ashampoo WinOptimizer 1.0 2013 Full
MiniTool Partition Wizard adalah sebuah software yang dapat kita gunakan untuk membuat dan mengatur partisi yang ada pada harddisk kita. Sebenarnya, fitur partisi sudah ada pada Windows 7 dan Windows 8, namun dengan software MiniTool Partition Wizard ini sobat bisa mengatur dan membuat partisi lebih mudah lagi. Software MiniTool Partition Wizard ini juga memiiki fitur yang sangat lengkap, seperti Format Partition, Delete Partition, Move/Resize Partition, Extend Partition, Merge Partition, Split Partition, Copy Partition, dan masih banyak lagi.

Screenshot

Download :
Jika ada masalah, hubungi saya di :
Semoga Bermanfaat :)
Regards, Admin - Aditya Eka
Description: MiniTool Partition Wizard Server Edition 7.7 Full Serial
Rating: 4.5
Reviewer: Unknown
ItemReviewed: MiniTool Partition Wizard Server Edition 7.7 Full Serial
Advanced SystemCare Pro - adalah software tweaking atau tergolong juga sebagai software utilities. Sebutan tersebut karena sesuai dengan fungsinya, yaitu sebagai tweaking alias sebagai software pemulih kinerja PC/Laptop anda. Kenapa memulihkan ? ya, itu karena Advanced SystemCare Pro ini memang benar-benar dapat anda gunakan untuk mengembalikan kinerja optimal perangkat anda. Sehingga perangkat anda akan selalu ada pada kinerja yang terbaik. Hal tersebut karena Advanced SystemCare Pro ini berfungsi sebagai pembersih, yaitu membersihkan sampah seperti junk file yang berada pada system anda jika hal ini di biarkan akan mempengaruhi kinerja komputer anda. Selain itu Advanced SystemCare Pro juga berfungsi sebagai alat yang mampu merecovery registry perangkat anda.

Screen Shoot:

Features:
  • Added Action Center to ensure PC security and better performance
  • Added cleaning for DivX Player 9.0, Norton AntiVirus 20.2.0.19, Spybot Search & Destroy 2.0, Adobe Reader 11.0, WinPatrol 26.0, TeamViewer 8.0, ZoneAlarm Free 11.0, Google Earth 7.0, Google Chrome 23.0, Skype 6.0, etc.
  • Improved PC Health Module for smarter PC health monitoring
  • Improved performance in Malware Removal?�Disk Scan?�System Optimization?�Disk Defragment, and Internet Boost
  • Improved User Interface for easier and simpler use
  • Improved Toolbox for simpler and more effective maintenance
  • Updated database for Surfing Protection, Driver Manager, Privacy Sweep
  • Updated IObit Uninstaller with improved UI and toolbar uninstall ability
  • Added more supported languages
  • Fixed bugs in previous version
Download link:
Password :  | Status : Tested (Windows 7 32-bit)

Jika ada masalah:
  • Mention via twitter: @Ervan
  • Atau tinggalkan komentar di bawah
Semoga bermanfaat...
    Description: Advanced SystemCare Pro 6.1.9.214 Full Serial
    Rating: 4.5
    Reviewer: Unknown
    ItemReviewed: Advanced SystemCare Pro 6.1.9.214 Full Serial

    Tuneup Utilities 2013 13.0.3 Full Patch

    Kamis, 17 Januari 2013
    Posted by Unknown
    Tuneup Utilities 2013  adalah sebuah software utilities yang mempunyai banyak fungsi diantara mengoptimalkan komputer, membersihkan komputer dari file-file yang tidak berguna. Tuneup Utilities ini sebenarnya hampir mirip dengan Uniblue SpeedUpMyPC, yang membedakan Tuneup Utilities disertai dengan fitur customize windows, jadi kamu bisa oprek tampilan komputer mu dengan menggunakan software ini.

    screenshoot : 



    Download link:


    Jika ada pertanyaan silahkan hubungi saya di :


    Semoga bermanfaat, Admin - Ajie :)
    Description: Tuneup Utilities 2013 13.0.3 Full Patch
    Rating: 4.5
    Reviewer: Unknown
    ItemReviewed: Tuneup Utilities 2013 13.0.3 Full Patch
    Advanced SystemCare Ultimate - adalah software utilities yang sudah sangat populer di kalangan pengguna komputer di dunia. Ini di karenakan software ini telah teruji mampu menoptimalkan dan meningkatkan kinerja komputer. Software ini juga dapat anda gunakan untuk membersihkan komputer anda dari file sampah seperti junk file, broken shortcut, adware, malware yang dapat menghambat kinerja komputer anda. Tentunya anda pernah mengalami komputer hang dan lemot kinerjanya kan, kini saya beri solusi untuk masalah anda. Karena dengan Advanced SystemCare Ultimate ini komputer anda akan selalu dalam kondisi terbaiknya.

    Screen Shoot:

    Download link:
    Password :  | Status : Tested (Windows 7 32-bit)

    Jika ada masalah, mention saya di twitter atau tinggalkan komentar di bawah.
    Semoga bermanfaat...
    Description: Advanced SystemCare Ultimate 6.0.8.2 Full Patch
    Rating: 4.5
    Reviewer: Unknown
    ItemReviewed: Advanced SystemCare Ultimate 6.0.8.2 Full Patch
    Uniblu PowerSuite - adalah software utiliti atau tweaker yang tentunya berfungsi sebagai aplikasi yang menyehatkan atau menyegarkan kondisi PC anda. Dengan menggunakan software ini, kondisi yang selalu prima pada PC anda akan anda dapatkan, anda pun akan merasakan perbedaan yang signifikan dari kinerja PC anda. Itu di karenakan Uniblue PowerSuite ini akan membantu membersihkan PC anda dari sampah, junk files, broken shortcut, dan masih banyak lagi. Tentunya menyenangkan bukan, kalau PC kita selalu dalam kondisi terbaiknya. Terhindar dari blank, dan macam-macam masalah pada PC adalah dambaan dari setiap anda yang selalu ingin cepat melakukan pekerjaan. Jadi, apakah anda membutuhkan software ini..?

    Screen Shoot:
    Download link:
    Password :  | Status : Tested (Windows 7 32-bit)

    Jika ada masalah, tanyakan di twitter, atau tinggalkan komentar di bawah.
    Description: Uniblue PowerSuite Pro 2013 4.1.5 Final Full Serial
    Rating: 4.5
    Reviewer: Unknown
    ItemReviewed: Uniblue PowerSuite Pro 2013 4.1.5 Final Full Serial

    SUPERAntiSpyware Professional - adalah software utilities yang berfungsi melindungi perangkat komputer anda dari serangan malware, spyware, trojan, dll. Apalagi bagi anda yang sering berselancar di internet, pasti sering sekali di hadapkan dengan masalah mengenai spyware yang diam-diam menyusup kedalam komputer anda. Sehingga hal tersebut menggangu kinerja komputer anda, bahkan kadang ada aplikasi yang tidak bisa di jalankan akibat serangan malware. Tapi sekarang anda tidak perlu kuatir lagi, karena saya telah memberikan solusi tepat untuk masalah spyware, malware dan trojan. Jadi apakah anda membutuhkan software seperti ini...?

    Screen Shoot:

    Download link:
    Password :  | Status : Tested (Windows 7 32-bit)

    Jika ada masalah, tinggalkan komentar di bawah. Semoga bermanfaat.
    Description: SUPERAntiSpyware Professional 5.6.10 Full Keygen
    Rating: 4.5
    Reviewer: Unknown
    ItemReviewed: SUPERAntiSpyware Professional 5.6.10 Full Keygen

    SpeedFan 4.47

    Minggu, 23 September 2012
    Posted by Unknown
    SpeedFan - adalah sebuah freeware yang dapat digunakan untuk memonitoring voltage (tegangan) yang sedang digunakan oleh perangkat komputer anda. Selain itu fungsi utama dari SpeedFan adalah untuk memonitoring kecepatan kipas dan suhu komputer dengan chip monitor hardware. SpeedFan ini bahkan dapat mengakses S.M.A.R.T info dan menampilkan suhu hard disk. SpeedFan ini juga mendukung SCSI. SpeedFan bahkan bisa mengubah FSB pada beberapa perangkat keras. Salah satu fitur terpenting pada SpeedFan ini adalah kemampuannya dalam mengakses sensor suhu digital dan dapat di gunakan untuk mengatur kecepatan kipas sesuai kebutuhan, sehingga dapat mengurangi kebisingan. SpeedFan dapat menamukan hampir semua chip hardware yang terhubung ke SMBus (System Management Bus atau sebuah subset dari protokol I2C ). SpeedFan ini dapat bekerja dengan baik di windows 9x, ME, NT, 2000, 2003, Windows XP, Windows Vista, Windows 7, dan Windows 8.

    Screen Shoot:

    Download link:
    Password :  | Status : Tested (Windows 7 32-bit)

    Features:
    • almost any number of South Bridges
    • almost any number of hardware monitor chips
    • almost any number of hard disks
    • almost any number of temperature readings
    • almost any number of voltage readings
    • almost any number of fan speed readings
    • almost any number of PWMs
    Jika ada masalah, tinggalkan komentar di bawah. Semoga bermanfaat...
    Description: SpeedFan 4.47
    Rating: 4.5
    Reviewer: Unknown
    ItemReviewed: SpeedFan 4.47
    TuneUp Utilities - adalah sebuah software utiliti yang sangatlah popular. Bahkan saya yakin kalau sobat BAGAS31 sudah pada tahu apa fungsi dari software ini. Baru beberapa hari kemarin saya share software serupa yaitu Ashampoo WinOptimizer. Fungsinya memang tidak jauh berbeda. Tapi TuneUp Utilities lebih dikenal dan dipercaya oleh para professional untuk menjaga kinerja komputernya. Ya, Professional saja memakai software ini masa anda tidak ingin mengikuti jejak mereka demi kinerja komputer anda selalu prima dan terhindar dari sampah - sampah yang terkadang membuat crash system.

    Screen Shoot:

    Download link:
    Password :  | Status : Tested (Windows 7 32-bit)

    Features:
    • 1-Click Maintenance optimizes your PC in 5 minutes
    • Disk Cleaner 2013 cleans over 150 programs
    • Live Optimization 2.0 puts a stop to resource hogs
    • Economy Mode extends battery life
    • Over 30 helpful tools in one package
    Jika ada masalah, tinggalkan komentar di bawah. Semoga bermanfaat...
    Description: TuneUp Utilities 2013 13.0 Full Patch
    Rating: 4.5
    Reviewer: Unknown
    ItemReviewed: TuneUp Utilities 2013 13.0 Full Patch

    Ashampoo WinOptimizer 2012 8.1.4 Full Serial

    Selasa, 18 September 2012
    Posted by Unknown
    Ashampoo WinOptimizer - adalah sebuah software tweaking yang dapat membantu anda dalam hal menjaga kinerja dan performa PC/laptop anda. Sebenarnya ada banyak software semacam ini, tapi untuk besutan Ashampoo ini telah banyak yang membuktikan kinerjanya dan terbukti ampuh dalam menjaga kinerja PC agar tetap prima dan selalu dalam kondisi terbaiknya. Cara kerja software ini tentunya adalah dalam hal membersihkan sampah-sampah pada system yang kadang membuat program yang kita jalankan crash dan sebagainya. Tapi tenang saja software ini akan membantu masalah anda.


    Screen Shoot:

    Download link:
    Password :  | Status : Tested (Windows 7 32-bit)

    Features:
    • Predictive disk defragmenter
    • AntiSpy module
    • Context Menu Manager
    • Favorites Tab
    • Improved One-Click Optimizer
    • More effective Drive Cleaner
    • More comprehensive Registry Optimizer
    • Internet Cleaner
    • Many new Tweaking Tool options

    Jika adamasalah, tinggalkan komentar di bawah. Semoga bermanfaat...
    Description: Ashampoo WinOptimizer 2012 8.1.4 Full Serial
    Rating: 4.5
    Reviewer: Unknown
    ItemReviewed: Ashampoo WinOptimizer 2012 8.1.4 Full Serial

    Advanced SystemCare with Antivirus 2013 - adalah software tweaking yang sudah dikombinasikan dengan anti virus. Sebenarnya sudah lama software ini di rilis, yaitu sekitar 1 bulan yang lalu. Tapi baru sekarang bisa saya bagikan kepada sobat BAGAS31. Mungkin beberapa waktu yang lalu saya sudah share Advanced SystemCare 5, tapi kini telah hadir yang terbaru dan dengan inovasi yang baru pula. Jadi, software ini selain untuk menjaga peforma komputer anda dengan cara membersihkan sampah dari system anda, tetapi juga bisa melindungi komputeranda dari serangan virus yang setiap kali mengancam komputer anda. Jadi apakah anda ingin teknologi dengan inovasi terbaru ini, untuk menikmatinya silahkan download...!



    Screen Shoot:

    Download link:
    Password :  | Status : Tested (Windows 7 32-bit)

    Jika ada masalah laporkan di:
    • Facebook: Ervan
    • Atau tinggalkan komentar di bawah
    Semoga bermanfaat...
    Description: Advanced SystemCare with Antivirus 2013 Full Serial
    Rating: 4.5
    Reviewer: Unknown
    ItemReviewed: Advanced SystemCare with Antivirus 2013 Full Serial

    Uniblue SpeedUpMyPC 2013 Full Serial

    Kamis, 09 Agustus 2012
    Posted by Unknown
    Uniblue SpeedUpMyPC - adalah sebuah software utiliti yang berfungsi tidak jauh beda dengan Advanced System Care yang saya share beberapa hari yang lalu. Yaitu membantu anda dalam menjaga kinerja PC anda tetap dalam kondisi yang prima. Dengan software ini registery anda akan rapi dan akan menghapus invalid registery yang hanya akan memperlambat kinerja PC anda jika tidak dibuang. Selain itu SpeedUpMyPC juga berguna untuk membersihkan komputer anda dari junk file yang hanya mengotori System dan hardisk anda. Bagaimana, tentunya anda ingin bukan kalau komputer kesayangan anda selalu dalam performa terbaiknya. Maka dari itu jangan ragu lagi untuk mendownloadnya...!




    Screen Shoot:

    Download link:
    Password :  | Status : Tested (Windows 7 32-bit)

    Jika ada masalah laporkan di:
    • Facebook: Ervan
    • Atau tinggalkan komentar di bawah
    Semoga bermanfaat...
    Description: Uniblue SpeedUpMyPC 2013 Full Serial
    Rating: 4.5
    Reviewer: Unknown
    ItemReviewed: Uniblue SpeedUpMyPC 2013 Full Serial
    Advanced System Care - adalah sebuah software utiliti yang wajib ada dikomputer anda. Software yang berfungsi untuk membantu meningkatkan kinerja PC anda. Cara kerja software ini adalah dengan cara membersihkan sampah - sampah yang ada di PC anda seperti junk file, cookies, cache, merapikan registery, juga dapat berfungsi untuk memerangi spyware, adware, trojan, keylogger, bots worm, dll. Di versi terbaru ini memang tidak terlalu mencolok perbedaannya dengan versi sebelumnya, hanya menambahkan data base saja. Oke, kalau anda ingin komputer sobat selalu dalam kondisi prima di rekomendasikan untuk download...!




    Screen Shoot:

    Download link:
    Password :  | Status : Tested (Windows 7 32-bit)

    Jika ada masalah laporkan di:
    • Facebook: Ervan
    • Atau tinggalkan komentar di bawah
    Semoga bermanfaat...
    Description: Advanced System Care Pro 5.4 Full Serial
    Rating: 4.5
    Reviewer: Unknown
    ItemReviewed: Advanced System Care Pro 5.4 Full Serial
    Mungkin, sebagian masih asing dengan Software yang satu ini. Apa itu SysTweak RegClean Pro ? SysTweak RegClean Pro adalah Software Utilities ciptaan SysTweak yang dapat sobat gunakan untuk memperbaiki Registry yang sudah tidak Valid atau Rusak yang ada di dalam Komputer sobat. Tidak hanya dapat memperbaiki Registry, SysTweak RegClean Pro ini juga dapat men-Defrag Registry sehingga kinerja Komputer sobat akan meningkat. Software ini telah mendapat banyak sekali penghargaan atau Awards karena Kinerjanya yang sangat bagus. Penghargaan tersebut diantaranya adalah Microsoft Gold Partner.

    Screenshot :

    Download : (Link Fixed - 4 Desember 2012)
    How to Install :
    1. Install SysTweak RegClean Pro 6.21 seperti biasa
    2. Setelah Instalasi selesai, jangan di-buka dulu Softwarenya
    3. Copy "RegCleanPro.dll" dari dalam folder Crack
    4. Lalu Paste di folder Instalasi SysTweak RegClean Pro
      Default -> C:\Program Files\RegClean Pro\
    5. Selesai :D
    Features :
    • Faster system speed
    • Smooth operation
    • A more stable system
    • Fewer error messages
    • Safe and reliable
    Jika ada masalah, sobat dapat menghubungi saya di :
    Semoga Bermanfaat :D
    Regards, Admin - Aditya Eka
    Description: SysTweak RegClean Pro 6.21 Full Crack
    Rating: 4.5
    Reviewer: Unknown
    ItemReviewed: SysTweak RegClean Pro 6.21 Full Crack

    PCMedik 6.7.9.2012 Full Patch

    Rabu, 11 Juli 2012
    Posted by Unknown
    Yuk, kita sambut update terbaru dari PCMedik. Ditahun 2012 ini, dia sudah beberapa kali merilis versi terbarunya, namun versi 6.7.9.2012 merupakan versi yang paling baru. Fungsi dari PCMedik 6.7.9.2012 Full Patch adalah membenahi sistem komputer yang mulai error yang biasanya menyebabkan Crash. Sehingga dapat mempercepat kinerja PC. Untuk cara menggunakannya, Sobat tinggal menggeser tombol ke arah tulisan "Heal & Boost" kemudian restart PC. Selebihnya, PCMedik 6.7.9.2012 Full Patch akan bekerja untuk Sobat. Bagaimana? Patut untuk dicoba.


    Screenshot:


    Download:
      Password :  | Status : Tested (Windows 7)
    Jika ada masalah, hubungi:
    Semoga bermanfaat :D

    Description: PCMedik 6.7.9.2012 Full Patch
    Rating: 4.5
    Reviewer: Unknown
    ItemReviewed: PCMedik 6.7.9.2012 Full Patch
    Welcome to My Blog

    Popular Post

    Labels

    Followers

    - Copyright © 2013 shad0w-share | Designed by Johanes Djogan -