Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
1. Windchill All-IN-ONE Startup
rem Start Windchill Directory Server
😧
call D:\ptc\Windchill_10.2\WindchillDS\server\bat\start-ds.bat
rem Start Apache HTTP Server
cd D:\ptc\Windchill_10.2\HTTPServer\bin
start httpd.exe
rem Start Windchill
cd D:\ptc\Windchill_10.2\Windchill\bin
windchill.exe -w "D:\ptc\Windchill_10.2\Windchill" --java ="D:\ptc\Windchill_10.2\Java\jre\bin\java.exe" start
rem Exit
2. Windchill All-IN-ONE Shutdown
rem Stop Windchill
😧
cd D:\ptc\Windchill_10.2\Windchill\bin
windchill.exe -w "D:\ptc\Windchill_10.2\Windchill" --java ="D:\ptc\Windchill_10.2\Java\jre\bin\java.exe" stop
rem Stop Windchill Directory Server
call D:\ptc\Windchill_10.2\WindchillDS\server\bat\stop-ds.bat
rem Stop Apache HTTP Server
taskkill /F /IM httpd.exe
rem exit
Real life, tried and true examples are always tops in my book. Thank you for sharing!
Cool stuff!
I would add two things