3s-gtech Posted September 22, 2010 Posted September 22, 2010 Just thought I'd post this up, as I've had a few issues putting Gantt chart software onto a suite of Windows 7 x64 PCs. First, install JRE (I hate it, but it's needed for alot of this stuff) This is available as an MSI, but I've found the newest version would not add as a deployed application, so I used an older one. Once this has been rolled out with Group Policy software installation, you may find it doesn't work properly, this is due to jscript.dll not being registered in syswow64, so run this as a startup script, extension .bat: REM --- register 64bit jscript.dll cd c:\Windows\SysWow64 regsvr32 jscript.dll Now JRE should work fine. I have blocked jucheck.exe site wide to get rid of the update notifier too, but you may not wish to do this as Java's not particularly secure! To install Gantt, put the .exe in a network installation folder (don't use your sysvol for this!) It's no longer available as an MSI, unless you want to package it yourself. Startup script: REM --- install GanttProject silently \\servername\installfolder$\ganttproject-2.0.10.exe /S The /S switch is the key with this one, it'll install silently and synchronously as the PC starts. Once the PC has logged on, it should be fully installed and working.
burgemaster Posted November 2, 2011 Posted November 2, 2011 You may want to add these 2 lines if you are rolling it out bit by bit, otherwise it will keep trying to install every startup: REM --- install GanttProject silently if exist "C:\Program Files\GanttProject" goto :eof ELSE if exist "C:\Program Files (x86)\GanttProject" goto :eof ELSE @echo off \\servername\installfolder$\ganttproject-2.0.10.exe /S
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now