Quantcast
Channel: Configuration and Deployment
Viewing all 3561 articles
Browse latest View live

HTTP Error 403.14 - Forbidden

$
0
0

I got the error in a simple ASP.NET WEB API 2 project.

HTTP Error 403.14 - Forbidden

The Web server is configured to not list the contents of this directory.

So I configured IIS Express in Windows 7.

I am sure that I enabled the Directory Browsing. See the image.

https://www.flickr.com/photos/67801243@N06/24637214291/in/dateposted-public/

But nothing changed.


Different web.configs for the same project depending on which site is requested

$
0
0

In my web application I want two different authentication modes. Windows and Forms.

What I'm trying to achieve:

For irrelevant reasons I need to set up two different sites in IIS. One site is using Windows Authentication the other one Forms. I want the sites to be mapped to the same project. The only difference should be the web.config file, simply put one line:

Web.config 1

<authentication mode="Forms" />
<authorization>
<deny users="?" />
</authorization>
Web.config 2

<authentication mode="Windows" />
<authorization>
<deny users="?" />
</authorization>
An easy solution would be to simple have two sites mapped to two identical projects, containing different configs. Although, this could cause problems/difficulties in the future regarding maintenance, since one has to remember to publish new changes to both of the projects.

"If a client tries to enter site 1 with url XXX they should be prompted the Windows Autentication (configured in browser to support SSO). If a client tries to enter site 2 with url yyy they should be prompted to enter credentials for a SQL user in a form login."

Is it somehow possible to achieve my desire without having two identical projects?

Regards,
ChrisRunn

publish website without source code

$
0
0

how can I publish my vb website without the source code?

I'm using VS2015

I have tried to right click on website name in the solution explorer and followed the publish wizard but the folder the website is published to contains the source code which I dont want 

please someone help

HELP! I didn't know synchronizing files will actually delete them! I'm trying to get aspx files to run on IIS

$
0
0

Hello! Out of all of Microsoft's forum topics, I didn't know which one to put this under, so I tried to get as close as I could..... I have read a number of articles trying to get an ASP.Net application to work in IIS. The one that seemed to fit the configurations I have on my machine are in this article. I edited my permissions so that I could synchronize because before I was getting an error indicating that I couldn't create a folder  'App Data' as access was denied. SO, I went back to the 'Copy Web Site' screen and certain files had a red circle with an x in them (error Icon). When I clicked the syncronize button, almost all of my files got deleted from the main source as opposed to copying over to the wwwroot section like this page suggests. You can see below, that it says all of these files are now deleted....

Luckily, I had a copy of these files, on a flash drive, and I tried to copy those back to the location where Visual Studio picks up projects from. I tried to open the aspx files from there, but Solution Explorer still didn't recognize those. Here are the files in Windows Explorer:

At this point, I am afraid to do any more, so please be respectful of that in your response. I have tried to do my research, and paste as much information as I can in here. I am wondering:

A) Is there any way to get those .aspx files to be recognized again by Solution Explorer,

B) What I need to do in order to copy these files to the right folder so I can test them in IIS

C) How in the heck to you COPY files rather than DELETE them in the synchronization? Note that I even tried copying one by one on the left side of the screen, and that seemed to have the effect of deleting rather than copying.

Your help is appreciated. 

Performance of ASP.Net when Umbraco is used

$
0
0

Hi Team,

I am planning to do the following config changes. Can someone explain the advantages and disadvantages for below config related

  1. IIS7.5 does not show startMode property in advance settings but to setup the pool set the attribute startMode to AlwaysRunning of the IIS config file i.e., C:\Windows\System32\inetsrv\config\applicationHost.config:

<applicationPools>

    <add name="MyAppWorkerProcess" managedRuntimeVersion="v4.0" startMode="AlwaysRunning" />

</applicationPools>

2. Web.config level adding batch and optimizeCompilations

<system.web>

       <compilation debug="true" targetFramework="4.0" batch="false" optimizeCompilations="true" />

</system.web>

Compiler Error Message: The compiler failed with error code -532462766.

$
0
0

I get this error message on publishing my site. 
Can anyone tell me what is the reason for this, it works when i run it on my localhost

Crystal report error

$
0
0

i try to create a crystal report when i build it shows this

where as i write code on page load

code

 protected void Page_Load(object sender, EventArgs e)
        {
            //report code
            DataSet ds = new DataSet();
            Class1 myclass = new Class1();
            ds.Tables.Add(myclass.report1().Copy());
            ds.Tables[0].TableName = "spcustomers";

            CrystalReport1 report = new CrystalReport1();
            report.SetDataSource(ds);
            CrystalReportViewer1.ReportSource = report;
            CrystalReportViewer1.DataBind();

        }

any help

access my website through host name having public ip

$
0
0

i have deployed one application under default web site and i can access its contents publicly through internet using public ip. now i have added another web site and i want to access an application under this web site publicly through internet using host name but cant. i have added firewall rule for the port. i have added the host name in hosts file in the server. i have added binding with the newly web site having the public ip, port and hostname.

[although i can access the website from server where i deploy it with the same settings]

so i want to access my new website content using public ip and hostname. please tell me how it is possible and if i am missing something then please guide me,

thanks

.


How to publish a site to the server

$
0
0

I'm trying to publish a small test site to a server. There is no database, all the site do is show a page when going to HomeController.

I started with right click on the project name a selected Publish.

Then i created a new Profile - "TestProfile"

Publish method is set to File system

In Settings Configuration is set to Release

After clicking Publish the files are copied to disk and i copy them.

In IIS Manager on the server i create a new website (Add website)

Fysical path is pointed to the folder with the files from publish.

Type is http, hostname is "test", Port is 80, IP is server ip

Trying to browse the site results in "This page can't be displayed"

What am i doing wrong?

Publishing vbproj containing nuget package

$
0
0

I'm using Nuget package first time in my visual studio 2015 vb project. It is working fine while running from local host, however when I publish application to remote server, nuget do not work. I need to understand this process of publishing while having nuget package in an application. Anyone could guide me please.

Regards,

Adeel

Hosting Site with self signed certification in IIS

$
0
0

Hi Team,  

We was already having an application with hosted with default http protocol. I have created a self signed certificate  and hosted site  with https .  While browsing the site internally through in the server where site is hosted there by hittinghttps://testsiteabc.com in IE the site gets displayed properly.  But While Accesing from outside from the server the its not getting displayed. is that something related Port 443 ? Please let me know how would it be achievable?. 

Creating an MSI from MVC Application

$
0
0

I have finished building my Web Application and it now needs to be packaged up into an MSI so that when clients buy it, I can just send it to them with a license key and it will do everything I need.

I have installed Microsoft Visual Studio 2013 Installer Projects and tried to make some sort of MSI with it. It doesn't run very well and I don't understand the log.

Could someone please point me in the direction of an in-depth tutorial about what I need to be doing or let me know what is going wrong in the log below.

