Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
How to execute a batch or vbs file from macro ? I need to call a batch file on click event of button in qlikview application.
Thanks in Advance
Microsft example:
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "%windir%\notepad " & WScript.ScriptFullName
Set macro to run using module security to "System Access" and module local security to "Allow System Access"
where is the option to specify batch file ?
does anybody have solution for executing batch files using macro from Server side ?
This for example worked:
Execute cmd.exe /C "D:\YourFolder\DataSynchronisation.bat";
- Marcus