Question

I'm calling a bat file from a windows startup script in a GPO and think I may have an error in my syntax, any ideas? The intention is to install the GoToManage unattended access program, but only if it isn't already installed.

@echo off
if EXIST "C:\Program Files (x86)\Citrix\GoToAssist Express Customer" (
    exit
) ELSE (
if EXIST "C:\Program Files\Citrix\GoToAssist Express Customer" (
    exit
) ELSE (
    start \\serv1\SoftwareDeploy\RemoteSupport\RemoteSupport.exe
)

Any help would be greatly appreciated.

Cheers.

Was it helpful?

Solution

Try this:

@echo off
if EXIST "C:\Program Files (x86)\Citrix\GoToAssist Express Customer" GOTO End
if EXIST "C:\Program Files\Citrix\GoToAssist Express Customer" GOTO End

start \\serv1\SoftwareDeploy\RemoteSupport\RemoteSupport.exe

:End
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top