cancel
Showing results for 
Search instead for 
Did you mean: 

Call client pc application

Former Member
0 Kudos
64

Hi Experts,

I have a (maybe stupid) question:

Is it possible to call an application of the client pc from portal? For example via a link or something. I want to call an exe like c:\programs\example\test.exe

Any help is appreciated.

Regards Manuel

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Manuel,

I did the same thing in our Portal,

into a html page:

create a tag script with a type

text/javascript

, into write these code;

 var ws = new Active X Object("WScript.Shell");

ligne_cmd = ""C:\My Documents\test1.txt" "";

ws.run (ligne_cmd);

self.focus();

self.close();

Hope this helps you,

Pls reward points if you find this helpful

Pino.

Former Member
0 Kudos

Hi Pino,

Great! That was exactly what I meant. It works!

Now, I guess it's not possible to get it executed in portal framework?

Regards Manuel

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Manuel,

I put the html page in the KM, and I called it from a link.

So when the user click on the link the tool installed on the computer is launched directly.

Kr, Pino.