daniel_dewinter
6 years agoContributor
Sharing existing items with multiple projects
Hello,
Situation:
I have a Project Suite containing 23 Projects. I use one project to create/mainting the scripts which are then used to be shared with other project.
Problem:
Every time I created a new script file I want to share with the other projects, I have to add it manually to the 22 other project. This is pretty labor intensive/boring/ RSI prone, etc.
My question:
Is there a way to add a script to the 22 of the other projects in a single action?
Kind regards,
Daniel
For example,
function Test() { var oExec = WshShell.Exec("powershell.exe -Command \"C:\\Temp\\Book2.ps1\" -excelfile \"C:\\Temp\\Book2.xlsx\""); while (oExec.Status == 0) { aqUtils.Delay(1000); } while (!oExec.StdOut.AtEndOfStream) { Log.Message(oExec.StdOut.ReadLine()); } }
Thanks a lot this solves all my problems
Thank you once again for all the effort