Plugins Showing as "Missing" in 3ds Max 2024 on Windows 11 Despite Correct Installation Path

hamoodpg
Enthusiast

Plugins Showing as "Missing" in 3ds Max 2024 on Windows 11 Despite Correct Installation Path

hamoodpg
Enthusiast
Enthusiast

I'm experiencing an issue in 3ds Max 2024 on Windows 11 where installed plugins are showing as "missing" when I hover over them, despite the installation paths being set correctly. The plugins previously worked fine on 3ds Max 2024, but now they are not loading properly. Here's what I’ve tried so far:

  1. Verified the plugin paths under Customize → Configure User Paths → 3rd Party Plugins.
  2. Reinstalled the plugins multiple times.
  3. Checked file permissions and ensured I have full access to the plugin directories.
  4. Cleared the cache by deleting the PlugCfg folder.
  5. Ran 3ds Max as an administrator.
  6. Updated my Visual C++ Redistributables.
  7. Ensured 3ds Max is fully up to date with the latest service packs.
  8. Checked for conflicts with other installed plugins.

Even after all these troubleshooting steps, the plugins still appear as missing. I'm running the 64-bit version of 3ds Max 2024 on Windows 11. The issue started recently, though everything was working fine before.

Any suggestions on how to resolve this would be greatly appreciated!

Screenshot 2024-10-21 035118.png

Screenshot 2024-10-21 035030.png

  

Reply
Accepted solutions (4)
8,603 Views
26 Replies
Replies (26)

larryminton
Autodesk
Autodesk
Accepted solution

We are able to reproduce this issue.  

Windows 11 24H2 is setting the #system attribute on the following folder: "C:\Users\<user>\AppData\Local". As part of our script security, we don't load startup scripts (including macroscripts) from folders that have either #system or #hidden attributes set. This check is propagated up through the parent folders. There are special cases where this check terminates, including whether hit the AppData folder.  But since attribute is now set on Local, we don't hit that check.

If you look at max.log, you will see an entry similar to:

2024/10/30 08:24:32 INF: [06452] [02764] Hidden/System startup script: 'C:\Users\<user>\AppData\Local\Autodesk\3dsMax\2025 - 64bit\ENU\usermacros\DragAndDrop-Macro1.mcr', skip loading...

 

You can resolve the  issue by running (substitute in your user name):

setFileAttribute @"C:\Users\<user>\AppData\Local" #system false

 


Larry Minton
Principal Engineer, M&E-Design Animation

StudioAIDA
Enthusiast
Enthusiast

Do I have to run this command in a Max Script Listener window or in a cmd window?

0 Likes

KasperFilipsen
Enthusiast
Enthusiast
(
	local systemEnvionment = ::dotNetClass "system.Environment"
	local localAppData = systemEnvionment.GetEnvironmentVariable "localAppdata"
	setFileAttribute localAppData #system false
)

A more general use script, that should work for everyone without needing to change the script for each user.

 

Copy the above script, go to Scripting > New Script

Paste the script and go to Tools > Evaluate All

0 Likes

spacefrog_
Advisor
Advisor
Accepted solution

this can also can be done from the windows commandline  ( without maxscript )
running the following command


attrib -S %USERPROFILE%\AppData\Local

 

hitting Windows-R, pasting above line and press Enter should do the trick


Josef Wienerroither
Software Developer & 3d Artist Hybrid

StudioAIDA
Enthusiast
Enthusiast

Thanks, KasperFilipsen and spacefrog for the two solutions. They worked perfectly for me.

Since they are easier to use, I would suggest not marking hamoodpg 's post as a solution. In addition, they do not require copies of the macros in the document folder.

0 Likes

florencia_oneil
Community Visitor
Community Visitor

This worked perfectly for me! There was no need to roll back Windows updates. I'm currently using WINDOWS 11 24H2. Thank you!

0 Likes

neilcross
Explorer
Explorer

Legend!

0 Likes