• Hi All,

    I have a similar situation as the original poster's. I'm running a master SSIS package from a bat file, and per the last poster, I believe my bat file is pointing to the correct 32 bit Dtexec.exe, as this is the content of the .bat file:

    REM Runs DTSX package via the command line

    pushd D:\SFAS\SSIS\SESDatamart\bin
    "C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\dtexec.exe" /f "D:\SFAS\SSIS\SESDatamart\packages\MASTER EXTRACT.dtsx" /set "\package.variables[User:: PriorYears].Properties[Value]";3 /set "\package.variables[User::MonthIncrement].Properties[Value]";2
    popd

    REM Capture error code and send to UC4
    exit /b %errorlevel%

    My master package was developed with the Project property of Run64BitRuntime as False, and when I've been trying to deploy and get it to run on our Dev server which is running a 64 bit OS, I'm receiving random app crashes on dtexec. Can anyone please advise how to correct this issue? Thanks in advance for sharing your expertise!