Click here to Skip to main content
15,917,059 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralThanks Pin
Jm6k25-Jul-03 19:22
Jm6k25-Jul-03 19:22 
Generalrunning applications in VB 6.0 Pin
adnanmadi23-Jul-03 4:36
adnanmadi23-Jul-03 4:36 
GeneralRe: running applications in VB 6.0 Pin
Hesham Amin23-Jul-03 7:24
Hesham Amin23-Jul-03 7:24 
GeneralAccessing an XML sequence Pin
Bernhard Hofmann23-Jul-03 0:28
Bernhard Hofmann23-Jul-03 0:28 
GeneralRe: Accessing an XML sequence Pin
Matt Casto23-Jul-03 3:13
Matt Casto23-Jul-03 3:13 
GeneralCombo Box Pin
rain117822-Jul-03 21:57
rain117822-Jul-03 21:57 
GeneralRe: Combo Box Pin
Nic Rowan24-Jul-03 2:04
Nic Rowan24-Jul-03 2:04 
GeneralExecuting Shell Command Pin
Naqsh22-Jul-03 10:58
sussNaqsh22-Jul-03 10:58 
Hi,

I have trouble in executing shell commands within windows service. Below is my code in Timers Elapsed event. Timers interval is 5 sec. Other than this code everything else is working. I am not sure why I am unable to execute this code. I am running my windows service as a User, which has administrator rights. I also tried to run this windows service as LocalSystem but nothing happens.

Have a nice day.

Naqsh

Private Sub Timer1_Elapsed(ByVal sender As System.Object, ByVal e As System.Timers.ElapsedEventArgs) Handles Timer1.Elapsed

Dim proc As System.Diagnostics.Process = New System.Diagnostics.Process()
proc.StartInfo.FileName = "cmd.exe"
proc.StartInfo.Arguments = "/C net start ""IIS Admin"""

proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden

proc.StartInfo.CreateNoWindow = True
proc.Start()


End Sub

Justice and Peace for everyone.
GeneralRe: Executing Shell Command Pin
Dave Kreskowiak24-Jul-03 7:55
mveDave Kreskowiak24-Jul-03 7:55 
Generalprinting html file Pin
pnpfriend22-Jul-03 8:18
pnpfriend22-Jul-03 8:18 
GeneralRe: printing html file Pin
Ian Darling22-Jul-03 12:53
Ian Darling22-Jul-03 12:53 
GeneralRe: printing html file Pin
pnpfriend23-Jul-03 3:23
pnpfriend23-Jul-03 3:23 
GeneralRe: printing html file Pin
Bo Hunter23-Jul-03 12:20
Bo Hunter23-Jul-03 12:20 
GeneralRe: printing html file Pin
Anonymous27-Aug-03 13:08
Anonymous27-Aug-03 13:08 
GeneralRe: printing html file (correction to previous post)... Pin
Anonymous27-Aug-03 13:18
Anonymous27-Aug-03 13:18 
GeneralRe: printing html file (correction to previous post)... Pin
pnpfriend28-Aug-03 3:15
pnpfriend28-Aug-03 3:15 
Generalemail Pin
Cristian_Dior22-Jul-03 3:39
Cristian_Dior22-Jul-03 3:39 
GeneralRe: email Pin
Nic Rowan22-Jul-03 3:48
Nic Rowan22-Jul-03 3:48 
GeneralRe: email Pin
jspano22-Jul-03 5:32
jspano22-Jul-03 5:32 
GeneralRe: email Pin
Cristian_Dior22-Jul-03 20:48
Cristian_Dior22-Jul-03 20:48 
GeneralRe: email Pin
jspano23-Jul-03 1:50
jspano23-Jul-03 1:50 
GeneralRe: email Pin
Cristian_Dior23-Jul-03 4:36
Cristian_Dior23-Jul-03 4:36 
Generalsending email Pin
Cristian_Dior22-Jul-03 1:00
Cristian_Dior22-Jul-03 1:00 
GeneralRe: sending email Pin
Cristian_Dior22-Jul-03 2:37
Cristian_Dior22-Jul-03 2:37 
GeneralCrystal Reports Pin
Emile Jacobs21-Jul-03 2:35
Emile Jacobs21-Jul-03 2:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.