Reputation: 11
none of this has worked.
detals from the error window:
Name: From: %AppData%/Local/Celigo/Applications/NetSuite for outlook/Celigo.NetSuiteAddIn.vsto
************** Exception Text ************** System.IO.FileNotFoundException: The system cannot find the file specified. (Exception from HRESULT: 0x80070002) at System.Deployment.Internal.Isolation.IsolationInterop.GetUserStore(UInt32 Flags, IntPtr hToken, Guid& riid) at System.Deployment.Internal.Isolation.IsolationInterop.GetUserStore() at System.Deployment.Application.ComponentStore..ctor(ComponentStoreType storeType, SubscriptionStore subStore) at System.Deployment.Application.SubscriptionStore..ctor(String deployPath, String tempPath, ComponentStoreType storeType) at System.Deployment.Application.SubscriptionStore.get_CurrentUser() at System.Deployment.Application.DeploymentManager..ctor(Uri deploymentSource, Boolean isUpdate, Boolean isConfirmed, DownloadOptions downloadOptions, AsyncOperation optionalAsyncOp) at System.Deployment.Application.InPlaceHostingManager..ctor(Uri deploymentManifest, Boolean launchInHostProcess) at Microsoft.VisualStudio.Tools.Applications.Deployment.IPHMProxy..ctor(Uri uri) at Microsoft.VisualStudio.Tools.Applications.Deployment.ClickOnceAddInDeploymentManager.get_Proxy() at Microsoft.VisualStudio.Tools.Applications.Deployment.ClickOnceAddInDeploymentManager.GetManifests(TimeSpan timeout) at Microsoft.VisualStudio.Tools.Applications.Deployment.ClickOnceAddInDeploymentManager.InstallAddIn()
If you need any more details let me know.
Upvotes: 0
Views: 1251
Reputation: 21
The problem is that variables APPDATA
and LOCALAPPDATA
are no longer defined for that userprofile.
To verify:
open a command line, type set
. These variables will not be listed.
FIX:
create a new userprofile.
Upvotes: 1