I installed one project(which is created in VBE 2005) in one system
Everything is fine.
I just want to know where it is installed.The project is not in program files.
:confused:
thanks
Printable View
I installed one project(which is created in VBE 2005) in one system
Everything is fine.
I just want to know where it is installed.The project is not in program files.
:confused:
thanks
If you published it then it was installed in the ClickOnce cache, which is area managed by the .NET Framework. All installation, uninstallation and updating is managed by the Framework via ClickOnce so there should be no need for you to access the actual files. Just do a search for your EXE's file name if you want to find it, but you should read up on ClickOnce.
http://search.msdn.microsoft.com/sea...uery=clickonce
Thank you
My problem is i inistalled my project in server.
And i want to put one short cut on server desktop.It is working on server.From that server i want to give access to terminal users.But Terminal systems can't access this shortcut.
ERROR Details:
VB Code:
PLATFORM VERSION INFO Windows : 5.2.3000.6500(Win32NT) Common Language Runtime : 2.0.50000.42 System.Deployment.dll : 2.0.50000.42 (RTM.05000-4000) mscorwks.dll : 2.0.50000.42 (RTM.05000-4000) dfdll.dll : 2.0.50000.42 (RTM.050000-4000) SOURCES Deployment url : file:///Z:/Documents%20and%20Settings/Admin.c/Start%20Menu/Programs/c%20Ltd/ShiOr.appref-ms ERROR SUMMARY Below is a summary of the errors, details of these errors are listed later in the log. * Activation of Z:\Documents and Settings\Admin.c\Start Menu\Programs\C Ltd\ShiOr.appref-ms resulted in exception. Following failure messages were detected: + Shortcut activation from http/https or UNC sources is not allowed: Z:\Documents and Settings\Admin.c\Start Menu\Programs\C Ltd\ShiOr.appref-ms. COMPONENT STORE TRANSACTION FAILURE SUMMARY No transaction error was detected. WARNINGS There were no warnings during this operation. OPERATION PROGRESS STATUS No phase information is available. ERROR DETAILS Following errors were detected during this operation. * [26/07/2006 14:25:45] System.Deployment.Application.InvalidDeploymentException (UriNotSupportedForShortcut) - Shortcut activation from http/https or UNC sources is not allowed: Z:\Documents and Settings\Admin.c\Start Menu\Programs\C Ltd\ShiOr.appref-ms. - Source: System.Deployment - Stack trace: at System.Deployment.Application.UriHelper.ValidateSupportedActivationUrlForShortcut(String activationUrl) at System.Deployment.Application.ApplicationActivator.ActivateDeploymentWorker(Object state) COMPONENT STORE TRANSACTION DETAILS No transaction information is available.
ClickOnce has limitations. I don't know but that might be one of them. As I said, you should read up about ClickOnce. It's important to understand as best you can the tools you're using. If ClickOnce cannot do the job then you'll need to use an MSI installer, which VB Express cannot create. If you don't want to pay for InstallShield or the like, which I'm guessing that you don't if you're using VB Express, then I'd suggest NSIS or Inno. You can also use ISTool to make Inno a little more user friendly. ISTool is installed along with Inno if you download the appropriate package.
really it is a bit confusing to me.
I can't find .exe file in server.
But i found .exe file in my system.
Thanks