Search results for query: *

  1. K

    Login automatically to https html website

    I made this for our security camera website., it,s plain and simpel it automatic login at the site ============================== Imports System.Runtime.InteropServices Public Class Form1 Private Property pageready As Boolean = False #Region "Page Loading Functions" Private Sub...
  2. K

    start or stop services remotly

    after some trying myself , i managed it Imports System.ServiceProcess Public Class Form1 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim services As ServiceController() services = ServiceController.GetServices("patrick-hp") Dim...
  3. K

    start or stop services remotly

    i want to stop and restart some services remotly. i can start one service , but could not find a way for starting more services once this is my code for starting remotly a service. i think it,very simple, but i can not find more info on google all the info ion internet is for start or stop...
  4. K

    Having Trouble with WaitForExit

    Hi, i uses this workaround for checking if mstsc is not running anymore; Private Sub Button1_Click_1(sender As Object, e As EventArgs) Handles Button1.Click Dim MyProcess As Process MyProcess = Process.Start("mstsc.exe ", "/v p-name") Threading.Thread.Sleep(1500)...
Back
Top