hexagon logo

Running Programs off of a network

Afternoon all. I had an issue today where 2 of my programs will no longer load my cad model, and one of them wont open at all. All of our programs are saved onto the company's network. They have spent a lot of money on the network so I know its top end. That being said has anyone ever had trouble saving and running programs off of a network? The 2 programs are rather large and I would rather not have to reprogram 1 or both of them.
Parents
  • We use windows "RoboCopy" works great copies masters from one place and copies to local c drive on cmm if a file has changed or updated only.

    open notepad, update your network shared ID's and locations and save as ".BAS"

    @echo off

    for %%T in (
    CMM-endeavor
    CMM-global
    CMM-global2
    ) do (
    robocopy \\CMM-global2\CMM-Shared\PC-DMIS-Program-List \\%%T\CMM-Shared$\PC-DMIS-Program-List /MIR /R:5 /W:15 /MT:32 /copy: DAT/LOG+:CopyJobBackup.log

    )​​
Reply
  • We use windows "RoboCopy" works great copies masters from one place and copies to local c drive on cmm if a file has changed or updated only.

    open notepad, update your network shared ID's and locations and save as ".BAS"

    @echo off

    for %%T in (
    CMM-endeavor
    CMM-global
    CMM-global2
    ) do (
    robocopy \\CMM-global2\CMM-Shared\PC-DMIS-Program-List \\%%T\CMM-Shared$\PC-DMIS-Program-List /MIR /R:5 /W:15 /MT:32 /copy: DAT/LOG+:CopyJobBackup.log

    )​​
Children