The GoTo Community is currently experiencing some technical issues affecting new posts and comments. We are actively working with our service provider and apologize for the frustration.
Forum Discussion
KevinA
16 years agoRetired GoTo Contributor
One2Many Script Repository
Welcome to the LogMeIn Central Script Repository!
What is it? A library of scripts to help you execute automated tasks and manage LogMeIn Pro² computers without having to access them manually. ...
- 8 years ago
https://github.com/knix15/LogMeIn-One2Many-Community-Scripts/
Scripts can be found here as well for better future organization.
Anon51436
15 years agoActive Contributor
I have been using www.appdeploy.com for all my scripts.
They have the extensions for all latest software installs (Silent).
I like the idea of this forum it should help people start.
MY PROBLEM: if someone can help me
I have been using one2many for 300 users. I have tried to send a bat or vsb script to open a jpg picture when starting a service on the target machine. The jpg is our logo with instructions regarding us servicing the machine.
I created a Bat file with c:\mt\rsfiles\rs.jpg for it to open on target computer.
In dos it works but not via a bat through ONE2MANY.
I thought this must be to do with the silent feature suppressing opening boxes to the user.
So I tried a bat file pointing to a bat file on the target computer hard disk.
same with a bat file pointing to a vbs script. Still no opened picture.
I then made a website with the same displayed; www.milnetech.com.au/rs
Can someone help me use variables in the command line to open a jpeg or a website on a target machine through ONE2MANY?
Looking forward to your help regarding this.
Consultant64
10 years agoRegular Contributor
You could try this:
Set objExplorer = CreateObject("InternetExplorer.Application")
With objExplorer
.Navigate "about:blank"
.ToolBar = 0
.StatusBar = 0
.Left = 100
.Top = 0
.Width = 635
.Height = 555
.Visible = 1
.Document.Title = "Service Complete"
.Document.Body.InnerHTML = _
"<img src='http://www.milnetech.com.au/images/remoteService.jpg' height=500 width=600>"
End With