Hi, I have one Merge Module (MSM) created using WISE which I want to use it in WIX. When I created MSI using WIX which contains the above MSM and RUN the MSI then the Service EXE and the related DLL's are copied to my system Folder but the service is not Installed and started in my system. But when I do the same steps mentioned above with WISE ( Created MSI which contains MSM) then the service is Installed and Started in my system. Is there anything extra I need to do it in WIX in order to Install and Start the Service? Thanks, Narasimha.
swamy Narasimha
Posts
-
Problem with Installing Service from MSM in WIX -
CoCreateInstanceAsAdminHi, Can any one give me the details about CoCreateInstanceAsAdmin API. Thanks & Regards ...swamy :)
-
How to Provide 30 day Trial VersionHi, I have one MFC Application and i want to provide 30 day trial version facility to my application. Can u suggest the best way of implementing this?? Thanks & Regards swamy
-
How to Use COM Dll in ASP.Net?I added my COM Dll Reference to my ASP Page and now it's in my bin directory ofcourse, but the actual problem araise when iam trying to create the object for my dll class. Thanks & Regards
-
How to Use COM Dll in ASP.Net?Hi I have one COM Dll which needs to be used in my ASP Page. But it is giving Error like this: Retrieving the COM class factory for component with CLSID {60527433-1464-42EF-A657-3ACE4390AF84} failed due to the following error: 80070005. 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.UnauthorizedAccessException: Retrieving the COM class factory for component with CLSID {60527433-1464-42EF-A657-3ACE4390AF84} failed due to the following error: 80070005. ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or Network Service on IIS 6) that is used if the application is not impersonating. If the application is impersonating via , the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user. To grant ASP.NET access to a file, right-click the file in Explorer, choose "Properties" and select the Security tab. Click "Add" to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access. Source Error: Line 20: protected void Page_Load(object sender, EventArgs e) Line 21: { Line 22: **objLICGen = new EsdLICGenLib.EsdLicenseGeneratorClass();**Line 23: Line 24: string strCon = ConfigurationSettings.AppSettings["strConnection"]; Source File: c:\Inetpub\wwwroot\ProductRegistration\frmProductRegistration.aspx.cs Line: 22 Can you Help me how to solve this Problem?? Thanks ..swamy
-
Regasm Registration ProblemHi, I have cretated one Class Library using C# and i have done tlbexp and red asm. I wrote Client Application using win32 Console application by importing tlb. but when Iam trying to do the CreateInstance it is giving "Class Not Registered".. Can ypu give me the Solution for this. Thanks And Regards Swamy ..swamy
-
How to dock the views?I want to dock the views which are derived from CView.
-
Providing Seurity to ApplicationHi _AnShUmAn_, Thaking for giving this article. But Iam asking about "In what basis we will generate the key" i.e., either by using System Hard Disk Serial number or MAC address?? Thanking you, swamy.
-
Providing Seurity to ApplicationWhat will be best way of providing security to our application in MFC.I mean how to generate installation key to our Applicationn. can u post your suggestions.. Thaking you swamy
-
How to Get System Hard Disk Serial Number in MFCHi, How can I get the System Harddisk Serial Number in MFC. I need HD Serial number for Security isssues related to my project. Thanking You with regards swamy
-
How to Identify System Lock/Unlock in MFCThank U Very Much Raj.. for giving this solution !! cheers swamy..
-
How to Identify System Lock/Unlock in MFCHi, I have one application which needs to notified whenever the my windows system was locked or unlocked. so, can you plz give me the solution for this problem as soon as possible. Thanks & Regards swamy
-
How to make visible the inserted item in Tree control?Thank you for your reply Mr GuyM I already tried in this manner but the item was not visible .Any alternative to this .
-
How to make visible the inserted item in Tree control?Hi all, i'm trying to isert a new item to the tree control when i click on a button.It's working fine if i'm inserting the new item as a child to the another item which is already having child items,but when i try to add the new item to a leaf item (leaf item as parent to the new item)new item is inserted but not visible. How can i come out from this problem.Any one please help me . Thanks in advance.
-
How can i sent structures through SOCKETShi Divyang Mithaiwala, Iam sending data from one sys to another sys (two seperate systems) with IP and port.
-
How to create XML file from MFCHi.. can u plz help me how to create XML file from MFC filed vales and .. How to parse at client.. ..swamy
-
How can i sent structures through SOCKETSThankq Mr. zubair_ahmed, But i want 2 give clear idea abt the problem which i got. This is the data which i want 2 send: struct data { int id; CString str1; CString str2; }pt; UpdateData(); CString str; pt.str1=m_ID; pt.str2=m_Name; pt.id="A"; str.Format ("%d#%s#%s",pt); send(clientsock,str,str.GetLength(),0); Here Iam sending structure data tru string but.. is there any way to send data by structure address?? and How to get back the data at server side ...Thanks swamy
-
How can i sent structures through SOCKETSHi,i am trying to sent structures through SOCKETS,but the information is not reaching the server. I need source code to sent structures and delimit at server side