sylwesterr

New Member
Joined
May 26, 2021
Messages
1
Hello, I decided to write a post because I can't deal with the problem on the w2k2012r2 server. Logging into the server on the remote desktop, I am using applications based on net framework 4.0 and when I try to compile the plugin, I get an error related to the lack of dll files for compilation. The system strangely points to me the path% userprofile% \ windows \ Microsoft.NET \ .... since it is invalid because the files are located in the directory C: \ windows \ microsoft.net \ ... Has anyone had a similar case?
 

Solution
It sounds like your issue is related to the file path mismatch for the .NET framework-related DLL files on your Windows Server 2012 R2 system. To address this problem, follow these steps:

1. Update Environment Variables:​

  • Check the system environment variables to ensure the correct paths are set.
  • Open the "System Properties" window by right-clicking on "This PC" or "Computer" and selecting "Properties."
  • Click on "Advanced system settings."
  • In the System Properties window, go to the "Advanced" tab and click on the "Environment Variables" button.
  • Look for variables like %userprofile% and ensure they are correctly set to the actual paths.

2. Check Path Variables:​

  • Verify that the %PATH%...
It sounds like your issue is related to the file path mismatch for the .NET framework-related DLL files on your Windows Server 2012 R2 system. To address this problem, follow these steps:

1. Update Environment Variables:​

  • Check the system environment variables to ensure the correct paths are set.
  • Open the "System Properties" window by right-clicking on "This PC" or "Computer" and selecting "Properties."
  • Click on "Advanced system settings."
  • In the System Properties window, go to the "Advanced" tab and click on the "Environment Variables" button.
  • Look for variables like %userprofile% and ensure they are correctly set to the actual paths.

2. Check Path Variables:​

  • Verify that the %PATH% variable includes the correct paths to the .NET framework DLL files.
  • Add the correct paths if they are missing.

3. .NET Framework Repair/Reinstallation:​

  • Consider repairing or reinstalling the .NET Framework on your server.
  • Download the .NET Framework repair tool from the official Microsoft site and run it to fix any framework-related issues.

4. Manual DLL Placement:​

  • If necessary, manually copy the required DLL files to the correct directory (C:\Windows\Microsoft.NET) to ensure they are accessible for compilation.

    5. Testing and Compilation:​

  • After making these changes, try to compile the plugin again to see if the issue has been resolved.

    6. Consult the Developer:​

  • If the problem persists, consider contacting the developer of the application for further assistance, as they may have specific troubleshooting steps tailored to their software. By following these steps, you can correct the path mismatch for the .NET framework DLL files and hopefully resolve the compilation error you are encountering on your Windows Server 2012 R2 system.
 

Solution
Back
Top