Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
Help! I'm confused by what this error is telling me. Am I supposed to remove all the permissions for SYSTEM in the folder? Should it be set for Full Control of everything? Just want to get this setup so I can do some learning. using "How to Model Almost Anything"
If you see "Access denied" messages above, you must change permissions so that
The system cannot find the file specified.
changing the folder permissions, browse to your "creo_standards" folder and
run the configure.bat file to select a drawing standard and unit system.
Hi,
if you open Creo_For_Schools.bat in Notepad then you will what files are copied and where. You can do same steps manually using File Explorer.
The problems is related to default installation directory. You can change access rights to directory tree started at C:\Program Files\PTC directory.
OK, so what exactly am I looking at here? I don't work in .bat files at all. I see what files I'm copying, but not sure where I'm copying them to.
rem ------------------------- choose 1 - ASME drawings with INLBS unit system -
rem
:ONE
rem
xcopy /q /y "config_files_schools\config_inlbs.pro" "..\text\config.pro*"
xcopy /q /y "config_files_schools\creo_parametric_admin_customization.ui" "..\text\creo_parametric_admin_customization.ui"
xcopy /q /y "config_files\appearance_edu.dmt" "..\graphic-library\appearances\appearance.dmt*"
xcopy /q /y "draw_standards\asme_in.dtl" "draw_standards\standard_in.dtl*"
del "templates\*.drw"
xcopy /q /y "templates_asme_in\*.drw" "templates\*"
GOTO :MESSAGE
Hi,
let's say that Creo_For_Schools.bat is located in C:\Program Files\PTC\Creo 10.0.0.0\Common Files\creo_standards directory.
xcopy /q /y "config_files_schools\config_inlbs.pro" "..\text\config.pro*"
copy C:\Program Files\PTC\Creo 10.0.0.0\Common Files\creo_standards\config_files_schools\config_inlbs.pro file
to C:\Program Files\PTC\Creo 10.0.0.0\Common Files\text directory and rename it to config.pro
xcopy /q /y "config_files_schools\creo_parametric_admin_customization.ui" "..\text\creo_parametric_admin_customization.ui"
copy C:\Program Files\PTC\Creo 10.0.0.0\Common Files\creo_standards\config_files_schools\creo_parametric_admin_customization.ui file
to C:\Program Files\PTC\Creo 10.0.0.0\Common Files\text directory
xcopy /q /y "config_files\appearance_edu.dmt" "..\graphic-library\appearances\appearance.dmt*"
copy C:\Program Files\PTC\Creo 10.0.0.0\Common Files\creo_standards\config_files\appearance_edu.dmt file
to C:\Program Files\PTC\Creo 10.0.0.0\Common Files\graphic-library\appearances directory and rename it to appearance.dmt
xcopy /q /y "draw_standards\asme_in.dtl" "draw_standards\standard_in.dtl*"
copy C:\Program Files\PTC\Creo 10.0.0.0\Common Files\creo_standards\draw_standards\asme_in.dtl file
to C:\Program Files\PTC\Creo 10.0.0.0\Common Files\creo_standards\draw_standards directory and rename it to standard_in.dtl
del "templates\*.drw"
remove files with .drw extension in C:\Program Files\PTC\Creo 10.0.0.0\Common Files\creo_standards\templates directory
xcopy /q /y "templates_asme_in\*.drw" "templates\*"
copy files with .drw extension from C:\Program Files\PTC\Creo 10.0.0.0\Common Files\creo_standards\templates_asme_in directory to C:\Program Files\PTC\Creo 10.0.0.0\Common Files\creo_standards\templates directory