Pergunta

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.

Foi útil?

Solução

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
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top