=== Verbose logging started: 19/02/2016  13:40:20  Build type: SHIP UNICODE 5.00.9600.00  Calling process: C:\WINDOWS\system32\msiexec.exe ===
MSI (c) (E0:70) [13:40:20:579]: Font created.  Charset: Req=0, Ret=0, Font: Req=MS Shell Dlg, Ret=MS Shell Dlg

MSI (c) (E0:70) [13:40:20:579]: Font created.  Charset: Req=0, Ret=0, Font: Req=MS Shell Dlg, Ret=MS Shell Dlg

MSI (c) (E0:50) [13:40:20:579]: Resetting cached policy values
MSI (c) (E0:50) [13:40:20:579]: Machine policy value 'Debug' is 0
MSI (c) (E0:50) [13:40:20:579]: ******* RunEngine:
           ******* Product: UtilityInstaller.msi
           ******* Action: 
           ******* CommandLine: **********
MSI (c) (E0:50) [13:40:20:579]: Machine policy value 'DisableUserInstalls' is 0
MSI (c) (E0:50) [13:40:20:579]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer 3: 2 
MSI (c) (E0:50) [13:40:20:579]: SOFTWARE RESTRICTION POLICY: Verifying package --> 'C:\Users\JohZant\Desktop\UtilityInstaller.msi' against software restriction policy
MSI (c) (E0:50) [13:40:20:579]: SOFTWARE RESTRICTION POLICY: C:\Users\JohZant\Desktop\UtilityInstaller.msi has a digital signature
MSI (c) (E0:50) [13:40:20:610]: SOFTWARE RESTRICTION POLICY: C:\Users\JohZant\Desktop\UtilityInstaller.msi is permitted to run at the 'unrestricted' authorization level.
MSI (c) (E0:50) [13:40:20:626]: Cloaking enabled.
MSI (c) (E0:50) [13:40:20:626]: Attempting to enable all disabled privileges before calling Install on Server
MSI (c) (E0:50) [13:40:20:626]: End dialog not enabled
MSI (c) (E0:50) [13:40:20:626]: Original package ==> C:\Users\JohZant\Desktop\UtilityInstaller.msi
MSI (c) (E0:50) [13:40:20:626]: Package we're running from ==> C:\Users\JohZant\Desktop\UtilityInstaller.msi
MSI (c) (E0:50) [13:40:20:626]: APPCOMPAT: Compatibility mode property overrides found.
MSI (c) (E0:50) [13:40:20:626]: APPCOMPAT: looking for appcompat database entry with ProductCode '{F1508A93-2D05-45AD-9F4D-E1F7EE693A15}'.
MSI (c) (E0:50) [13:40:20:626]: APPCOMPAT: no matching ProductCode found in database.
MSI (c) (E0:50) [13:40:20:641]: MSCOREE not loaded loading copy from system32
MSI (c) (E0:50) [13:40:20:641]: Machine policy value 'TransformsSecure' is 0
MSI (c) (E0:50) [13:40:20:641]: User policy value 'TransformsAtSource' is 0
MSI (c) (E0:50) [13:40:20:641]: Note: 1: 2262 2: MsiFileHash 3: -2147287038 
MSI (c) (E0:50) [13:40:20:641]: Machine policy value 'DisablePatch' is 0
MSI (c) (E0:50) [13:40:20:641]: Machine policy value 'AllowLockdownPatch' is 0
MSI (c) (E0:50) [13:40:20:641]: Machine policy value 'DisableMsi' is 0
MSI (c) (E0:50) [13:40:20:641]: Machine policy value 'AlwaysInstallElevated' is 0
MSI (c) (E0:50) [13:40:20:641]: User policy value 'AlwaysInstallElevated' is 0
MSI (c) (E0:50) [13:40:20:641]: Running product '{F1508A93-2D05-45AD-9F4D-E1F7EE693A15}' with user privileges: It's not assigned.
MSI (c) (E0:50) [13:40:20:641]: Machine policy value 'DisableLUAPatching' is 0
MSI (c) (E0:50) [13:40:20:641]: Machine policy value 'DisableFlyWeightPatching' is 0
MSI (c) (E0:50) [13:40:20:641]: APPCOMPAT: looking for appcompat database entry with ProductCode '{F1508A93-2D05-45AD-9F4D-E1F7EE693A15}'.
MSI (c) (E0:50) [13:40:20:641]: APPCOMPAT: no matching ProductCode found in database.
MSI (c) (E0:50) [13:40:20:641]: Transforms are not secure.
MSI (c) (E0:50) [13:40:20:641]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is 'C:\Users\JohZant\Desktop\log.text'.
MSI (c) (E0:50) [13:40:20:641]: Command Line: CURRENTDIRECTORY=C:\Users\JohZant\Desktop CLIENTUILEVEL=0 CLIENTPROCESSID=6624 
MSI (c) (E0:50) [13:40:20:641]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{EC55B208-6AB5-4ACD-B1A9-86B749AE2A0B}'.
MSI (c) (E0:50) [13:40:20:641]: Product Code passed to Engine.Initialize:           ''
MSI (c) (E0:50) [13:40:20:641]: Product Code from property table before transforms: '{F1508A93-2D05-45AD-9F4D-E1F7EE693A15}'
MSI (c) (E0:50) [13:40:20:641]: Product Code from property table after transforms:  '{F1508A93-2D05-45AD-9F4D-E1F7EE693A15}'
MSI (c) (E0:50) [13:40:20:641]: Product not registered: beginning first-time install
MSI (c) (E0:50) [13:40:20:641]: PROPERTY CHANGE: Modifying ALLUSERS property. Its current value is '2'. Its new value: '1'.
MSI (c) (E0:50) [13:40:20:641]: PROPERTY CHANGE: Adding ProductState property. Its value is '-1'.
MSI (c) (E0:50) [13:40:20:641]: Entering CMsiConfigurationManager::SetLastUsedSource.
MSI (c) (E0:50) [13:40:20:641]: User policy value 'SearchOrder' is 'nmu'
MSI (c) (E0:50) [13:40:20:641]: Adding new sources is allowed.
MSI (c) (E0:50) [13:40:20:641]: PROPERTY CHANGE: Adding PackagecodeChanging property. Its value is '1'.
MSI (c) (E0:50) [13:40:20:641]: Package name extracted from package path: 'UtilityInstaller.msi'
MSI (c) (E0:50) [13:40:20:641]: Package to be registered: 'UtilityInstaller.msi'
MSI (c) (E0:50) [13:40:20:641]: Note: 1: 2262 2: Error 3: -2147287038 
MSI (c) (E0:50) [13:40:20:641]: Note: 1: 2262 2: AdminProperties 3: -2147287038 
MSI (c) (E0:50) [13:40:20:641]: Machine policy value 'AlwaysInstallElevated' is 0
MSI (c) (E0:50) [13:40:20:641]: User policy value 'AlwaysInstallElevated' is 0
MSI (c) (E0:50) [13:40:20:641]: Running product '{F1508A93-2D05-45AD-9F4D-E1F7EE693A15}' with user privileges: It's not assigned.
MSI (c) (E0:50) [13:40:20:641]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'C:\Users\JohZant\Desktop'.
MSI (c) (E0:50) [13:40:20:641]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '0'.
MSI (c) (E0:50) [13:40:20:641]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '6624'.
MSI (c) (E0:50) [13:40:20:641]: TRANSFORMS property is now: 
MSI (c) (E0:50) [13:40:20:641]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '200'.
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\Users\JohZant\AppData\Roaming
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\Users\JohZant\Favorites
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\Users\JohZant\AppData\Roaming\Microsoft\Windows\Network Shortcuts
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\Users\JohZant\Documents
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\Users\JohZant\AppData\Roaming\Microsoft\Windows\Printer Shortcuts
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\Users\JohZant\AppData\Roaming\Microsoft\Windows\Recent
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\Users\JohZant\AppData\Roaming\Microsoft\Windows\SendTo
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\Users\JohZant\AppData\Roaming\Microsoft\Windows\Templates
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\ProgramData
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\Users\JohZant\AppData\Local
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\Users\JohZant\Pictures
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\Users\JohZant\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\Users\JohZant\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\Users\JohZant\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\Users\JohZant\AppData\Roaming\Microsoft\Windows\Start Menu
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\Users\JohZant\Desktop
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Templates
MSI (c) (E0:50) [13:40:20:641]: SHELL32::SHGetFolderPath returned: C:\WINDOWS\Fonts
MSI (c) (E0:50) [13:40:20:641]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16 
MSI (c) (E0:50) [13:40:20:641]: MSI_LUA: Setting AdminUser property to 1 because this is the client or the user has already permitted elevation
MSI (c) (E0:50) [13:40:20:641]: PROPERTY CHANGE: Adding AdminUser property. Its value is '1'.
MSI (c) (E0:50) [13:40:20:641]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'.
MSI (c) (E0:50) [13:40:20:641]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2 
MSI (c) (E0:50) [13:40:20:641]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'JohZant'.
MSI (c) (E0:50) [13:40:20:641]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2 
MSI (c) (E0:50) [13:40:20:641]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'C:\Users\JohZant\Desktop\UtilityInstaller.msi'.
MSI (c) (E0:50) [13:40:20:641]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'C:\Users\JohZant\Desktop\UtilityInstaller.msi'.
MSI (c) (E0:50) [13:40:20:641]: Machine policy value 'MsiDisableEmbeddedUI' is 0
MSI (c) (E0:50) [13:40:20:641]: PROPERTY CHANGE: Adding SourceDir property. Its value is 'C:\Users\JohZant\Desktop\'.
MSI (c) (E0:50) [13:40:20:641]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is 'C:\Users\JohZant\Desktop\'.
MSI (c) (E0:70) [13:40:20:641]: PROPERTY CHANGE: Adding VersionHandler property. Its value is '5.00'.
=== Logging started: 19/02/2016  13:40:20 ===
MSI (c) (E0:50) [13:40:20:657]: Note: 1: 2262 2: PatchPackage 3: -2147287038 
MSI (c) (E0:50) [13:40:20:657]: Machine policy value 'DisableRollback' is 0
MSI (c) (E0:50) [13:40:20:657]: User policy value 'DisableRollback' is 0
MSI (c) (E0:50) [13:40:20:657]: PROPERTY CHANGE: Adding UILevel property. Its value is '5'.
MSI (c) (E0:50) [13:40:20:657]: Note: 1: 2262 2: Font 3: -2147287038 
MSI (c) (E0:50) [13:40:20:657]: Note: 1: 2203 2: C:\WINDOWS\Installer\inprogressinstallinfo.ipi 3: -2147287038 
MSI (c) (E0:50) [13:40:20:657]: Note: 1: 2262 2: LaunchCondition 3: -2147287038 
MSI (c) (E0:50) [13:40:20:657]: APPCOMPAT: [DetectVersionLaunchCondition] Launch condition already passes.
MSI (c) (E0:50) [13:40:20:657]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
MSI (c) (E0:50) [13:40:20:657]: Doing action: INSTALL
MSI (c) (E0:50) [13:40:20:657]: Note: 1: 2262 2: ActionText 3: -2147287038 
Action 13:40:20: INSTALL. 
Action start 13:40:20: INSTALL.
MSI (c) (E0:50) [13:40:20:657]: UI Sequence table 'InstallUISequence' is present and populated.
MSI (c) (E0:50) [13:40:20:657]: Running UISequence
MSI (c) (E0:50) [13:40:20:657]: PROPERTY CHANGE: Adding EXECUTEACTION property. Its value is 'INSTALL'.
MSI (c) (E0:50) [13:40:20:657]: Doing action: DIRCA_CheckFX
Action 13:40:20: DIRCA_CheckFX. 
Action start 13:40:20: DIRCA_CheckFX.
MSI (c) (E0:50) [13:40:20:657]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'DIRCA_CheckFX' 
MSI (c) (E0:70) [13:40:20:657]: Invoking remote custom action. DLL: C:\Users\JohZant\AppData\Local\Temp\MSI1567.tmp, Entrypoint: CheckFX
MSI (c) (E0:3C) [13:40:20:657]: Cloaking enabled.
MSI (c) (E0:3C) [13:40:20:657]: Attempting to enable all disabled privileges before calling Install on Server
MSI (c) (E0:3C) [13:40:20:657]: Connected to service for CA interface.
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: Custom Action is starting...
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: CoInitializeEx - COM initialization Apartment Threaded...
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: MsiGetPropertyW - Determine size of property 'VSDFrameworkVersion'
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: Allocating space...
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: MsiGetPropertyW - Getting Property 'VSDFrameworkVersion'...
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: Property 'VSDFrameworkVersion'  retrieved with value 'ANY'.
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: MsiGetPropertyW - Determine size of property 'VSDFrameworkProfile'
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: Property 'VSDFrameworkProfile'  retrieved with value ''.
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: Found a version of MSCOREE.DLL
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: Set VSDNETMSG with the FrameworkVersion.
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: MsiGetPropertyW - Determine size of property 'VSDNETMSG'
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: Allocating space...
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: MsiGetPropertyW - Getting Property 'VSDNETMSG'...
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: Property 'VSDNETMSG'  retrieved with value 'This setup requires the .NET Framework version [1].  Please install the .NET Framework and run this setup again.'.
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: MsiSetPropertyW - Setting Property Value...
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: MsiSetPropertyW - Setting property 'VSDNETMSG' to 'This setup requires the .NET Framework version ANY.  Please install the .NET Framework and run this setup again.'.
MSI (c) (E0!70) [13:40:20:688]: PROPERTY CHANGE: Modifying VSDNETMSG property. Its current value is 'This setup requires the .NET Framework version [1].  Please install the .NET Framework and run this setup again.'. Its new value: 'This setup requires the .NET Framework version ANY.  Please install the .NET Framework and run this setup again.'.
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: MsiGetPropertyW - Determine size of property 'VSDNETURLMSG'
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: Allocating space...
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: MsiGetPropertyW - Getting Property 'VSDNETURLMSG'...
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: Property 'VSDNETURLMSG'  retrieved with value 'This setup requires the .NET Framework version [1].  Please install the .NET Framework and run this setup again.  The .NET Framework can be obtained from the web.  Would you like to do this now?'.
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: MsiSetPropertyW - Setting Property Value...
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: MsiSetPropertyW - Setting property 'VSDNETURLMSG' to 'This setup requires the .NET Framework version ANY.  Please install the .NET Framework and run this setup again.  The .NET Framework can be obtained from the web.  Would you like to do this now?'.
MSI (c) (E0!70) [13:40:20:688]: PROPERTY CHANGE: Modifying VSDNETURLMSG property. Its current value is 'This setup requires the .NET Framework version [1].  Please install the .NET Framework and run this setup again.  The .NET Framework can be obtained from the web.  Would you like to do this now?'. Its new value: 'This setup requires the .NET Framework version ANY.  Please install the .NET Framework and run this setup again.  The .NET Framework can be obtained from the web.  Would you like to do this now?'.
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: MsiSetPropertyW - Setting Property Value...
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: MsiSetPropertyW - Setting property 'VSDFXAvailable' to 'TRUE'.
MSI (c) (E0!70) [13:40:20:688]: PROPERTY CHANGE: Adding VSDFXAvailable property. Its value is 'TRUE'.
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: Writing config file with version: '2.0.50727;4.0.0;'...
INFO   : [02/19/2016 13:40:20:688] [CheckFX                                 ]: Creating Config File...
DEBUG  : [02/19/2016 13:40:20:704] [CheckFX                                 ]: Calling MsiGetActiveDatabase...
DEBUG  : [02/19/2016 13:40:20:704] [CheckFX                                 ]: Calling MsiDatabaseOpenView...
DEBUG  : [02/19/2016 13:40:20:704] [CheckFX                                 ]: Calling MsiViewExecute...
DEBUG  : [02/19/2016 13:40:20:704] [CheckFX                                 ]: Calling MsiViewFetch...
DEBUG  : [02/19/2016 13:40:20:704] [CheckFX                                 ]: Calling MsiRecordDataSize...
INFO   : [02/19/2016 13:40:20:704] [CheckFX                                 ]: MsiSetPropertyW - Setting Property Value...
INFO   : [02/19/2016 13:40:20:704] [CheckFX                                 ]: MsiSetPropertyW - Setting property 'VSDFxConfigFile' to 'C:\Users\JohZant\AppData\Local\Temp\CFG1587.tmp'.
MSI (c) (E0!70) [13:40:20:704]: PROPERTY CHANGE: Adding VSDFxConfigFile property. Its value is 'C:\Users\JohZant\AppData\Local\Temp\CFG1587.tmp'.
INFO   : [02/19/2016 13:40:20:704] [CheckFX                                 ]: Custom Action succeeded.
INFO   : [02/19/2016 13:40:20:704] [CheckFX                                 ]: Custom Action completed with return code: '0'
Action ended 13:40:20: DIRCA_CheckFX. Return value 1.
MSI (c) (E0:50) [13:40:20:704]: Skipping action: ERRCA_UIANDADVERTISED (condition is false)
MSI (c) (E0:50) [13:40:20:704]: Doing action: AppSearch
Action 13:40:20: AppSearch. Searching for installed applications
Action start 13:40:20: AppSearch.
MSI (c) (E0:50) [13:40:20:704]: Note: 1: 2262 2: AppSearch 3: -2147287038 
Action ended 13:40:20: AppSearch. Return value 1.
MSI (c) (E0:50) [13:40:20:704]: Doing action: FindRelatedProducts
Action 13:40:20: FindRelatedProducts. Searching for related applications
Action start 13:40:20: FindRelatedProducts.
Action ended 13:40:20: FindRelatedProducts. Return value 1.
MSI (c) (E0:50) [13:40:20:704]: Doing action: VSDCA_VsdLaunchConditions
Action 13:40:20: VSDCA_VsdLaunchConditions. 
Action start 13:40:20: VSDCA_VsdLaunchConditions.
MSI (c) (E0:50) [13:40:20:704]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'VSDCA_VsdLaunchConditions' 
MSI (c) (E0:20) [13:40:20:704]: Invoking remote custom action. DLL: C:\Users\JohZant\AppData\Local\Temp\MSI1597.tmp, Entrypoint: VsdLaunchConditions
INFO   : [02/19/2016 13:40:20:704] [VsdLaunchConditions                     ]: Custom Action is starting...
INFO   : [02/19/2016 13:40:20:704] [VsdLaunchConditions                     ]: CoInitializeEx - COM initialization Apartment Threaded...
INFO   : [02/19/2016 13:40:20:704] [VsdLaunchConditions                     ]: Enumerating table using SQL statement: 'SELECT * FROM `_VsdLaunchCondition`'
INFO   : [02/19/2016 13:40:20:704] [VsdLaunchConditions                     ]: Calling MsiGetActiveDatabase...
INFO   : [02/19/2016 13:40:20:704] [VsdLaunchConditions                     ]: MsiDatabaseOpenViewW - Prepare Database to view table...
INFO   : [02/19/2016 13:40:20:704] [VsdLaunchConditions                     ]: TMsiViewExecute - Open Database view on table...
INFO   : [02/19/2016 13:40:20:704] [VsdLaunchConditions                     ]: Checking a launch condition...
INFO   : [02/19/2016 13:40:20:704] [VsdLaunchConditions                     ]: Getting the condition to evaluate...
INFO   : [02/19/2016 13:40:20:704] [VsdLaunchConditions                     ]: MsiRecordGetStringW - Fetching value...
INFO   : [02/19/2016 13:40:20:704] [VsdLaunchConditions                     ]: MsiRecordGetStringW - Getting value from column '1'...
INFO   : [02/19/2016 13:40:20:704] [VsdLaunchConditions                     ]: Evaluating condition 'VSDFXAvailable'...
INFO   : [02/19/2016 13:40:20:704] [VsdLaunchConditions                     ]: RESULT:	Condition is true. Nothing more to do.
INFO   : [02/19/2016 13:40:20:704] [VsdLaunchConditions                     ]: Custom Action succeeded.
INFO   : [02/19/2016 13:40:20:704] [VsdLaunchConditions                     ]: Custom Action completed with return code: '0'
Action ended 13:40:20: VSDCA_VsdLaunchConditions. Return value 1.
MSI (c) (E0:50) [13:40:20:704]: Doing action: LaunchConditions
Action 13:40:20: LaunchConditions. Evaluating launch conditions
Action start 13:40:20: LaunchConditions.
MSI (c) (E0:50) [13:40:20:704]: Note: 1: 2262 2: LaunchCondition 3: -2147287038 
Action ended 13:40:20: LaunchConditions. Return value 1.
MSI (c) (E0:50) [13:40:20:704]: Doing action: CCPSearch
Action 13:40:20: CCPSearch. Searching for qualifying products
Action start 13:40:20: CCPSearch.
MSI (c) (E0:50) [13:40:20:704]: Note: 1: 2262 2: CCPSearch 3: -2147287038 
Action ended 13:40:20: CCPSearch. Return value 1.
MSI (c) (E0:50) [13:40:20:704]: Doing action: RMCCPSearch
Action 13:40:20: RMCCPSearch. Searching for qualifying products
Action start 13:40:20: RMCCPSearch.
MSI (c) (E0:50) [13:40:20:704]: Note: 1: 2262 2: CCPSearch 3: -2147287038 
Action ended 13:40:20: RMCCPSearch. Return value 0.
MSI (c) (E0:50) [13:40:20:704]: Doing action: ValidateProductID
Action 13:40:20: ValidateProductID. 
Action start 13:40:20: ValidateProductID.
Action ended 13:40:20: ValidateProductID. Return value 1.
MSI (c) (E0:50) [13:40:20:704]: Doing action: CustomTextB_SetProperty_EDIT1
Action 13:40:20: CustomTextB_SetProperty_EDIT1. 
Action start 13:40:20: CustomTextB_SetProperty_EDIT1.
MSI (c) (E0:50) [13:40:20:704]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'CustomTextB_SetProperty_EDIT1' 
MSI (c) (E0:50) [13:40:20:704]: PROPERTY CHANGE: Deleting EDITB1 property. Its current value is '1'.
Action ended 13:40:20: CustomTextB_SetProperty_EDIT1. Return value 1.
MSI (c) (E0:50) [13:40:20:704]: Doing action: CustomTextB_SetProperty_EDIT2
Action 13:40:20: CustomTextB_SetProperty_EDIT2. 
Action start 13:40:20: CustomTextB_SetProperty_EDIT2.
MSI (c) (E0:50) [13:40:20:704]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'CustomTextB_SetProperty_EDIT2' 
MSI (c) (E0:50) [13:40:20:704]: PROPERTY CHANGE: Deleting EDITB2 property. Its current value is '1'.
Action ended 13:40:20: CustomTextB_SetProperty_EDIT2. Return value 1.
MSI (c) (E0:50) [13:40:20:704]: Doing action: CustomTextB_SetProperty_EDIT3
Action 13:40:20: CustomTextB_SetProperty_EDIT3. 
Action start 13:40:20: CustomTextB_SetProperty_EDIT3.
MSI (c) (E0:50) [13:40:20:704]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'CustomTextB_SetProperty_EDIT3' 
MSI (c) (E0:50) [13:40:20:704]: PROPERTY CHANGE: Deleting EDITB3 property. Its current value is '1'.
Action ended 13:40:20: CustomTextB_SetProperty_EDIT3. Return value 1.
MSI (c) (E0:50) [13:40:20:704]: Doing action: CustomTextB_SetProperty_EDIT4
Action 13:40:20: CustomTextB_SetProperty_EDIT4. 
Action start 13:40:20: CustomTextB_SetProperty_EDIT4.
MSI (c) (E0:50) [13:40:20:704]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'CustomTextB_SetProperty_EDIT4' 
MSI (c) (E0:50) [13:40:20:719]: PROPERTY CHANGE: Deleting EDITB4 property. Its current value is '1'.
Action ended 13:40:20: CustomTextB_SetProperty_EDIT4. Return value 1.
MSI (c) (E0:50) [13:40:20:719]: Doing action: WEBCA_TARGETVDIR
Action 13:40:20: WEBCA_TARGETVDIR. 
Action start 13:40:20: WEBCA_TARGETVDIR.
MSI (c) (E0:50) [13:40:20:719]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'WEBCA_TARGETVDIR' 
MSI (c) (E0:50) [13:40:20:719]: PROPERTY CHANGE: Adding TARGETVDIR property. Its value is 'UtilityInstaller'.
Action ended 13:40:20: WEBCA_TARGETVDIR. Return value 1.
MSI (c) (E0:50) [13:40:20:719]: Doing action: WEBCA_SetTARGETSITE
Action 13:40:20: WEBCA_SetTARGETSITE. 
Action start 13:40:20: WEBCA_SetTARGETSITE.
MSI (c) (E0:50) [13:40:20:719]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'WEBCA_SetTARGETSITE' 
MSI (c) (E0:94) [13:40:20:719]: Invoking remote custom action. DLL: C:\Users\JohZant\AppData\Local\Temp\MSI15A8.tmp, Entrypoint: SetTARGETSITE
INFO   : [02/19/2016 13:40:20:719] [SetTARGETSITE                           ]: Custom Action is starting...
INFO   : [02/19/2016 13:40:20:719] [SetTARGETSITE                           ]: CoInitializeEx - COM initialization Apartment Threaded...
ERROR  : [02/19/2016 13:40:20:719] [SetTARGETSITE                           ]: Access denied.
MSI (c) (E0!F8) [13:40:20:719]: Note: 1: 2262 2: Error 3: -2147287038 
MSI (c) (E0:70) [13:40:20:719]: Note: 1: 2262 2: Error 3: -2147287038 
Info 2898.For VSI_MS_Sans_Serif13.0_0_0 textstyle, the system created a 'MS Sans Serif' font, in 0 character set, of 13 pixels height.
MSI (c) (E0:70) [13:40:20:719]: Note: 1: 2262 2: Error 3: -2147287038 
DEBUG: Error 2835:  The control ErrorIcon was not found on dialog ErrorDialog
The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2835. The arguments are: ErrorIcon, ErrorDialog, 
Error 1925. You do not have sufficient privileges to complete this installation for all users of the machine.  Log on as administrator and then retry this installation.
MSI (c) (E0!F8) [13:40:24:767]: Note: 1: 2262 2: Error 3: -2147287038 
MSI (c) (E0!F8) [13:40:24:767]: Product: UtilityInstaller -- Error 1925. You do not have sufficient privileges to complete this installation for all users of the machine.  Log on as administrator and then retry this installation.

