Showing posts with label Tweaky Scripts. Show all posts
Showing posts with label Tweaky Scripts. Show all posts

Friday, January 28, 2011

Making a Batch File For Disk Management


batch disk management
In previous tutorial I showed you how to create batch file for doing multiple tasks. Now in this tutorial we will create a simple batch utility file for disk management, so that the following tasks can be done.


  1. Locating bad sectors .

  2. Changing file system from FAT32 to NTFS.

  3. Disk Defragmentation.

Put the following code in batch file to do all the above tasks:

Sunday, December 19, 2010

Some Useful Greasemonkey Scripts For Facebook


greasemonkeyIn this article i am sharing some very useful Greasemonkey user scripts for Facebook users. But before proceeding it is better to get bit of knowledge about greasemonkey.
Greasemonkey
Greasemonkey is a Mozilla Firefox extension that allows users to install scripts that make on-the-fly changes to HTML web page content on the DOMContentLoaded event, which happens immediately after it is loaded in the browser (also known as augmented browsing).

Wednesday, November 10, 2010

Creating a Batch File for doing multiple Tasks


A batch file is a text file containing a series of commands intended to be executed by the command interpreter. Batch files were added to ease the work required for certain regular tasks by allowing the user to set up a batch script to automate many commands.DOS batch files have the filename extension .bat. Batch files for other environments may have different extensions, e.g. .cmd.


In this tutorial of "Tweaky Scripts" we will create a batch file to tweak the registry so the following tasks can be done:


  1. Hiding all drives
  2. Preventing access to drives
  3. Turning off autoplay
  4. Turning off automatic updates
  5. Restoring all to default

Creating a Batch File for doing multiple Tasks

A batch file is a text file containing a series of commands intended to be executed by the command interpreter. Batch files were added to ease the work required for certain regular tasks by allowing the user to set up a batch script to automate many commands.DOS batch files have the filename extension .bat. Batch files for other environments may have different extensions, e.g. .cmd.

In this tutorial of "Tweaky Scripts" we will create a batch file to tweak the registry so the following tasks can be done:
  1. Hiding all drives
  2. Preventing access to drives
  3. Turning off autoplay
  4. Turning off automatic updates
  5. Restoring all to default

Thursday, October 7, 2010

Customizing Windows XP's General Tab


cutomized xp general tab


General tab is in the system properties dialog box with your support contact information and your company's logo.


So you can change it just by using notepad and


Applying following steps:


1. Launch notepad and type the following text replacing the dummy text.

Monday, September 27, 2010

Creating Windows Based Scripts

Windows XP uses "Windows Script Host" to run scripts. There are two versions of the Windows Script Host: a Windows-based version (Wscript.exe), and a command-prompt-based version (Cscript.exe), which provides command-line switches for setting script properties. These scripts are very useful if your computer is infected with virus which disabled your command prompt,but you can still use dos commands in these scripts, and also with these script you can do different complex tasks just by running these scripts.