Problem
neoStampa Application crashes on startup.
Root Cause
A version of msvcp120.dll
is sometimes found in the nS installation folder, even though it is not included in the installer script. This DLL is normally installed by the Microsoft Visual C++ Redistributables and should only reside in the Windows system directory. If msvcp120.dll
exists in both the system directory and the nS installation folder — and the versions differ — the application may fail with memory access errors.
Solution
Confirm the error in Event Viewer
Open Event Viewer (
eventvwr.msc
).Navigate to Windows Logs > Application.
Look for an error entry involving
cprint.exe
andmsvcp120.dll
.If the error shows
msvcp120.dll
caused an invalid memory access, the DLL in the nS folder is the culprit.
Check the nS installation directory
Go to the nS installation path (e.g.,
C:\Program Files\nS\
).Look for
msvcp120.dll
.
Remove the conflicting DLL
Either delete or rename the
msvcp120.dll
file in the nS installation folder.NOTE: Do not touch the version in the Windows system directory (
C:\Windows\System32\
orC:\Windows\SysWOW64\
).
Restart the application
Launch the nS application again.
The system will now use the correct
msvcp120.dll
from the Windows system directory.