ERROR  : [02/19/2016 13:40:24:767] [SetTARGETSITE                           ]: FAILED:	-2147024891
ERROR  : [02/19/2016 13:40:24:767] [SetTARGETSITE                           ]: Custom Action failed with code: '5'
INFO   : [02/19/2016 13:40:24:767] [SetTARGETSITE                           ]: Custom Action completed with return code: '5'
CustomAction WEBCA_SetTARGETSITE returned actual error code 1603 (note this may not be 100% accurate if translation happened inside sandbox)
Action ended 13:40:24: WEBCA_SetTARGETSITE. Return value 3.
MSI (c) (E0:50) [13:40:24:767]: Doing action: FatalErrorForm
Action 13:40:24: FatalErrorForm. 
Action start 13:40:24: FatalErrorForm.
MSI (c) (E0:50) [13:40:24:767]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'FatalErrorForm' 
MSI (c) (E0:70) [13:40:24:767]: Note: 1: 2262 2: Error 3: -2147287038 
Info 2898.For VSI_MS_Sans_Serif16.0_1_0 textstyle, the system created a 'MS Sans Serif' font, in 0 character set, of 20 pixels height.
MSI (c) (E0:70) [13:40:24:767]: Note: 1: 2262 2: Error 3: -2147287038 
DEBUG: Error 2826:  Control Line2 on dialog FatalErrorForm extends beyond the boundaries of the dialog to the right by 3 pixels
The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2826. The arguments are: FatalErrorForm, Line2, to the right
MSI (c) (E0:70) [13:40:24:767]: Note: 1: 2262 2: Error 3: -2147287038 
DEBUG: Error 2826:  Control BannerBmp on dialog FatalErrorForm extends beyond the boundaries of the dialog to the right by 3 pixels
The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2826. The arguments are: FatalErrorForm, BannerBmp, to the right
MSI (c) (E0:70) [13:40:24:767]: Note: 1: 2262 2: Error 3: -2147287038 
Info 2898.For VsdDefaultUIFont.524F4245_5254_5341_4C45_534153783400 textstyle, the system created a 'MS Sans Serif' font, in 0 character set, of 13 pixels height.
MSI (c) (E0:70) [13:40:24:767]: Note: 1: 2262 2: Error 3: -2147287038 
DEBUG: Error 2826:  Control Line1 on dialog FatalErrorForm extends beyond the boundaries of the dialog to the right by 3 pixels
The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2826. The arguments are: FatalErrorForm, Line1, to the right
Action 13:40:24: FatalErrorForm. Dialog created
MSI (c) (E0:C4) [13:40:24:767]: Note: 1: 2731 2: 0 
Action ended 13:40:27: FatalErrorForm. Return value 1.
Action ended 13:40:27: INSTALL. Return value 3.
MSI (c) (E0:50) [13:40:27:110]: Destroying RemoteAPI object.
MSI (c) (E0:3C) [13:40:27:110]: Custom Action Manager thread ending.
Property(C): UpgradeCode = {577A12CB-0C1E-4C6B-B0C3-D91CA309D8B4}
Property(C): SourceDir = C:\Users\JohZant\Desktop\
Property(C): TARGETVDIR = UtilityInstaller
Property(C): VSDFXAvailable = TRUE
Property(C): VSDFrameworkVersion = ANY
Property(C): VSDAllowLaterFrameworkVersions = False
Property(C): ProductName = UtilityInstaller
Property(C): ProductCode = {F1508A93-2D05-45AD-9F4D-E1F7EE693A15}
Property(C): ProductVersion = 1.0.0
Property(C): Manufacturer = My Company
Property(C): ARPHELPLINK = 
Property(C): ARPCONTACT = 
Property(C): ARPCOMMENTS = MSI to Install Utility
Property(C): ARPURLINFOABOUT = 
Property(C): ProductLanguage = 1033
Property(C): ALLUSERS = 1
Property(C): TARGETASPNETVERSION = 4.0.30319.0
Property(C): SecureCustomProperties = NEWERPRODUCTFOUND
Property(C): RedirectedDllSupport = 2
Property(C): VersionNT = 603
Property(C): VSDNETURLMSG = This setup requires the .NET Framework version ANY.  Please install the .NET Framework and run this setup again.  The .NET Framework can be obtained from the web.  Would you like to do this now?
Property(C): VSDIISMSG = This setup requires Internet Information Server 5.1 or higher and Windows XP or higher.  This setup cannot be installed on Windows 2000.  Please install Internet Information Server or a newer operating system and run this setup again.
Property(C): VSDUIANDADVERTISED = This advertised application will not be installed because it might be unsafe. Contact your administrator to change the installation user interface option of the package to basic.
Property(C): VSDNETMSG = This setup requires the .NET Framework version ANY.  Please install the .NET Framework and run this setup again.
Property(C): VSDINVALIDURLMSG = The specified path '[2]' is unavailable. The Internet Information Server might not be running or the path exists and is redirected to another machine. Please check the status of this virtual directory in the Internet Services Manager.
Property(C): VSDVERSIONMSG = Unable to install because a newer version of this product is already installed.
Property(C): VsdAppPoolsCombo = TARGETAPPPOOL
Property(C): VsdSiteCombo = TARGETSITE
Property(C): ErrorDialog = ErrorDialog
Property(C): SFF_UpFldrBtn = UpFldrBtn
Property(C): SFF_NewFldrBtn = NewFldrBtn
Property(C): MaintenanceForm_Action = Repair
Property(C): AdminMaintenanceForm_Action = Repair
Property(C): DefaultUIFont = VsdDefaultUIFont.524F4245_5254_5341_4C45_534153783400
Property(C): AdminWelcomeForm_NextArgs = AdminWebFolderForm
Property(C): AdminWebFolderForm_PrevArgs = AdminWelcomeForm
Property(C): AdminWebFolderForm_NextArgs = AdminConfirmInstallForm
Property(C): AdminConfirmInstallForm_PrevArgs = AdminWebFolderForm
Property(C): WebFolderForm_NextArgs = CustomTextB
Property(C): CustomTextB_PrevArgs = WebFolderForm
Property(C): CustomTextB_NextArgs = ConfirmInstallForm
Property(C): ConfirmInstallForm_PrevArgs = CustomTextB
Property(C): MsiLogFileLocation = C:\Users\JohZant\Desktop\log.text
Property(C): PackageCode = {EC55B208-6AB5-4ACD-B1A9-86B749AE2A0B}
Property(C): ProductState = -1
Property(C): PackagecodeChanging = 1
Property(C): CURRENTDIRECTORY = C:\Users\JohZant\Desktop
Property(C): CLIENTUILEVEL = 0
Property(C): CLIENTPROCESSID = 6624
Property(C): VersionDatabase = 200
Property(C): VersionMsi = 5.00
Property(C): VersionNT64 = 603
Property(C): WindowsBuild = 9600
Property(C): ServicePackLevel = 0
Property(C): ServicePackLevelMinor = 0
Property(C): MsiNTProductType = 1
Property(C): WindowsFolder = C:\WINDOWS\
Property(C): WindowsVolume = C:\
Property(C): System64Folder = C:\WINDOWS\system32\
Property(C): SystemFolder = C:\WINDOWS\SysWOW64\
Property(C): RemoteAdminTS = 1
Property(C): TempFolder = C:\Users\JohZant\AppData\Local\Temp\
Property(C): ProgramFilesFolder = C:\Program Files (x86)\
Property(C): CommonFilesFolder = C:\Program Files (x86)\Common Files\
Property(C): ProgramFiles64Folder = C:\Program Files\
Property(C): CommonFiles64Folder = C:\Program Files\Common Files\
Property(C): FavoritesFolder = C:\Users\JohZant\Favorites\
g\
Property(C): NetHoodFolder = C:\Users\JohZant\AppData\Roaming\Microsoft\Windows\Network Shortcuts\
Property(C): PersonalFolder = C:\Users\JohZant\Documents\
Property(C): PrintHoodFolder = C:\Users\JohZant\AppData\Roaming\Microsoft\Windows\Printer Shortcuts\
Property(C): RecentFolder = C:\Users\JohZant\AppData\Roaming\Microsoft\Windows\Recent\
Property(C): TemplateFolder = C:\ProgramData\Microsoft\Windows\Templates\
dows\SendTo\
Property(C): CommonAppDataFolder = C:\ProgramData\
Property(C): MyPicturesFolder = C:\Users\JohZant\Pictures\
ocal\
Property(C): AdminToolsFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools\
Property(C): StartupFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\
Property(C): ProgramMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\
Property(C): StartMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\
Property(C): DesktopFolder = C:\Users\Public\Desktop\
Property(C): FontsFolder = C:\WINDOWS\Fonts\
Property(C): GPTSupport = 1
Property(C): OLEAdvtSupport = 1
Property(C): MsiAMD64 = 6
rt = 1
Property(C): Msix64 = 6
Property(C): Intel = 6
Property(C): PhysicalMemory = 4003
Property(C): VirtualMemory = 2080
Property(C): LogonUser = JohZant
Property(C): UserSID = S-1-5-21-2432642627-4037756903-3865909780-1001
Property(C): UserLanguageID = 3081
Property(C): ComputerName = JohZantSRV
Property(C): SystemLanguageID = 2057
Property(C): ScreenX = 1440
Property(C): ScreenY = 900
Property(C): CaptionHeight = 23
Property(C): BorderTop = 1
Property(C): BorderSide = 1
Property(C): TextHeight = 16
Property(C): ColorBits = 32
ing = 3
Property(C): TTCSupport = 1
Property(C): Time = 13:40:27
Property(C): Date = 19/02/2016
Property(C): MsiWin32AssemblySupport = 6.3.9600.17415
Property(C): Privileged = 1
Property(C): DATABASE = C:\Users\JohZant\Desktop\UtilityInstaller.msi
Property(C): SOURCEDIR = C:\Users\JohZant\Desktop\
ktop\UtilityInstaller.msi
Property(C): UILevel = 5
r = 5.00
Property(C): ACTION = INSTALL
Property(C): EXECUTEACTION = INSTALL
Property(C): VSDFxConfigFile = C:\Users\JohZant\AppData\Local\Temp\CFG1587.tmp
=== Logging stopped: 19/02/2016  13:40:27 ===
MSI (c) (E0:50) [13:40:27:126]: Note: 1: 1708 
MSI (c) (E0:50) [13:40:27:126]: Note: 1: 2262 2: Error 3: -2147287038 
MSI (c) (E0:50) [13:40:27:126]: Note: 1: 2262 2: Error 3: -2147287038 
MSI (c) (E0:50) [13:40:27:126]: Product: UtilityInstaller -- Installation failed.

