Here is some code that will give you access to IE InPrivate IE
Friend Function Open(Optional ByVal Url As String = "about:blank", Optional ByVal WindowState As ProcessWindowStyle = ProcessWindowStyle.Hidden) As WebBrowser On Error Resume Next Dim Start As New ProcessStartInfo Dim Windows = New ShellWindowsClass Dim Count = Windows.Count Start.FileName = "iexplore.exe" Start.Arguments = "-private -nomerge " & Url If WindowState = ProcessWindowStyle.Hidden Then Start.WindowStyle = ProcessWindowStyle.Minimized Else Start.WindowStyle = WindowState End If Process.Start(Start) Wait.Reset() Do If Windows.Count > Count Then Exit Do Loop While Wait.Waiting Browser = Windows(Count) Browser.Visible = (WindowState <> ProcessWindowStyle.Hidden) Return Browser End Function
source share