Deployment :: Create Install File Without The Need For User To Install SQL Server?

Jun 6, 2009

I have a project that i have created in Visual Studio express and SQL server express. i want to create an install file so that i can send to others to install. Currently it is requiring the user to install SQL server Express and 3.5 .net framework.what steps can i take to stop the user having to install these 2 so that it is a simple install for them.

View 2 Replies


ADVERTISEMENT

Create A Setup Installer To Auto-install Fonts When User Install Apps?

Jan 26, 2010

Is it possible to create a setup installer that will auto install fonts when user install the applications?

View 6 Replies

Create Package And Deployment (setup File Or Install File) File In VB 2010 Project?

Jan 8, 2011

I do one project in visual basic 2010.In visual basic 6 project can be make Package and deployment (setup file or install file) file using Package and deployment wizard.But in visual basic 2010 express edition does not have Package and deployment wizard.how to make Package and deployment (setup file or install file) file in visual basic 2010 project?

View 4 Replies

Install The DB Automatically With The Application Without Requiring The User To Create A Mysql Server?

Aug 8, 2009

I'm bulding a program that willl work with a database the database is made with mysql.I would like to know if there is a way to install the DB automatically with the application without requiring the user to create a mysql server...the db have more than 5 million records.

View 3 Replies

Deployment :: Enable User To Define Install Location?

Jul 26, 2009

My freeware program launches 50 freeware programs and provides a guide for PC maintenance and health. As mentioned in another post, my program was reviewed on Sofpedia. One thing the Reviewer criticized was the fact that my program requires the user to install these 50 programs in the default locations (usually C:Program Filesx). The reviewer thinks it would be best if the user can install to any location he/she desires and my program be able to point to the proper location when launching the application.

View 10 Replies

Create A Executable File Which Did Not Require The User To Install?

Jun 20, 2011

how I can deploy my .NET applicationwithout the user having to install the program.i.e. In VB6, I could just create a executable file which did not require the user to install anything, they would simple run the program.

View 6 Replies

IDE :: .htm File Doesn't Work After Deployment And Install On Client

May 27, 2009

I have a windows project completed and am using an MDI with a help menu.So now I'm working with a click once deployment.When the user clicks help, it should load an .HTM file, but instead, when installed on the client it gets a "page cannot be displayed error".

I created the file in word. Saved as an .HTM. along with it came the images folder. I placed it in the bin/debug folder. I've made sure all the images and the .HTM files are set to Build Action = content and Copy Always. These files are copied out to the deployment website. It shows as "required(auto)" under appication settings, publish. Everything else in the deployment works nicely, including Crystal Reports and Powerpacks.So what is going wrong with this?The help is a windows form with a browser control on it and the following code.Note that the Catch on the Try doesnt kick in either on the client.

Private Sub Help_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'change mouse pointer to hourglass
Cursor.Current = Cursors.WaitCursor

[code]....

View 5 Replies

Creating An Installer File To Install SQL Server?

Jun 4, 2010

I have an application that uses a SQL Server backend. I wish to be able to create an Install project where the it can install SQL Server and/or an instance on the users machine. Has anyone ever done this before? If so, how is it done? Any examples, etc.

View 2 Replies

Create An Ini File In Install Location

Sep 15, 2009

i am doing a VB.NET 2.0 Windows Application.I want to create an ini file in the location where we are installing the application. the code that i wrote is [code]

View 4 Replies

Create An Ini File In Install Location?

Sep 16, 2009

i am doing a VB.NET 2.0 Windows Application.I want to create an ini file in the location where we are installing the application. the code that i wrote is

Private Sub Installer1_AfterInstall(ByVal sender As Object, ByVal e As System.Configuration.Install.InstallEventArgs) Handles MyBase.AfterInstall
Dim iniPath As String
Dim Asm As System.Reflection.Assembly =

[code]....

but its not working.

View 1 Replies

Deployment :: Roaming Profile - Get The Installer To Install An Application Normally

Mar 4, 2012

Using Visual Studio 2010, Windows 7. Setting up project on one machine, then attempting deployment it on another machine with Windows 7 on it:

How do you get the installer to install an application normally, my app is installing on roaming profile, and I do not want it to install that way . . . I want it to run as a normal software application, it is not created for network use!

In short, I want the application to install under the Program Files directory, and the data files to install under the ProgramData directory. I have already designated the Application Folder's DefaultLocation as [CommonAppDataFolder] and the application data folder as [CommonAppDataFolder], . . . but it makes no difference, it still installs as a roaming profile.

View 1 Replies

Deployment :: System.invalidOperation On Client Computer Install?

May 4, 2009

I have converted a Windows Forms VS2003 application to VS2005 and then to VS2008. It includes a setup project for deploying on the client computer (the regular installer, not click once). It works fine when I run it on my computer, either in VS or if I install using the setup installer. But when I install it on the client computer and then try to run it, I immediately get a System.InvalidOperation exception. I put in debug code before my code but it fails before it gets to any of my code. Both computers are XP. The client comptuter actually has VS2003, though it is not used.

I have tried it with either the 2.0 framework or the 3.5 framework (and included those as prerequisities) but neither makes a difference (and I did set that in the Launch conditions, as well as in the Advanced Compile Options). The application uses CrytalReports for VS.

I don't think I can run JIT debugging on the user computer due to permission issues. Are there any other debugging things I can try to narrow this down or has anyone encountered this.

View 1 Replies

Determine Location To Install Software With Click Once Deployment?

Apr 7, 2010

I would like to make sure that my application is installed in the correct location on the hard drive or allow the user to determine the install location.

View 2 Replies

Install Windows Service Via Setup And Deployment Project

Apr 27, 2009

I've been busy with work and other bits and bobs and not really had much time for programming... but anyway, I have just written a fairly simple windows service in VB.NET and although I can install it on my PCs/servers using the command line InstallUtil.exe component, this isnt ideal for other people that may need to install it without my assistance.

So basically I just need to know how to get a normal Setup and Deployment VS project to install this service itself... I thought it would be as simple as selecting the service assembly to include in the deployment project and building it, but unfortunately that seems to do naff all. Do I need to use a 'Custom Action' in the setup project (and if so, how/what do I do?)

View 6 Replies

Make A Simple Install Wizard To Install The Program?

Nov 10, 2009

I'm looking to make a simple install wizard to install my program (I know Visual Studio 2010 already has an installer) but anyway, I would like to make it myself, kind of line reinvent the wheel?

View 3 Replies

Deployment :: Make An Install Pack That Contains Microsoft Installer And Framework?

Feb 23, 2012

I just finish my first application, and it is runing very nice on my computer, outsite IDE.But when I put it on another computer or in a virtual machine, i get some error and it is not running.In my application i have only controls, no dll, no nothing, except one picture.I have to mention that i have win7 on 64 bit and i use visual basic 2010 Express with netframework 4.0.

I also want to ask you what i have to do to make an install pack that contains microsoft installer and framework.I want to make a setup file with all this included.

View 1 Replies

Deployment :: Publish And Install A Win App Without Creating Start Menu Entry

Aug 19, 2009

I've built a couple of Apps successfully, but having published them to a Network Folder, Non-Admin Users can't install them themselves because the Install attempts to create an Entry in the Start Menu. There may be other Security issues (I need 4 of the permissions included if I publish it as a Partial Trust Applications, which I think affect this) after this point that I'm not aware of, but yeah, it fails when trying to create a Start Menu item -

+ Access to the path 'C:Documents and SettingsJameOStart MenuProgramsMynas' is denied.

I think excluding the right is just part of the SOE, but is there some way I can create this and have it NOT create a Start Menu item, haven't been able to find any?

View 4 Replies

Click Install Feature Will The Application Install On A MAC?

Mar 30, 2010

With the on-line one click install feature will the application install on a MAC?

View 2 Replies

Install Application, When System Tries To Install .Net Framework?

Aug 27, 2010

While trying to install my application, when system tries to install .Net Framework, it gives an error.Is there any source where I could download uninstalled .Net Framework 3.0 and provide my clients with application?

View 1 Replies