MSI (c) (E0:50) [13:40:27:126]: Windows Installer installed the product. Product Name: UtilityInstaller. Product Version: 1.0.0. Product Language: 1033. Manufacturer: My Company. Installation success or error status: 1603.

MSI (c) (E0:50) [13:40:27:126]: Grabbed execution mutex.
MSI (c) (E0:50) [13:40:27:126]: Cleaning up uninstalled install packages, if any exist
MSI (c) (E0:50) [13:40:27:126]: MainEngineThread is returning 1603
=== Verbose logging stopped: 19/02/2016  13:40:27 ===

Microsoft Visual Studio 2013 Installer Projects

Recovering .net project from precompiled code

$
0
0

Some how i lost my source project but i have it in the form of precompiled project hosted on my server. I tried to use some decompiler i am able to see code files but problem is i am not able to recover or read asp.net server page(aspx) when i open them i see only written "This is a marker file generated by the precompilation tool, and should not be deleted!"

Even if i recover all code files how can i recover page files ? i mean the markup language files and how i will rehouse them together to generate a new project.

I see in bin folder all the aspx pages are in the form of compiled files withe their respective name for example a page name new_contact is in two different files in bin directory

1) App_Web_new-conectact.aspx.dll
2) new-conectact.aspx.compiled

Please i would really appreciate if anyone can help me asap.

