Showing posts with label network. Show all posts
Showing posts with label network. Show all posts

Wednesday, September 14, 2016

Create Teaming windows server intel network card

Create Teaming windows server intel network card


Here is  a bash script to create Teaming with intel network card, on windows Server





First you have to install Intel PROSet for Windows 

Then create a bat file and put on the flowing script.


@echo off
REM ###########################################################################
REM Script to create Teaming for Intel Network card
REM Version : V1
REM ###########################################################################


REM Go on INTEL folder
Cd "C:Program FilesIntelDMIXCL"
REM Enumerate Intel cards
set _scmd=PROSetCL.exe adapter_enumerate

REM Enumerate Intel cards
FOR /f "tokens=1 delims=)" %%G IN (%_scmd% ^|find "Intel") DO call :concat %%G

REM Remove addition information that we dont need
set myvar=%myvar:~0,3%


REM Create Teaming
PROSetCL.exe Team_Create %myvar% IntelTeaming AFT


REM concatenate index of intel cards
:concat
set myvar=%myvar%%1,

Available link for download

Read more »

Wednesday, September 7, 2016

How to Fix Network Adapter Drivers and Make Internet Running

How to Fix Network Adapter Drivers and Make Internet Running


No Driver for Network Adapter. How Do I Get My Internet Running?


"I just installed Windows 8 on my brand new build. Its telling me Im missing network adapter drivers and therefore cannot connect. How do I get the necessary drivers without internet? Seems like a vicious circle. And for those wondering, I posted this from my phone. Im using a hardline for my computer. No WiFi. Help!"

This is really a common problem for those who dont have a driver disc which came with the Windows system.  After a clean Windows install/restore, the most ordinary gadget to make computer running is the internet access, then all can be down on the internet. I mean, you can download needed programs, search for needed information, etc.

But as is said in the above, if there is no drivers, you cannot connect to the internet; Without the internet connection, you are unable to download drivers on your computer. What a vicious circle!

How to Fix Network Driver Problems?


We can fix all drivers but network drivers by Windows Update, Device Manager Update or driver finder software through an available internet. But what if there is no internet connection? Lets explore the tricks.

# 1 One way is to make clear which driver you need and download it from manufactures website or other authorized sites using another network-available computer. Save the driver installer (it should be end with zip or exe) on a hard drive and transfer the installer to your computer to install.

# 2 Alternatively, the other easier way is to use an automatic driver finder software DriveTheLife for Network Card, a supplement program of DriveTheLife.

  • Download DriveTheLife for Network Card from another network-available computer and save it on a hard drive.
  • Transfer the installer to your computer and double click to install it.
  • In the process of installing DriveTheLife, it would download and install correct network drivers according to your network adapter. 

fix internet driver problem
Installing DriveTheLife for Network Card

  • When DriveTheLife for Network Card is installed, you may find that your network card is also installed.
  • Then it will scan your computer and find missing, corrupted drivers and drivers not backed up. You can fix all the driver problems with one click.
  • If you want to update outdated drivers, go to Download board where will list all the out of date drivers and give you the option to update them with one click. 

update windows drivers automatically
Download Driver Update

What is the Advantage of Using DriveTheLife for Network Card Instead of Downloading Drivers Directly?


As we can see from the second part, there are two ways to solve no network driver problem. Which is better and why?

Personally, DriveTheLife for Network Card is recommended. Reasons are:

1. You dont need to look into network adapter model and search for drivers by yourself.
2. Except for installing network drivers, DriveTheLife for Network Card will check for your computer and find all missing, corrupted and outdated drivers.
3. You can backup, restore and uninstall drivers with DriveTheLife for Network Card
4. If needed, you can keep it as a must-have program on your computer to keep your drivers up to date and running normally.

Free download DriveTheLife for Network Card here to troubleshoot all network driver problems. 

Available link for download

Read more »

Tuesday, September 6, 2016

DriveTheLife for Network Card is Released to Help Install Network Drivers Offline

DriveTheLife for Network Card is Released to Help Install Network Drivers Offline


Los Angeles, Calif. May  4th, 2015 — As the world’s leading software provider of Windows drivers download and update utility, Drive The Life Co., Ltd. today releases its new software DriveTheLife for Network Card, a piece of software served as a great and important supplement of DriveTheLife. This new software is mainly focused on helping users to solve network card driver problems especially when there is no network and no drivers.  For example, after a fresh install of Windows and there is no network and no drivers, how can you surf the internet? Yeah, that’s the point where DriveTheLife for Network Card is especially helpful.

DriveTheLife for Network Card helps you to install wired and wireless network adapter drivers in the process of installing itself. That is, when you have network driver problems, just download and install it, after the installation is done, your network card driver is also installed. After that, your network should be good to go without any network driver problems.

Key Features of DriveTheLife for Network Card


  • Download and install proper wired and wireless network driver  in the process of itself installation (offline)
  • Solve network card driver problems easily and quickly 
  • Download, install, update, backup, restore and uninstall all of the available drivers on your desktop or laptop 
  • All commonly used network drivers are integrated
  • All Windows systems are well compatible: Windows 10/8.1/8/7/XP/Vista
  • Totally free, safe and clean

Pricing and Availability


DriveTheLife for Network Card version 6.2.3.8 is now available on official site to all users for free.  To free download it, visit: http://www.drivethelife.com

About Drive The Life Co., Ltd.


Drive The Life Co. Ltd. is the leading driver software provider and is dedicated to developing powerful and user-loving software on managing Windows device drivers. Over years of development, Drive The Life Co. Ltd. is now favored by majority of users and becomes quite popular all over the world.

Contact Information


Website: http://www.drivethelife.com
Email: olivialewisdtl[at]gmail[dot]com

Press Image

You can download DriveTheLife for Network Card from official site, picture is shown as below:


download and install network drivers offline






Available link for download

Read more »

Sunday, September 4, 2016

Setting Network di Linux

Setting Network di Linux


Masuk dulu sebagai root, lalu ketikkan #nano /etc/network/interfaces. Kemudian tuliskan:

auto eth0
iface eth0 inet static
address xxx.xxx.xxx.xxx (ip address, contoh: 192.168.30.147)
network xxx.xxx.xxx.xxx (network address, contoh: 192.168.30.128)
netmask xxx.xxx.xxx.xxx (subnetmask, contoh: 255.255.255.0)
gateway xxx.xxx.xxx.xxx (gatewaay, contoh: 192.168.30.129)
nameserver xxx.xxx.xxx.xxx (nameserver (DNS), contoh: 192.168.24.2)

Jangan lupa setting nameserver juga pada file resolv.conf pada folder /etc dengan cara mengetikkan perintah berikut:
nameserver 152.118.24.2

Setelah itu save, kemudian restart network dengan mengetikkan:
#/etc/init.d/networking restart //atau
#/invoke-rc.d networking restart

Available link for download

Read more »