This is a little more advanced tutorial, if presents interest i will provide a simple batch script :
Ok Lets start in windows 7 by running powershell :
Start -> Search Programs and Files -> PowerShell -> Right click on icon -> Run as Administrator
Now list your network devices :
PS C:\> Get-WmiObject win32_networkadapter
Look in results for DVB Card and take the DeviceID, then replace it here (see red number), and run the command
PS C:\> $DVB = Get-WmiObject win32_networkadapter | where {$_.DeviceId -eq 4}
To disable use
PS C:\> $DVB.disable()
To enable use
PS C:\> $DVB.enable()
This can be included in a batch to :
1. Identify network card Object
2. Disable Card
3. Enable Card
4. Start DVB Program
Ok Lets start in windows 7 by running powershell :
Start -> Search Programs and Files -> PowerShell -> Right click on icon -> Run as Administrator
Now list your network devices :
PS C:\> Get-WmiObject win32_networkadapter
Look in results for DVB Card and take the DeviceID, then replace it here (see red number), and run the command
PS C:\> $DVB = Get-WmiObject win32_networkadapter | where {$_.DeviceId -eq 4}
To disable use
PS C:\> $DVB.disable()
To enable use
PS C:\> $DVB.enable()
This can be included in a batch to :
1. Identify network card Object
2. Disable Card
3. Enable Card
4. Start DVB Program
Comment