deployment project error for 64 bit dlls

$
0
0

Hi All,

 I have a asp.net project with vdproj for deploment, which needs to be build as 64 bit application and it has 64 dlls references.  But I get sgen error  An attempt was made to load an assembly with an incorrect format. Is there anyway to get around this. I can't set generate serialization assembly - off.Can I replace the 32 bit sgen.exe with 64 bit version?

Thanks

System.OutOfMemoryException' was thrown

$
0
0

When my project run in my IIS the project run  ,but when upload in server it geting error 

System.OutOfMemoryException' was thrown

how to solve the problem  


Event 1310 - Could not load file or assembly

$
0
0

Hi,

one of my users has a strange error with a corporate application that uses .NET Framework. It looks like the application cannot load the component Microsoft.Office.Interop.Excel required to display reports after processing the data. The error reported at application level is "Attempted to access an unloaded AppDomain". Below is the error log in the Event Viewer (actually a warning), which seems to be related to a configuration problem of ASP.NET 4.0.30319.0

It's Windows 7 64-bit with .NET 4.5.2 and Office 2010. No other visible problems with Windows or Office. Can you suggest any way to fix this? Could uninstalling and reinstalling the .NET Framework help or better trying something else?

Event code: 3008
Event message: A configuration error has occurred.
Event time: 22/02/2016 15:51:03
Event time (UTC): 22/02/2016 14:51:03
Event ID: a9d164ca111b4aa98d25cd6fe32494b1
Event sequence: 1
Event occurrence: 1
Event detail code: 0
 
