Can the VCS be run as a standalone program (Not Add-in)? #605
-
My organization is really tight on security. Everytime I run the VCS, I get an "The wizard you've requested is not installed or is in a bad state." error. I've tried installing it without the Ribbon, as an ACCDE, and even with the location Trusted. Looking through my security settings, I can't use COM Add-Ins or Trust Locations. There's been talk of disabling Trusted Documents, even. 😥 Is there any way to use this as a standalone program, instead of as an Access Add-in? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
To directly answer your question, no, this is only designed to run as an add-in. For some very basic functionality, you could look at the original project this add-in was inspired from, msaccess-vcs-integration/msaccess-vcs-integration, however this legacy project has had few updates and lacks much of the functionality of this add-in. I am sorry to hear of the challenges with security. It can be a difficult balance between maintaining a secure environment while still giving people the tools to get their job done. You may have already seen this, but I have put together a Security Considerations page that outlines what this add-in requires and why. This could be a good starting point for a discussion with your supervisor and/or security team to understand your needs. I recognize that from the perspective of those responsible for security, they would prefer to keep things just as secure as possible. I understand that, and that this is their responsibility and focus. But the balance to this is that people need to perform their job functions effectively to ultimately be successful in the overall mission of the organization. If they are open to a broader perspective, here are a few points that could be helpful in the discussion.
Ultimately your organization is going to have to decide what is more important to them. It is "more secure" to not use computers at all, and not have any people at the office, but it's kind of hard to get much done that way. 😁 Hopefully you can have some profitable discussions with some of the leadership and effectively communicate how the benefits of the tool outweigh the perceived risks. (In reality, if you are developing and using Microsoft Access applications, almost all of those risks are already there.) I have tried to do what I can to keep those risks as low as possible, but let me know if you have additional input on how we can make this tool more available to developers working in secured environments. |
Beta Was this translation helpful? Give feedback.
-
You could try whether you can start the add-in from the application folder.
|
Beta Was this translation helpful? Give feedback.
-
Fellow Very Securious Org member here. We have had to work with our IT / OT groups to allow us to use this addon, in fact, so much so that they made us install it into a separate location even from the addin's normal spot. We've also experienced the issues you mentioned. A few tips that have helped us:
For some users, even opening the add-in after install didn't work. In this case, we did the following:
Access finally has the ability to sign the VBA environment, so you should be able to sign your code environment with a code signing certificate; this has the added benefit of increasing trust in your org. You will either need to get a code signing cert from your org or make your own. |
Beta Was this translation helpful? Give feedback.
You could try whether you can start the add-in from the application folder.
Application.Run CurrentProject.Path & "\Version Control.AddInMenuItemLaunch"