Hi there you could try this, it seems as though its unwanted !
WAN stands for Wide Area Network. A Miniport driver is a hardware-specific driver that manages the NIC (Network Interface Card), it sends and receives data through the NIC. Moreover, the driver also inter-communicates with higher layer/level transport protocols and drivers.
There are a few WAN Miniport drivers: WAN Miniport (IP), WAN Miniport (L2TP), WAN Miniport (PPPOE), WAN Miniport (PPTP), and optionally others such as the WAN Miniport (Network Monitor) and the WAN Miniport (SSTP).
Depending your connection requirements and other needs, some of these miniports are necessary, others are optional, or not needed at all. For example, if you are having a broadband ADSL Internet connection via PPPOE then the said Miniport driver is required. The IP and L2TP are also required along with PPTP. As a rule of thumb, the first four are required, and starting from Windows XP, the operating systems are incorporating these technologies.
Starting from Windows Vista SP1, another new Miniport driver was added. Microsoft called this Secure Socket Tunelling Protocol (SSTP) and SP1 (Service Pack 1) comes with this driver. Windows 2008 Server is shipped with this miniport driver as well. This is required in case of secure VPN tunnel connections. In a nutshell, it offers tunelling PPP traffic over a secured SSL channel. Therefore, it increases security due to encryption and traffic integrity checking.
However, Microsoft did not plan thoroughly their deployment of this driver for Windows Vista SP1. Meaning that when the Service Pack 1 is uninstalled, the WAN Miniport (SSTP) driver is not removed, thus a big yellow exclamation mark appears right to this driver in the Device Manager. Windows cannot find its driver anymore, since SP1 removed it, but the device isn't removed from the Device Manager list. This may or may not cause problems. Microsoft recommends ignoring the exclamation mark along with possible error code number 39. Now that is a pretty silly work-around, if you ask me.
Windows Vista. Moreover, you did not complain about having an exclamation mark (!) or anything there next to the WAN Miniport (SSTP) device, so chances are it's still fully functional (it should be in case of Vista with SP1). With the help of conventional methods you cannot remove that device - such as uninstalling or disabling. It just won't disappear.
I think that it is a safe bet assuming you are not going to need the SSTP anytime in the future as a VPN secure tunnel. Traditional VPN tunneling happens via the PPTP and uninstalling the SSTP shouldn't cause any problems whatsoever regarding standard VPN connections. And since you were asking how to remove it, here it goes: Open up an elevated command-prompt terminal, you do this by logging in as an Administrator as launching the cmd.exe as an Administrator (right click, Run as Administrator...). Then type in the following command that uninstalls the said device:
netcfg -e -u ms_sstpminiport
Should you still require sometime in the future the WAN Miniport (SSTP) driver then you can reinstall it, and here's how:
devcon.exe install %windir%\inf\netrasa.inf MS_SstpMiniport
But to do this, you need to grab DevCon from this link.
Good luck.
If life is not an option then why are we not given the option in the first place !