Application information:
    Application domain: cf22d9ae-1-131006262585473361
    Trust level: Full
    Application Virtual Path: /ReportEngine
    Application Path: C:\Program Files\[AppFolder]\Web\
    Machine name: [MACHINENAME]
 
Process information:
    Process ID: 9312
    Process name: [Application.exe]
    Account name: [DOMAIN\Username]
 
Exception information:
    Exception type: ConfigurationErrorsException
    Exception message: Could not load file or assembly 'Microsoft.Office.Interop.Excel, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' or one of its dependencies. The system cannot find the file specified. (C:\Program Files\[AppFolder]\Web\web.config line 46)
   at System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective)
   at System.Web.Configuration.AssemblyInfo.get_AssemblyInternal()
   at System.Web.Compilation.BuildManager.GetReferencedAssemblies(CompilationSection compConfig)
   at System.Web.Compilation.BuildManager.CallPreStartInitMethods(String preStartInitListPath, Boolean& isRefAssemblyLoaded)
   at System.Web.Compilation.BuildManager.ExecutePreAppStart()
   at System.Web.Hosting.HostingEnvironment.Initialize(ApplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters, PolicyLevel policyLevel, Exception appDomainCreationException)

Could not load file or assembly 'Microsoft.Office.Interop.Excel, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' or one of its dependencies. The system cannot find the file specified.
   at System.Reflection.RuntimeAssembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, RuntimeAssembly locationHint, StackCrawlMark& stackMark, IntPtr pPrivHostBinder, Boolean throwOnFileNotFound, Boolean forIntrospection, Boolean suppressSecurityChecks)
   at System.Reflection.RuntimeAssembly.InternalLoadAssemblyName(AssemblyName assemblyRef, Evidence assemblySecurity, RuntimeAssembly reqAssembly, StackCrawlMark& stackMark, IntPtr pPrivHostBinder, Boolean throwOnFileNotFound, Boolean forIntrospection, Boolean suppressSecurityChecks)
   at System.Reflection.RuntimeAssembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, IntPtr pPrivHostBinder, Boolean forIntrospection)
   at System.Reflection.RuntimeAssembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection)
   at System.Reflection.Assembly.Load(String assemblyString)
   at System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective)

 
 
