The GoTo Community is currently experiencing some technical issues affecting new posts and comments. You may need to reload the page you are on before you can post a comment. We are actively working with our service provider and apologize for the frustration.
Forum Discussion
Rob H
18 years agoRetired GoTo Contributor
Rescue Script Repository Thread- Share your scripts
Welcome to the new LogMeIn Community. One of the things that we would like to foster is the sharing of lots of great ideas and neat tips and tricks. I thought that I would get the ball rolling by pub...
Bob5
17 years agoVisitor
To debug VBS scripts interactively, like Visual Basic code debugging, I looked for and found SplineTech VBS Debugger. http://www.remotedebugger.com/ also appears to have a Java and ASP remote versions. ~ $80 for a personal version. Saved me tons of time.
Bob5
Firasco
17 years agoNew Member
Thanks. I will check it out.
- TonyS17 years agoVisitor
Hi, I'm wondering if anyone has some examples of scripts for the Mac? Can we run commands in the Terminal? Applescript?
I want to script a reinstall of Java 1.5 which is removed during a Snow Leopard upgrade.
I want to know if it's possible to run these commands as a script
Step 1 Download a file eg
www.cesoft.com.au/downloads/java/java5.zip
Step 2 Run these commands in Terminal
cd Downloads
sudo mv 1.5.0 /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0-leopard
cd /System/Library/Frameworks/JavaVM.framework/Versions/
sudo rm 1.5.0
sudo ln -s 1.5.0-leopard 1.5.0
sudo chown -R root:wheel ./1.5.0-leopardThey should be run in a terminal window, but there may be a way to do it with AppleScript. I hope you can give me some pointers. The user will need to enter a password for the first sudo command