Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have created a new Launch action with the application mstsc which opens a new Remote Desktop session as soon as I click on the Text Object. In the Parameters section, if I enter /v:servername when I click the Text Object it opens up a Remote Desktop Session with the server name. However what I want it to do is take it from the field name network_path: ie: If I select my criteria and in the Text Object is the server transformfs, I want it to connect to transformfs.
I have tried /:v=network_path, but I get an error. Does anyone have any suggestions at all?
Regards,
Jon Ditchfield
First create the Variable
Let vNP = network_path. This field must contain only one value other wise you may get null value.
Then use the Variable in the action
/v:$(vNP)
First create the Variable
Let vNP = network_path. This field must contain only one value other wise you may get null value.
Then use the Variable in the action
/v:$(vNP)
Got it working by entering the following in the Parameters on Launch = '/v:' &vNP
Hi Johnathon,
I used Launch and added the mstsc.exe
I was wondering, this opens up the RDC, but I want to log onto another site by clicking a button in Qlikview, any tips on how to do it. Could I create a.bat file and just launch that from within Qlikview?
Regards
Alan
Hi Alan,
Firstly in my load script which takes data from SQL, there is a table called Server with a field called Network_Path (which is my UNC Path). I then created a variable in Qlikview and called it vNP with the value of =Network_Path. I then created a standard text object with the text of =Network_Path (to show the network path), and created a Launch Action with the following parameters:
Application: =('C:\WINDOWS\system32\mstsc.exe') //This is the directory of Remote Desktop
Parameters: =vNP //This entered the parameters as the =Network_Path, so it will contect to Remote Desktop with whatever value is in the =Networth_Path
Regards,
Jon
Thanks Jonathon,
I have it working by just launching RDP's already created
Thanks
Regards
Alan