autoback path changes

autoback path changes

Fab_Proto
Contributor Contributor
1,867 Views
6 Replies
Message 1 of 7

autoback path changes

Fab_Proto
Contributor
Contributor

Hi all,

I configured the autoback files in a folder placed on my local desktop.

We work on a local network.

My problem :

When I open a Max scene from another graphist after a few min Max tries to save an autoback but it cant because the autoback folder is configured to the other PC's desktop and I need to change it manualy in the "Configure project paths..." menu.

 

Anyone knows why the autoback's folder path changes?

(Max 2021)

Cheers.

0 Likes
1,868 Views
6 Replies
Replies (6)
Message 2 of 7

Diffus3d
Advisor
Advisor

It's a local setting, not a scene setting.  So you changing it for you doesn't change it for everyone else in the pipeline.  Also, saving to your desktop is not advisable.  Why not just put a shortcut on your desktop the folder?  


Best Regards,

0 Likes
Message 3 of 7

Fab_Proto
Contributor
Contributor

I agree It should be a local setting but sometime it changes when opening some scenes saved on another PC.
Maybe it has something to do with the project folder but I cant guess what...it's driving me crazy.

And is it not a good idea to save on the desktop?
It's a local folder, it should be easier to find.
Do you think it's would be better to point to another folder on the local PC?
Or on the network maybe?

PS : I've been using Max since 3D Studio and I never had that problem

0 Likes
Message 4 of 7

Diffus3d
Advisor
Advisor

That is weird. 

 

Since Windows 10 there are some operations which have extra security layers and some areas that are 'protected' folders.  C:/Program Files and the Desktop are both 'protected'.  Now I don't think this means much for base 3dsmax, but for some plugins it might.  This issue might not even be an issue with modern windows, but it was a few years ago.  

 

I honestly don't know what might cause it to automatically change back though, maybe in current versions it *does* sort of save where it's looking, and if it can't find it reverts back.  Guessing.  I can't find any notes about updates there, but at the same time I may have missed it. 

 

Best Regards,

0 Likes
Message 5 of 7

Fab_Proto
Contributor
Contributor

Ok, I will try to point to a drawer not on the desktop and see if it solves something...

Thanks for the feedback!

0 Likes
Message 6 of 7

kimdistefano
Community Visitor
Community Visitor

Hi, I have tried everything to fix 3D Max 2024 to keep from randomly switching the autoback project path to another user in our network, no matter how many times I fix it and save the setting, it keeps changing. Nothing works to fix this problem so far. And I never had this as a previous problem in other versions. Also using Windows 11.

Autodesk, do you have any help on this issue?

 

0 Likes
Message 7 of 7

myteam3533
Community Visitor
Community Visitor

Hi,

The issue you're experiencing with the autoback folder path changing is likely due to the autoback settings being stored in the Max scene file itself. When you open a file from another user's machine, it retains their autoback path settings.

To avoid manually changing the path each time, you can try the following solutions:

1. **Centralize Autoback Folder**: Configure all machines to use a centralized network location for autoback files. This way, regardless of who opens the file, the autoback saves to a common directory accessible by all users.

2. **Scripting Solution**: You can create a startup script that sets the autoback path to your preferred location each time 3ds Max starts. This ensures the autoback path is always set correctly regardless of the file opened.

Here's an example of what the script might look like:

```maxscript
fn setAutobackPath = (
autobackDir = "C:\\Path\\To\\Your\\Autoback\\Folder"
setDir #autoback autobackDir
)
callbacks.addScript #filePostOpenProcess setAutobackPath id:#setAutobackPath
```

Save this script in your `scripts\startup` folder.

3. **Configure Project Paths**: Regularly ensure that the "Configure Project

Hi,

The issue you're experiencing with the autoback folder path changing is likely due to the autoback settings being stored in the Max scene file itself. When you open a file from another user's machine, it retains their autoback path settings.

To avoid manually changing the path each time, you can try the following solutions:

1. **Centralize Autoback Folder**: Configure all machines to use a centralized network location for autoback files. This way, regardless of who opens the file, the autoback saves to a common directory accessible by all users.

2. **Scripting Solution**: You can create a startup script that sets the autoback path to your preferred location each time 3ds Max starts. This ensures the autoback path is always set correctly regardless of the file opened.

Here's an example of what the script might look like:

```maxscript
fn setAutobackPath = (
autobackDir = "C:\\Path\\To\\Your\\Autoback\\Folder"
setDir #autoback autobackDir
)
callbacks.addScript #filePostOpenProcess setAutobackPath id:#setAutobackPath
```

Save this script in your `scripts\startup` folder.

3. **Configure Project Paths**: Regularly ensure that the "Configure Project Paths..." settings point to a consistent local or network directory, and communicate this setup to your team.

I hope one of these solutions helps! Let me know if you need further assistance.

Cheers.

settings point to a consistent local or network directory; and communicate this setup to your team.

I hope one of these solutions helps! Let me know if you need further assistance.

Cheers.

0 Likes