Request information:
    Request URL: http://localhost:8081/ReportEngine/ReportViewer.aspx?rid=15&pid=16
    Request path: /ReportEngine/ReportViewer.aspx
    User host address: 127.0.0.1
    User:  
    Is authenticated: False
    Authentication Type:  
    Thread account name: [DOMAIN\Username]
 
Thread information:
    Thread ID: 5
    Thread account name: [DOMAIN\Username]
    Is impersonating: False
    Stack trace:    at System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective)
   at System.Web.Configuration.AssemblyInfo.get_AssemblyInternal()
   at System.Web.Compilation.BuildManager.GetReferencedAssemblies(CompilationSection compConfig)
   at System.Web.Compilation.BuildManager.CallPreStartInitMethods(String preStartInitListPath, Boolean& isRefAssemblyLoaded)
   at System.Web.Compilation.BuildManager.ExecutePreAppStart()
   at System.Web.Hosting.HostingEnvironment.Initialize(ApplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters, PolicyLevel policyLevel, Exception appDomainCreationException)


Deploy a dll to Nuget server

$
0
0

Say I have a class library project, I want to push the dll to our internal Nuget server. I want to use gulp. What are the steps if using gulp? Say I use Visual Studio 2015.

Dataset issue with Visual Studio 2005 solution - moving web app to new server

