Click here to Skip to main content
15,887,350 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have an application which needs to kill the WINWORD.exe process.

I am using the following process

VB
Dim CProcess() As Process = System.Diagnostics.Process.GetProcessesByName("WINWORD")
        For Each Program As Process In CProcess          
            Program.Kill()
        Next


This is working fine in my machine. when the exe is put in client machine this is not working.
I think this is because, the client machine does not has the permission to kill a process, and Visual Studio has the same.

Anyone pleas help me out to solve this.

Thank you in anticipation............
--- Sijo
Posted
Updated 17-Feb-13 23:41pm
v2
Comments
Abhinav S 18-Feb-13 5:52am    
YOu need administrator privileges to kill a process.
sijo 2 18-Feb-13 6:19am    
Thank you Abhinav for your time.
But is there any way to do this pragmatically....

1 solution

try to run your application as an ADministrator :)
 
Share this answer
 
Comments
sijo 2 18-Feb-13 6:17am    
Thank you Jay.
Is there any other method to achieve this functionality other than this

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900