akpaga
-
Total Posts
:
19
- Scores: 0
-
Reward points
:
0
- Joined: 11/12/2008
-
Status: offline
|
batch process problem
Tuesday, July 14, 2009 9:50 AM
( permalink)
Hi i am using a batch file via the windows schedule to register a dll. But the problem is when the batch file executes to register the dll a message box is opening to show that the dll has been loaded. Since no one clicks ok on the msg box the task is showing up as running in the status of the windows scheduler. How can i avoid the message box from popping and quit the program. Here is the batch file code @echo off rem *registers test.dll* regsvr32 "C:\Program Files\testl.dll" thank you in advance
|
|
|
|
ebgreen
-
Total Posts
:
8227
- Scores: 98
-
Reward points
:
0
- Joined: 7/12/2005
-
Status: offline
|
RE: batch process problem
Tuesday, July 14, 2009 1:54 PM
( permalink)
regsvr32 "C:\Program Files\testl.dll" /s
|
|
|
|
akpaga
-
Total Posts
:
19
- Scores: 0
-
Reward points
:
0
- Joined: 11/12/2008
-
Status: offline
|
RE: batch process problem
Wednesday, July 15, 2009 5:58 AM
( permalink)
Thank you very much. It worlked
|
|
|
|
qingren
-
Total Posts
:
4
- Scores: 0
-
Reward points
:
0
- Joined: 8/4/2009
-
Status: offline
|
RE: batch process problem
Tuesday, August 04, 2009 6:49 PM
( permalink)
|
|
|
|