$
0
0

Hi,

Help! I just copied a VB.Net web application, developed in VS 2005, to a different server.  I've configured it the same per IIS application settings (as far as I can tell).

I am getting the  error below when hitting web forms with datasources that have datasets as their source.  (This code works fine at original location).

I can open datasets in VS 2005 on the new server, and preview data in the datasets in design view.  It uses an exact copy of the SQL database as on the old server.

Since the old server is dying, I need to get this working ASAP.

Any advice for fixes is greatly appreciated.  Thank you.

The error is:


Server Error in '/internal' Application.

ObjectDataSource 'ObjectDataSource1' could not find a non-generic method 'GetData' that has parameters: inprocess. 
  Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

 Exception Details: System.InvalidOperationException: ObjectDataSource 'ObjectDataSource1' could not find a non-generic method 'GetData' that has parameters: inprocess.

Source Error: 


 An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.  

Stack Trace: 



[InvalidOperationException: ObjectDataSource 'ObjectDataSource1' could not find a non-generic method 'GetData' that has parameters: inprocess.]
   System.Web.UI.WebControls.ObjectDataSourceView.GetResolvedMethodData(Type type, String methodName, IDictionary allParameters, DataSourceOperation operation) +2114344
   System.Web.UI.WebControls.ObjectDataSourceView.ExecuteSelect(DataSourceSelectArguments arguments) +1750
   System.Web.UI.DataSourceView.Select(DataSourceSelectArguments arguments, DataSourceViewSelectCallback callback) +27
   System.Web.UI.WebControls.DataBoundControl.PerformSelect() +261
   System.Web.UI.WebControls.BaseDataBoundControl.EnsureDataBound() +82
   System.Web.UI.WebControls.CompositeDataBoundControl.CreateChildControls() +95
   System.Web.UI.Control.EnsureChildControls() +146
   System.Web.UI.Control.PreRenderRecursiveInternal() +61
   System.Web.UI.Control.PreRenderRecursiveInternal() +224
   System.Web.UI.Control.PreRenderRecursiveInternal() +224
   System.Web.UI.Control.PreRenderRecursiveInternal() +224
   System.Web.UI.Control.PreRenderRecursiveInternal() +224
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3394
 

 

Errors on Build VS 2012

$
0
0

Hello,

I am getting these errors when I try to run my VS 2012 program:

------ Build started: Project: NewsRoll, Configuration: Debug Any CPU ------
C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(2015,5): warning MSB3304: Could not determine the dependencies of the COM reference "VB". Error loading type library/DLL. (Exception from HRESULT: 0x80029C4A (TYPE_E_CANTLOADLIBRARY))
C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(2015,5): warning MSB3284: Cannot get the file path for type library "7c0ffab0-cd84-11d0-949a-00a0c91110ed" version 1.0. Library not registered. (Exception from HRESULT: 0x8002801D (TYPE_E_LIBNOTREGISTERED))
C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(2015,5): error MSB3303: Could not resolve COM reference "a24fbe2b-ade4-4cd7-95df-1d2623ef0fef" version 6.0. Object reference not set to an instance of an object.
C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(2015,5): warning MSB3284: Cannot get the file path for type library "7c0ffab0-cd84-11d0-949a-00a0c91110ed" version 1.0. Library not registered. (Exception from HRESULT: 0x8002801D (TYPE_E_LIBNOTREGISTERED))
C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(2015,5): error MSB3303: Could not resolve COM reference "ce5e0e33-cf2a-4fa4-a16a-e1924dc2b0c5" version 6.0. Object reference not set to an instance of an object.

These are the components listed under Recent:

Accessibility  1.1
Microsoft Excel 15.0 Object Lib
Microsoft Visual Basic for Application Extensibility 5.3
OLE Automation 2.0
Visual Basic for Applications 6.0
Visual Basic Objects and Procedures 6.0
Visual Basic Runtime Objects and Procedures 6.0

How do I know which Library these errors are referring to and how can I fix?

thanks for your time

Upgrade Framework version from 4.0 to 4.6

$
0
0

Hello

My hosting company is Godaddy which provide framework version 3.5 and 4.6 only and my web application is 4.0 so i search online how to update my application version and i do the normal and easy step which is: right click on project icon and then properties and then change the version. But when i open my webconfig file i saw as below:

<compilation debug="true" targetFramework="4.0"><assemblies><add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B04111A3A"/><add assembly="System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/><add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B141414419"/><add assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31435"/></assemblies>

the targetFramework is changed but the lines under is still as it is 4.0. Also i am getting error message as below and i dont know how to fix it:

Error 1 Some NuGet packages were installed using a target framework different from the current target framework and may need to be reinstalled. Visit http://docs.nuget.org/docs/workflows/reinstalling-packages for more information. Packages affected: Microsoft.Net.Http 0 0 beravoSV

Viewing all 3561 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>