Skip to content
README.md 1,61 KB
Newer Older
Thorsten Eggeling's avatar
Thorsten Eggeling committed
# Virtual Router Manager
Thorsten Eggeling's avatar
Thorsten Eggeling committed
Wifi Hot Spot for Windows 10, 8, 8.1, 7 and 2008 R2
Thorsten Eggeling's avatar
Thorsten Eggeling committed

Thorsten Eggeling's avatar
Thorsten Eggeling committed
Copyright (c) 2013 Chris Pietschmann (http://pietschsoft.com)
Thorsten Eggeling's avatar
Thorsten Eggeling committed

Thorsten Eggeling's avatar
Thorsten Eggeling committed
Licensed under the Microsoft Public License (Ms-PL, https://opensource.org/licenses/MS-PL)
Thorsten Eggeling's avatar
Thorsten Eggeling committed

Thorsten Eggeling's avatar
Thorsten Eggeling committed
Original source code from: http://virtualrouter.codeplex.com/license
Thorsten Eggeling's avatar
Thorsten Eggeling committed

Thorsten Eggeling's avatar
Thorsten Eggeling committed
This version of Virtual Router Manager (1.0a) contains some updates to make the tool working with a german, french or spanish Windows 8, 8.1 or 10. It also offers localization of the user interface (partly). The source compiles fine with Microsoft Visual Studio 2010 and requires .Net Framework 3.5 SP1.
Thorsten Eggeling's avatar
Thorsten Eggeling committed

Thorsten Eggeling's avatar
Thorsten Eggeling committed
The updates are needed because the names of the virtual Wifi adapter may vary in each Windows version depending on the language. You will find these changes in VirtualRouterHost.cs:
Thorsten Eggeling's avatar
Thorsten Eggeling committed

Thorsten Eggeling's avatar
Thorsten Eggeling committed
```csharp
privateConnectionGuid = (from c in this.icsManager.Connections 
Thorsten Eggeling's avatar
Thorsten Eggeling committed
where c.props.DeviceName.ToLowerInvariant().Contains("microsoft virtual wifi miniport adapter") // Windows 7
|| c.props.DeviceName.ToLowerInvariant().Contains("microsoft hosted network virtual adapter") // Windows 8
|| c.props.DeviceName.ToLowerInvariant().Contains("von microsoft gehosteter, virtueller netzwerkadapter") // Windows 8 german
|| c.props.DeviceName.ToLowerInvariant().Contains("Adaptador virtual de red hospedada de Microsoft") // Windows 8 spanish
|| c.props.DeviceName.ToLowerInvariant().Contains("виртуальный адаптер размещенной сети (майкрософт)") //Windows 8 russian
|| c.props.DeviceName.ToLowerInvariant().Contains("Carte virtuelle de réseau hébergé Microsoft") // Windows 8 french
Thorsten Eggeling's avatar
Thorsten Eggeling committed
select c.Guid).FirstOrDefault();```