Windows Service Shown As Automatic But Wont Start On Initial Install With Deployment Project?

Sep 2, 2010

I have a service projecwith a deployment project in a solution. The installation is successful, service runs ok. However each time after installation I will have to use ervices.msc to start up the software or restart the machine, any idea how I can start the services as soon a

View 3 Replies

Install VS 2010 First,then Install VS2008?

Apr 15, 2010

Is it possible to install VS 2010 first,then install VS2008?i am asking this because in many cases(specially while installing the O.S) i see that after installing the higher version the lower version of O.S cant be installed....and if want to install linux then it might be installed after installing all the windows O.S starting from xp,then vista,then win7 and finally fedora 12..

View 8 Replies

How To Install New Instance On SQL Server

Feb 20, 2012

Is there nay way that my application could create a new instance (say MyInstance) and attach my DB to that, with sa password?

View 6 Replies

Install In Local Server

Oct 27, 2010

I was created simple payroll system application. It's already working on my local pc. Now, my client want to install in their server and they need to access atleast 3 pc's to it. This application compiled using setup and deployment. During the installation the access database included with the same directory of the executable file. If I will install this application on their server do I have to install also in their 3 pc's? but every installation it has included access database. How to achieve this? here is the connection of my database

[Code]...

View 3 Replies

Install New Instance On SQL Server?

Feb 20, 2012

Is there nay way that my application could create a new instance (say MyInstance) and attach my DB to that, with sa password?

View 1 Replies

VB Install And SYSTEM User

Mar 31, 2011

I've create a setup for my vb application with visual studio. At the end of the install I want to launch the application so i've add a custom action and used the chell to launch it. It's work but... the application is launch as SYSTEM user...is there a way to launch it in normal user (on win7 as administrator)?

View 1 Replies

Install Service (but With Different Features) Twice On The Same Server?

Oct 6, 2011

I have a service installed. I would like to install this service (but with different features) twice on the same server but cant as the second service recognises it as the first. How could i avoid this?

View 5 Replies

Microsoft SQL Server Compact 3.5 Without Install

May 20, 2012

I want to make a database like this one.url...But i want to use it on a pc without installing Sql server.(I can make it work by giving you the .dll files to do it if you want, but rather than that, better you install it completely).

View 7 Replies

Create On XP SP3 And Install On XP SP2?

Mar 11, 2010

I have developed a VB6 applicationon a computer running Windows XP Professional SP3.I have used the VB6 Package & Deployment Wizard to create the install CAB and setup files.When installing the app on to a Windows XP Professional SP3 computer we have no problemHowever, when I try to install on a Windows XP Professional SP2 I get an error message statingSetup cannot continue because some system files are out of date on your system and then asks if you want to reboot to automatically update the system files.

View 5 Replies

IDE :: Cannot Install Clickonce App On A User's Computer?

Apr 8, 2009

My clickonce app has the following pre-requisites: Windows Installer 3.1 .NET Framework 3.5 Microsoft Visual Studio 2008 Report Viewer Microsoft Visual Basic Power Packs 3.0 SQL Server 2005 Express Edition SP2 (x86) The application has been successfully installed on more than 30 computers. All but 2 computers, have had installation problems.

For awhile, one of the two computers in question, would not resolve installation of SQL server 2005 Express edition. It would go through the motions of downloading the program and then attempting an install and after a good 30 minutes, an error would show up indicating that the installation had failed. The user continued to have a nuisance error pop up appear when he'd log into his computer.Long story short, I resolved that problem. So now all of the pre-requisites are installed and confirmed as successfully installed. The clickonce application does not install however. The following log file was created as a result of this error:

PLATFORM VERSION INFO
Windows : 5.1.2600.131072 (Win32NT)
Common Language Runtime : 2.0.50727.3053
System.Deployment.dll : 2.0.50727.3053 (netfxsp.050727-3000)
mscorwks.dll : 2.0.50727.3053 (netfxsp.050727-3000)

[Code]...

View 6 Replies

IDE :: System Restarts Install MS SQL SERVER 2005?

Aug 30, 2010

My System gets restarts When i Install MS SQL SERVER 2005,

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved