Tuesday, February 6, 2018

Steps to Create Bootable Pen drive using by CMD

CMD is available on all of the windows computers, so you would not have to worry about downloading any new package or software to make your pen drive bootable. It is a bit lengthy process but it traditional method and always works:
Instruction=
                            ( -> ) Press the space key on the keyboard.
Ø  Press Windows + R

download.jpg

ii) Open start menu, search cmd, right click and click run as administrator.
ii) Open task manager, click on file -> new task -> Create this task with administrator privileges, type cmd and hit enter.
1.   Connect your pen drive to your computer.
2.   Type diskpart and press enter. (This will open the windows inbuilt disk part utility which is used to manage the storage on your computer)  

                                    
  DiskPart CMD
3.   Type list->disk and press enter. This will list all the storage device available on your computer.
DiskPart CMD - List Disk
4.   Choose your pen drive. For that type select->disk->1 and press enter. (Here it is disk 1. In your computer it may differ so choose wisely)

DiskPart CMD - Select Disk
5.   Type clean and press enter. This will erase all data from your pen drive.
DiskPart CMD - Clean Disk
6.   Type create->partition->primary and press enter.

DiskPart CMD - Create Primary Partition
7.   Type select->partition->1 and press enter. This will choose the partition we just created.
DiskPart CMD - Select Partition
8.   Type format=fs->ntfs->quick and press enter. This will perform a quick format with the NTFS file system. (Windows use NTFS file system for storage)
DiskPart CMD - Format NTFS
9.   Type active and press enter. This will mark your primary partition active.
DiskPart CMD - Mark Partition Active
10.         Type exit and press enter to exit disk part and then close the command

DiskPart CMD - Exit
11.         Now copy all the data from Windows installation disk to your pen drive.
copy files from drive to usb device for bootable usb-min_zpsyctk37cx.jpg

12.                Now your pen drive is bootable having desired windows installation.

Monday, April 25, 2016

How to install dot net 3.5 offline on windows 10




Windows 8 and 8.1 comes with .NET framework 4.5 pre-installed, but .Net framework is not installed. many apps  require the .NET framework v3.5 installed to run along with 4.5. These apps will not run unless you will install the required version. When you try to run any such app, Windows 8 and 8.1 will prompt you to download and install .NET framework 3.5 from the Internet. if you have not internet connection than you can use this Method to install .Net Framework 3.5.




Step 1 :
Go To Control Panel then choose Programs.
Step 2 :
Click Turn Windows features on or off, and the user will see window as image below.







Step 3:
The User can enable this feature by click on .NET Framework 3.5 (include .NET 2.0 and 3.0) select it and click OK. After this step, it will download the entire package from internet and install the .NET Framework 3.5 feature.






But if the user does not have an internet connection, this steps can not be applied.


The user still can enable this feature in offline mode if the user has Windows 8 DVD or ISO image.

How To Do:

The following are the steps to enable .NET Framework 3.5 (include .NET 2.0 and 3.0) feature in offline mode:

Step 1:


Insert Windows 8 DVD or mount ISO image. The source of this feature can be found in folder E:\sources\sxs. (In this case E: the user’s drive letter on which the user has loaded Windows 8 Media.)


Step 2:

Open CMD.EXE with Administrative Privileges.



Step 3: 
Run the following command Dism.exe /online /enable-feature /featurename:NetFX3 /All /Source:E:\sources\sxs /LimitAccess, and hit Enter.


how to install offline dot net 3.5 on windows 8



After completing the installation of .NET Framework 3.5 you can see that the feature is enabled.


To save your time, I have Share a simple batch file which will save your time and will find the inserted installation media automatically.



@echo off
Title .NET Framework 3.5 Offline Installer
for %%I in (D E F G H I J K L M N O P Q R S T U V W X Y Z) do if exist "%%I:\\sources\install.wim" set setupdrv=%%I
if defined setupdrv (
echo Found drive %setupdrv%
echo Installing .NET Framework 3.5...
Dism /online /enable-feature /featurename:NetFX3 /All /Source:%setupdrv%:\sources\sxs /LimitAccess
echo.
echo .NET Framework 3.5 should be installed
echo.
) else (
echo No installation media found!
echo Insert DVD or USB flash drive and run this file once again. 
echo.
)
pause


Download the file, extract it from the ZIP archive to the Desktop, right click it and choose Run as administrator. The file will install .NET Framework 3.5 automatically after finding the drive letter of your Windows 8 installation media.



To Get Computer AMC Service in New Delhi Please 

Contact to :- SAS Techvision

how to install offline dot net 3.5 on windows 8




Windows 8 and 8.1 comes with .NET framework 4.5 pre-installed, but .Net framework is not installed. many apps  require the .NET framework v3.5 installed to run along with 4.5. These apps will not run unless you will install the required version. When you try to run any such app, Windows 8 and 8.1 will prompt you to download and install .NET framework 3.5 from the Internet. if you have not internet connection than you can use this Method to install .Net Framework 3.5.




Step 1 :
Go To Control Panel then choose Programs.
Step 2 :
Click Turn Windows features on or off, and the user will see window as image below.






Step 3:
The User can enable this feature by click on .NET Framework 3.5 (include .NET 2.0 and 3.0) select it and click OK. After this step, it will download the entire package from internet and install the .NET Framework 3.5 feature.






But if the user does not have an internet connection, this steps can not be applied.


The user still can enable this feature in offline mode if the user has Windows 8 DVD or ISO image.

How To Do:

The following are the steps to enable .NET Framework 3.5 (include .NET 2.0 and 3.0) feature in offline mode:

Step 1:


Insert Windows 8 DVD or mount ISO image. The source of this feature can be found in folder E:\sources\sxs. (In this case E: the user’s drive letter on which the user has loaded Windows 8 Media.)


Step 2:

Open CMD.EXE with Administrative Privileges.



Step 3: 
Run the following command Dism.exe /online /enable-feature /featurename:NetFX3 /All /Source:E:\sources\sxs /LimitAccess, and hit Enter.


how to install offline dot net 3.5 on windows 8



After completing the installation of .NET Framework 3.5 you can see that the feature is enabled.


To save your time, I have Share a simple batch file which will save your time and will find the inserted installation media automatically.



@echo off
Title .NET Framework 3.5 Offline Installer
for %%I in (D E F G H I J K L M N O P Q R S T U V W X Y Z) do if exist "%%I:\\sources\install.wim" set setupdrv=%%I
if defined setupdrv (
echo Found drive %setupdrv%
echo Installing .NET Framework 3.5...
Dism /online /enable-feature /featurename:NetFX3 /All /Source:%setupdrv%:\sources\sxs /LimitAccess
echo.
echo .NET Framework 3.5 should be installed
echo.
) else (
echo No installation media found!
echo Insert DVD or USB flash drive and run this file once again. 
echo.
)
pause


Download the file, extract it from the ZIP archive to the Desktop, right click it and choose Run as administrator. The file will install .NET Framework 3.5 automatically after finding the drive letter of your Windows 8 installation media.


Saturday, August 15, 2015

Top Best Autosurf Traffic exchanges Website List

            It will help to Boost website Alexa Rank and SEO







Free Custom Referral
Get free traffic from organic sources like Google, social media source or from custom URL
Real Human Visitors
Real traffic from real people that is trackable by Google Analytics, goo.gl, bit.ly, and more. No bots    


 





TRAFFIC EXCHANGES - Autosurf and Manual Surf


traffic exchange is a type of website which provides a service for webmasters in exchange for traffic. It is similar to the autosurf concept with the exception that traffic exchanges usually use a manual rotation.

traffic exchange website receives website submissions from webmasters that join traffic exchange networks. The person who submitted the website then has to browse other member sites on the exchange program to earn credits, which enable their sites to be viewed by other members through the surf system. This increases the number of visitors to all the sites involved.

Exchanges enforce a certain credit ratio, which illustrates the amount of websites the surfer must view in order to receive one hit through the program for their promoted website. Many sites offer the ability to upgrade one's membership level for a more equal credit ratio.
As the viewers are all website owners or affiliates, it is possible that some might find certain member sites interesting and thus make note of them on their own sites, sending more traffic their way. Most traffic programs also impose a time limit when members are browsing, ranging from 10 seconds to 60 seconds. Some incorporate the use of captcha to ensure user interaction.

Almost all traffic exchange programs are free, although many of them offer special features to paid members and offer credits for purchase. Almost all traffic exchange programs encourage users to build their own referral networks, which in turn increases the referrers' amount of credits.

The traffic generated in a traffic exchange can be leveraged by using a downline builder to assist the user in building a referral network in the many different traffic exchanges.

In practice, traffic exchange programs are generally used by small business owners or marketers who either want free advertising or use the exchange programs for low-budget advertisement campaigns.

Most people use Traffic Exchange programs to increase their site visit rate. Traffic Exchange programs offer both the Auto Surf and Manual Surf options with a timing of 3 to 60 seconds. An 'autosurf' program requires no human intervention to rotate the sites in the database, and is used primarily to inflate the total number of site hits. This practice is rather controversial as it may skew the results of website popularity. People's main reason behind joining a Traffic Exchange program is to promote products and services to like minded marketers. A factor which may negatively influence the ranking is the Bounce Rate. If a website or blog has a high bounce rate then it will be considered that people are not interested in the content. The Bounce Rate is calculated by the average rate a visitor stayed on the site. So whereas the Traffic Exchange sites increase the site visit rate, on the other hand they also increase the bounce rate.

The key to using traffic exchanges is understanding that the person will only be viewing your site for 10–20 seconds. Rather than sending the person to your website, you should be sending them to a specific advertisement designed for traffic exchanges. Use this advertisement to create curiosity about your site. The most effective are squeeze pages or splash pages, which have a simple headline, description, and opt-in form for an autoresponder.. Then the surfer can easily type their email address in and receive more information about your product or services at a later time. A main goal of using traffic exchanges should be to build your personal list of business prospects for now and future endeavors