Link to home
Start Free TrialLog in
Avatar of Swetha_aJaX
Swetha_aJaX

asked on

install utill is not a valid win 32 application ::access denied

Hi ,
I created a windows service in and installed using command prompt yesterday using  installutill followed by the path of my application exe ,
but when i modified the service and trying use installutil i am getting this error message
installutil is not a valid win32 application
and coming an acess denied mesg in command prompt

error.bmp
ASKER CERTIFIED SOLUTION
Avatar of elimesika
elimesika
Flag of Israel image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
is your framework path included
C:\Windows\Microsoft.NET\Framework\v2.0.50727

better create a bat file to do the install and add the following to it
@SET FrameworkDir=%SystemRoot%\Microsoft.NET\Framework
@SET FrameworkVersion=v2.0.50727
@set PATH=%FrameworkDir%\%FrameworkVersion%;%PATH%;
installutil bin/"Your Service Name.exe" /ShowCallStack
Avatar of Swetha_aJaX
Swetha_aJaX

ASKER

thanks very much what is this exactly happening this
still having the problem....