Is there a way to register a DLL on a server as part of an assembly?

I am trying to create our web application automatically. I need to be able to copy the VB6 DLLs to the server and register them, since webapp uses them as a backend. I can't seem to find a way to register them from another machine. I cannot use rsh because it is not allowed on this server.

+3
source share
1 answer

You can create an ASP.NET form in a separate ASP application that will take DLL paths for registering and scheduling a batch file (with job ID, timestamp and serial number in the file name to identify it) to run with the Windows scheduler at the beginning of the next minutes, displaying the result of registration in a text file of the result. And which deletes old time files and result files. And which supports status request / text return / return for previous jobs. And call this ASP interface from the command line over the network using a C # script. Ugh. Actually a really terrible shaky shaky decision and there may be more work than the application (itself).

Borland ++ , , , . .

, .

+1

Source: https://habr.com/ru/post/1726907/


All Articles