• Hi,

    This is the syntax I am using  when running E3D thru a .bat file:

    rem ------------------------------------------------------------------------------
    @echo off

    set MODE=TTY
    set PRJ=TRA
    set USER=SYSTEM
    set PW=XXXXXX
    set MDB=ALL
    set MODULE=DESIGN

    set initFILE=C:\Program Files (x86)\AVEVA\Everything3D3.1\launch.init

    set macFILE="full_file_path_of_your_macro"

    Call "C:\Program Files (x86)\AVEVA\Everything3D3.1\mon.exe" PROD E3D init "%initFILE%" %MODE% %PRJ% %USER%/%PW% /%MDB% %MODULE% $M/%macFILE%

    rem ------------------------------------------------------------------------------

    You can change the MODE to GRAPHICS if you want to use that mode or any mode you want to use.

    PRJ is the project code.

    USER is as the name suggests.

    PW is the corresponding password for the selected user.

    MDB is the name of the database you want to go into.

    MODULE is the E3D module that you want to enter (DESIGN, DRAW, etc.)

    initFILE is the initialization file (in case you have a customized init file).

    macFILE is the file that you want to use (in my case, this is the file that contains the E3D commands that I need E3D to perform).

    Hope this helps.

  • Hello, is it possible to enter tty with nt auhenitcated user?

  • Yes. The code I wrote above is an example.

  • An nt authenticated user doest have a password, but i figured out how to access e3d with an nt authenicated user. The password would be the free user password
    Thanks anyways