I have a Windows service in a setup project. With service installer and process installer I install the service and start it.
Now I have bought an obfuscator (.NET Reactor). This prevents me from calling the installer class. I have to set InstallerClass to false.
I could however use the same exe and send som arguments to it like install and uninstall. My question is, how do I write to install or uninstall. For example:
Case "I"
Dim p As New ProjectInstaller
Case "U"
Dim p As New ProjectInstaller
The functions in p , like Install and Uninstall requires some kind of dictionary. How can I perform the same kind of install/uninstall procedure by calling the exe with arguments? How do I handle the dictionary?
Thanks.
Now I have bought an obfuscator (.NET Reactor). This prevents me from calling the installer class. I have to set InstallerClass to false.
I could however use the same exe and send som arguments to it like install and uninstall. My question is, how do I write to install or uninstall. For example:
Case "I"
Dim p As New ProjectInstaller
Case "U"
Dim p As New ProjectInstaller
The functions in p , like Install and Uninstall requires some kind of dictionary. How can I perform the same kind of install/uninstall procedure by calling the exe with arguments? How do I handle the dictionary?
Thanks.