How to change “DWG Association” setting on AutoCAD?
In my office, we use a custom right-click menu in .dwg files to allow the users to choose which version of AutoCAD they want to open the file.
It howover requires that AutoCAD don't mess with the file association of DWG files, otherwise the custom menu is lost.
Once the menu is installed, the first time AutoCAD is open it detects it is not the default DWG launcher and asks:
I choose "Do not associate DWG files with AutoCAD", to preserve the right-click menu configuration.
Howover, I'm having an issue with a workstation where this window is not popping up, and it is reassociating DWG files with AutoCAD, what ruins the whole thing.
Is there some way I can reset this setting and make it ask again or simply configure this behaviour somewhere?
file-association autocad
add a comment |
In my office, we use a custom right-click menu in .dwg files to allow the users to choose which version of AutoCAD they want to open the file.
It howover requires that AutoCAD don't mess with the file association of DWG files, otherwise the custom menu is lost.
Once the menu is installed, the first time AutoCAD is open it detects it is not the default DWG launcher and asks:
I choose "Do not associate DWG files with AutoCAD", to preserve the right-click menu configuration.
Howover, I'm having an issue with a workstation where this window is not popping up, and it is reassociating DWG files with AutoCAD, what ruins the whole thing.
Is there some way I can reset this setting and make it ask again or simply configure this behaviour somewhere?
file-association autocad
add a comment |
In my office, we use a custom right-click menu in .dwg files to allow the users to choose which version of AutoCAD they want to open the file.
It howover requires that AutoCAD don't mess with the file association of DWG files, otherwise the custom menu is lost.
Once the menu is installed, the first time AutoCAD is open it detects it is not the default DWG launcher and asks:
I choose "Do not associate DWG files with AutoCAD", to preserve the right-click menu configuration.
Howover, I'm having an issue with a workstation where this window is not popping up, and it is reassociating DWG files with AutoCAD, what ruins the whole thing.
Is there some way I can reset this setting and make it ask again or simply configure this behaviour somewhere?
file-association autocad
In my office, we use a custom right-click menu in .dwg files to allow the users to choose which version of AutoCAD they want to open the file.
It howover requires that AutoCAD don't mess with the file association of DWG files, otherwise the custom menu is lost.
Once the menu is installed, the first time AutoCAD is open it detects it is not the default DWG launcher and asks:
I choose "Do not associate DWG files with AutoCAD", to preserve the right-click menu configuration.
Howover, I'm having an issue with a workstation where this window is not popping up, and it is reassociating DWG files with AutoCAD, what ruins the whole thing.
Is there some way I can reset this setting and make it ask again or simply configure this behaviour somewhere?
file-association autocad
file-association autocad
asked Mar 12 '14 at 6:25
Havenard
748414
748414
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I managed to workaround the problem, and even have a better handling of .dwg
files behaviour by changing the way I install the file association.
Instead of modifying HKEY_CLASSES_ROOT.dwg
, I just leave that alone and modify HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.dwgUserChoice
instead.
This overrides the default association for .dwg
files, and AutoCAD won't even bother.
If anyone is curious, this is what I'm doing:
AutoCAD_2006_2014.reg
Windows Registry Editor Version 5.00
[-HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.dwg]
[-HKEY_CLASSES_ROOTAutoCAD.Drawing.Multi]
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.dwgUserChoice]
"Progid"="AutoCAD.Drawing.Multi"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.Multi]
@="Open with AutoCAD 2014 / 2006"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultiDefaultIcon]
@="C:\Program Files\Autodesk\AutoCAD 2014\en-US\acadficn.dll,49"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.Multishell]
@="Open_with_AutoCAD_2014"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006]
@="Open with AutoCAD 2006"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006command]
@=""C:\Program Files (x86)\AutoCAD 2006\acad.exe" "%1""
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006ddeexec]
@="[open("%1")]"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006ddeexecApplication]
@="AutoCAD.r16.DDE"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006ddeexecTopic]
@="System"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014]
@="Open with AutoCAD 2014"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014command]
@=""C:\Program Files\Autodesk\AutoCAD 2014\acad.exe" "%1""
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014ddeexec]
@="[open("%1")]"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014ddeexecApplication]
@="AutoCAD.r19.DDE"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014ddeexecTopic]
@="System"
This allows both AutoCAD 2006 and AutoCAD 2014 to coexist on the same system, AutoCAD 2014 being the default one, and you can right-click any .dwg
file and open with AutoCAD 2006.
This was created because some of our architects are relutant to upgrade from AutoCAD 2006, and some of our scripts are only compatible with AutoCAD 2006.
This does not answer the fundamental question though, so I'm not accepting it as answer. How to reset the DWG association setting on AutoCAD remains a mystery.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f727874%2fhow-to-change-dwg-association-setting-on-autocad%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I managed to workaround the problem, and even have a better handling of .dwg
files behaviour by changing the way I install the file association.
Instead of modifying HKEY_CLASSES_ROOT.dwg
, I just leave that alone and modify HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.dwgUserChoice
instead.
This overrides the default association for .dwg
files, and AutoCAD won't even bother.
If anyone is curious, this is what I'm doing:
AutoCAD_2006_2014.reg
Windows Registry Editor Version 5.00
[-HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.dwg]
[-HKEY_CLASSES_ROOTAutoCAD.Drawing.Multi]
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.dwgUserChoice]
"Progid"="AutoCAD.Drawing.Multi"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.Multi]
@="Open with AutoCAD 2014 / 2006"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultiDefaultIcon]
@="C:\Program Files\Autodesk\AutoCAD 2014\en-US\acadficn.dll,49"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.Multishell]
@="Open_with_AutoCAD_2014"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006]
@="Open with AutoCAD 2006"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006command]
@=""C:\Program Files (x86)\AutoCAD 2006\acad.exe" "%1""
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006ddeexec]
@="[open("%1")]"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006ddeexecApplication]
@="AutoCAD.r16.DDE"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006ddeexecTopic]
@="System"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014]
@="Open with AutoCAD 2014"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014command]
@=""C:\Program Files\Autodesk\AutoCAD 2014\acad.exe" "%1""
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014ddeexec]
@="[open("%1")]"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014ddeexecApplication]
@="AutoCAD.r19.DDE"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014ddeexecTopic]
@="System"
This allows both AutoCAD 2006 and AutoCAD 2014 to coexist on the same system, AutoCAD 2014 being the default one, and you can right-click any .dwg
file and open with AutoCAD 2006.
This was created because some of our architects are relutant to upgrade from AutoCAD 2006, and some of our scripts are only compatible with AutoCAD 2006.
This does not answer the fundamental question though, so I'm not accepting it as answer. How to reset the DWG association setting on AutoCAD remains a mystery.
add a comment |
I managed to workaround the problem, and even have a better handling of .dwg
files behaviour by changing the way I install the file association.
Instead of modifying HKEY_CLASSES_ROOT.dwg
, I just leave that alone and modify HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.dwgUserChoice
instead.
This overrides the default association for .dwg
files, and AutoCAD won't even bother.
If anyone is curious, this is what I'm doing:
AutoCAD_2006_2014.reg
Windows Registry Editor Version 5.00
[-HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.dwg]
[-HKEY_CLASSES_ROOTAutoCAD.Drawing.Multi]
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.dwgUserChoice]
"Progid"="AutoCAD.Drawing.Multi"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.Multi]
@="Open with AutoCAD 2014 / 2006"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultiDefaultIcon]
@="C:\Program Files\Autodesk\AutoCAD 2014\en-US\acadficn.dll,49"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.Multishell]
@="Open_with_AutoCAD_2014"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006]
@="Open with AutoCAD 2006"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006command]
@=""C:\Program Files (x86)\AutoCAD 2006\acad.exe" "%1""
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006ddeexec]
@="[open("%1")]"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006ddeexecApplication]
@="AutoCAD.r16.DDE"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006ddeexecTopic]
@="System"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014]
@="Open with AutoCAD 2014"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014command]
@=""C:\Program Files\Autodesk\AutoCAD 2014\acad.exe" "%1""
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014ddeexec]
@="[open("%1")]"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014ddeexecApplication]
@="AutoCAD.r19.DDE"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014ddeexecTopic]
@="System"
This allows both AutoCAD 2006 and AutoCAD 2014 to coexist on the same system, AutoCAD 2014 being the default one, and you can right-click any .dwg
file and open with AutoCAD 2006.
This was created because some of our architects are relutant to upgrade from AutoCAD 2006, and some of our scripts are only compatible with AutoCAD 2006.
This does not answer the fundamental question though, so I'm not accepting it as answer. How to reset the DWG association setting on AutoCAD remains a mystery.
add a comment |
I managed to workaround the problem, and even have a better handling of .dwg
files behaviour by changing the way I install the file association.
Instead of modifying HKEY_CLASSES_ROOT.dwg
, I just leave that alone and modify HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.dwgUserChoice
instead.
This overrides the default association for .dwg
files, and AutoCAD won't even bother.
If anyone is curious, this is what I'm doing:
AutoCAD_2006_2014.reg
Windows Registry Editor Version 5.00
[-HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.dwg]
[-HKEY_CLASSES_ROOTAutoCAD.Drawing.Multi]
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.dwgUserChoice]
"Progid"="AutoCAD.Drawing.Multi"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.Multi]
@="Open with AutoCAD 2014 / 2006"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultiDefaultIcon]
@="C:\Program Files\Autodesk\AutoCAD 2014\en-US\acadficn.dll,49"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.Multishell]
@="Open_with_AutoCAD_2014"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006]
@="Open with AutoCAD 2006"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006command]
@=""C:\Program Files (x86)\AutoCAD 2006\acad.exe" "%1""
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006ddeexec]
@="[open("%1")]"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006ddeexecApplication]
@="AutoCAD.r16.DDE"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006ddeexecTopic]
@="System"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014]
@="Open with AutoCAD 2014"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014command]
@=""C:\Program Files\Autodesk\AutoCAD 2014\acad.exe" "%1""
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014ddeexec]
@="[open("%1")]"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014ddeexecApplication]
@="AutoCAD.r19.DDE"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014ddeexecTopic]
@="System"
This allows both AutoCAD 2006 and AutoCAD 2014 to coexist on the same system, AutoCAD 2014 being the default one, and you can right-click any .dwg
file and open with AutoCAD 2006.
This was created because some of our architects are relutant to upgrade from AutoCAD 2006, and some of our scripts are only compatible with AutoCAD 2006.
This does not answer the fundamental question though, so I'm not accepting it as answer. How to reset the DWG association setting on AutoCAD remains a mystery.
I managed to workaround the problem, and even have a better handling of .dwg
files behaviour by changing the way I install the file association.
Instead of modifying HKEY_CLASSES_ROOT.dwg
, I just leave that alone and modify HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.dwgUserChoice
instead.
This overrides the default association for .dwg
files, and AutoCAD won't even bother.
If anyone is curious, this is what I'm doing:
AutoCAD_2006_2014.reg
Windows Registry Editor Version 5.00
[-HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.dwg]
[-HKEY_CLASSES_ROOTAutoCAD.Drawing.Multi]
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.dwgUserChoice]
"Progid"="AutoCAD.Drawing.Multi"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.Multi]
@="Open with AutoCAD 2014 / 2006"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultiDefaultIcon]
@="C:\Program Files\Autodesk\AutoCAD 2014\en-US\acadficn.dll,49"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.Multishell]
@="Open_with_AutoCAD_2014"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006]
@="Open with AutoCAD 2006"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006command]
@=""C:\Program Files (x86)\AutoCAD 2006\acad.exe" "%1""
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006ddeexec]
@="[open("%1")]"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006ddeexecApplication]
@="AutoCAD.r16.DDE"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2006ddeexecTopic]
@="System"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014]
@="Open with AutoCAD 2014"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014command]
@=""C:\Program Files\Autodesk\AutoCAD 2014\acad.exe" "%1""
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014ddeexec]
@="[open("%1")]"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014ddeexecApplication]
@="AutoCAD.r19.DDE"
[HKEY_CLASSES_ROOTAutoCAD.Drawing.MultishellOpen_with_AutoCAD_2014ddeexecTopic]
@="System"
This allows both AutoCAD 2006 and AutoCAD 2014 to coexist on the same system, AutoCAD 2014 being the default one, and you can right-click any .dwg
file and open with AutoCAD 2006.
This was created because some of our architects are relutant to upgrade from AutoCAD 2006, and some of our scripts are only compatible with AutoCAD 2006.
This does not answer the fundamental question though, so I'm not accepting it as answer. How to reset the DWG association setting on AutoCAD remains a mystery.
answered Aug 21 '15 at 20:50
Havenard
748414
748414
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f727874%2fhow-to-change-dwg-association-setting-on-autocad%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown