我想在Internet Explorer中打开几个URL . 但是我想在同一个窗口打开它们但是新标签 . 不是新窗口 .

我在VB.NET编码 .

Dim Start As New ProcessStartInfo
    Start.FileName = "iexplore.exe"
    Start.Arguments = "-private  " & "http://www.google.com"
    Process.Start(Start)

上面的代码在新窗口中打开 . 但我希望所有网址都在同一个私人窗口中打开,但是新标签 . 窗口应该相同,每个url是该窗口中的新选项卡 . 我正在运行Windows 10所以IE11 .

我该怎么做 ?