[WiX-users] Смартфоны и КОММУНИКАТОРЫ и GP S НАВИГАТОРЫ

2008-05-21 Thread kermit david
Смартфоны и КОММУНИКАТОРЫ и GPS НАВИГАТОРЫ НТС, Gloffish E -ten, Gigabyte , Asus ОГРОМНЫЙ ВЫБОР БОЛЕЕ 30 МОДЕЛЕЙ, САЫЕ НИЗКИЕ ЦЕНЫ!!! Все оборудование новое с гарантией 1 год . бесплатная доставка по Москве. Подробности на сайте http ://www .883388.ru , или по телефонам +7 (495) 5 O

Re: [WiX-users] Manually trigger UAC

2008-05-21 Thread Wilson, Phil
I believe the recommendation is to have a type 19 custom action in the InstallExecuteSequence that is conditioned on the Privileged property, that will exit the install if you're not privileged. You don't know whether you're actually privileged until then, after the elevation prompt could have o

[WiX-users] Wix: Custom Dialog based on Feature selection

2008-05-21 Thread Hammad Butt
Hi, Folks. I have another Wix question. I want to add a custom dialog in the UI sequence after the Feature selection (Customize) dialog. The feature selection is done through a SelectionTree control. How can I figure out if a particular feature was selected and launch the custom dialog? Any he

Re: [WiX-users] Manually trigger UAC

2008-05-21 Thread Brian Rogers
Hey Colin, Take a look at these links. Unfortunately I don't believe there is a way to "trigger" the UAC prompt using just the MSI base. Also, there is no way to add a manifest to an MSI. This can be done for EXEs though. However, you get into some tough support issues when relying on the EXE to r

Re: [WiX-users] Manually trigger UAC

2008-05-21 Thread Kelly Leahy
I think you need to look at the IsPriveleged property in MSI for your check, and theres some way to make the installer require elevation in the manifest file. I'm not sure how to do that though. You might search for UAC manifest MSI or something like that. Kelly Colin Bleckner <[EMAIL PRO

[WiX-users] Manually trigger UAC

2008-05-21 Thread Colin Bleckner
I'm having problems with my installer and Vista's UAC. I'm looking for a short term solution that I can put in place while I try to figure out a real solution. I'm wondering if anyone knows how to do one of two things: - Manually trigger the UAC in my installer. I think I have some strange

Re: [WiX-users] ComPlus Install Help : Error 0x80070490: Failed to find component object

2008-05-21 Thread Fredrik Grohn
That error means that a component with the guid "GUID-Of-Class" in your example below was not found in the application after registering the assembly. What happens if you remove the ComPlusComponent element, does a component with that guid show up? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECT

[WiX-users] ComPlus Install Help : Error 0x80070490: Failed to find component object

2008-05-21 Thread Meyer, Shawn
I am receiving this error "ComPlusInstallExecute: Error 0x80070490: Failed to find component object" in the MSI log when running the installer. If I remove the "ComPlusAssembly" element and children, the ComApplication is created properly. I am not sure what to make of the error message

[WiX-users] Wix: Changing property values

2008-05-21 Thread Hammad Butt
Hi, Is it possible to change the value of a property like "ALLUSERS" on a per component basis? I want to put a shortcut of one file in the user Startup menu and another shortcut in the Machine-wide startup menu location. How can this be done? I'm grateful for any help. Thanks, Hammad

Re: [WiX-users] DTF Stream Operations Issue

2008-05-21 Thread Christopher Karper
Done and done, thank you. http://sourceforge.net/tracker/index.php?func=detail&aid=1969122&group_id=105970&atid=642714 Chris On Wed, May 21, 2008 at 4:43 PM, Jason Ginchereau <[EMAIL PROTECTED]> wrote: > This is a bug in the reading of record streams over the out-of-proc CA > remoting channel.

Re: [WiX-users] DTF Stream Operations Issue

2008-05-21 Thread Jason Ginchereau
This is a bug in the reading of record streams over the out-of-proc CA remoting channel. Can you file it on SF for tracking? Thanks! For now I suggest you use the workaround you already have, which is to extract the stream to a temporary file. -Jason- From: Christopher Karper [mailto:[EMAIL PR

Re: [WiX-users] DTF Stream Operations Issue

2008-05-21 Thread Kelly Leahy
I would expect ReadString to fail there (i.e. it SHOULD). If you read the semantics of BinaryReader.ReadString it expects the data to be in a particular format (length prefixed). However, ReadToEnd should not be having that problem (StreamReader doesn't expect its data to be in that form). T

Re: [WiX-users] DTF Stream Operations Issue

2008-05-21 Thread Christopher Painter
Database db = new Database("C:\\TEST.MSI", DatabaseOpenMode.ReadOnly); Microsoft.Deployment.WindowsInstaller.View view = db.OpenView("SELECT `Name`, `Data` From `Binary` WHERE `Binary`.`Name` = 'TEST'"); view.Execute(); foreach (Record rec in view) using (rec) { Stream s= rec["Data"] a

Re: [WiX-users] DTF Stream Operations Issue

2008-05-21 Thread Christopher Karper
I did, and it did work for me, I'm still working on integrating it with what I'm doing now. As soon as I see some good output, I'll let you know. Chris On Wed, May 21, 2008 at 4:16 PM, Christopher Painter < [EMAIL PROTECTED]> wrote: > Did you see my work around snippet? I'm interested in getti

Re: [WiX-users] DTF Stream Operations Issue

2008-05-21 Thread Christopher Painter
Did you see my work around snippet? I'm interested in getting some thoughts on it. When I'm having problems calling the framework there is much more to google and a higher expectation that it's my fault not the frameworks. I need to figure out how to better vet my code without bugging Jas

Re: [WiX-users] DTF Stream Operations Issue

2008-05-21 Thread Jason Ginchereau
Can you share the stack trace? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Christopher Karper Sent: Wednesday, May 21, 2008 1:10 PM To: Kelly Leahy Cc: [EMAIL PROTECTED]; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] DTF Stream Operations Issue No, it's not, and act

Re: [WiX-users] DTF Stream Operations Issue

2008-05-21 Thread Christopher Karper
No, it's not, and actually, that was a remnant from a variation I tried. I thought maybe ReadToEnd wasn't working, so I did it line by line and got the same issue. The exception is thrown from within the Read operation, I know that's where the issue lies. :-) Good thought though. Chris On Wed

Re: [WiX-users] DTF Stream Operations Issue

2008-05-21 Thread Kelly Leahy
dumb question (maybe). Is "script" null upon entry into the loop you gave? It can't be as far as I know for the += operator to work. Kelly "Christopher Karper" <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 05/21/2008 12:38 PM To "Christopher Painter" <[EMAIL PROTECTED]> cc "wix-users@lis

Re: [WiX-users] DTF Stream Operations Issue

2008-05-21 Thread Christopher Karper
I haven't seen a WiX developer yet that wasn't helpful and open. I'm impressed with the fact that the entire team is very active in this mailing list. On Wed, May 21, 2008 at 3:20 PM, Christopher Painter <[EMAIL PROTECTED]> wrote: > As an aside, we do have the source code to all those internal

Re: [WiX-users] DTF Stream Operations Issue

2008-05-21 Thread Christopher Karper
My bad, you're right. I was going through the source, and I didn't realize they were all just overrides. Please sir, forgive me. :-)It was a fit of pique, not a serious complaint. Chris On Wed, May 21, 2008 at 3:19 PM, Jason Ginchereau <[EMAIL PROTECTED]> wrote: > If the RecordStream cla

Re: [WiX-users] DTF Stream Operations Issue

2008-05-21 Thread Christopher Painter
As an aside, we do have the source code to all those internal classes :) And more importantly we have a developer who in the very few days I've known him has been extremly open and cordial in addressing questions about the classes and even taking suggestions from improvement from such an obvi

Re: [WiX-users] DTF Stream Operations Issue

2008-05-21 Thread Jason Ginchereau
If the RecordStream class was public, what could you do that you can't do now? Note that Record.GetStream() or Record.Item on a stream field actually does return a RecordStream instance, it just calls it a plain Stream because you shouldn't need to care what kind of Stream it is. Every single pr

Re: [WiX-users] DTF Stream Operations Issue

2008-05-21 Thread Christopher Painter
I had a file called TEST.TXT (ANSI) that contained TEST on three lines. I streamed it into the Binary table and sure enough the readerfunctions threw exceptions telling me to check if I've reached the end of the file. However, this might be a hack - I'm not sure, I was able to work around

Re: [WiX-users] DTF Stream Operations Issue

2008-05-21 Thread Jason Ginchereau
Maybe an obvious question, but is the "Data" field of that Record null? Check binRec.IsNull("Data"), or check for a null return from binRec.GetStream("Data"). If the field is null and you don't expect it to be, please share a little more of your code. -Jason- From: [EMAIL PROTECTED] [mailto:[E

Re: [WiX-users] DTF Stream Operations Issue

2008-05-21 Thread Christopher Karper
Shouldn't matter. I can get the data to and from the file with no issue. It's just trying to get the data into the memorystream instead f the filestream is an issue. The RecordStream object in DTF looks like it might be useful, but in typical MS fashion, the useful foundation classes are interna

Re: [WiX-users] DTF Stream Operations Issue

2008-05-21 Thread Christopher Painter
Ok, I was wondering how you were going to read binary data into a string. I'm not the best C# guy in the world but I'll see what I can learn here. I am wondering though, is your text unicode or ansi and would it even matter? Christopher Karper <[EMAIL PROTECTED]> wrote: It's text

Re: [WiX-users] Custom WiXUI - overriding default dialogs

2008-05-21 Thread Alex Goryuk
Exactly! That¹s why I tried exactly what you said which made the CustomMaintenanceWelcomeDlg not show up during uninstall at all. That was the second problem I described in the first email. So the new sequence on uninstall was: WixUI_InstallMode=Remove=1 -> VerifyReadyDlg -> uninstalletc I¹

Re: [WiX-users] DTF Stream Operations Issue

2008-05-21 Thread Christopher Karper
It's text, and I'm running as a custom action, so my database should already be available. I'm opening the view with a joined query, but getting the same data. I can get the record fine, and I can get the stream fine, it's when I try to read from the StreamReader wrapper that I run into issues.

Re: [WiX-users] DTF Stream Operations Issue

2008-05-21 Thread Christopher Painter
What is the type of script? Eitherway, would this work for you? Database db = new Database("C:\\TEST.MSI", DatabaseOpenMode.ReadOnly); View view = db.OpenView("SELECT `Name`, `Data` From `Binary` WHERE `Binary`.`Name` = 'ISXMLCFG.DLL'"); view.Execute(); foreach (Record rec in vie

Re: [WiX-users] Custom WiXUI - overriding default dialogs

2008-05-21 Thread Christopher Karper
You need to copy the file out that the WixUIExtension is using as source. If you download the sources, you can grab it right out. Your error is because you're naming a dialog the same as an existing one. Give it a unique name, then change the "Next" and "Previous" actions to match what you're expe

Re: [WiX-users] Custom WiXUI - overriding default dialogs

2008-05-21 Thread Alex Goryuk
Thank you for the responses, Holmgren/Willie, http://www.wixwiki.com/index.php?title=WixUI_Custom is exactly what I¹ve been using, but this explains inserting a dialog. Instead I¹m modifying an existing dialog flow which is defined in the WixUIExtension.dll So far I haven¹t found a resource that

Re: [WiX-users] Custom WiXUI - overriding default dialogs

2008-05-21 Thread Christopher Karper
You'll need to create your own UI sequence to adjust the dialogs used in installation. I would suggest using the closest appropriate WiX dialog set as a starting point, and you can customize from there. I copied the file I liked locally, and made my modifications, changed the reference in my main

[WiX-users] DTF Stream Operations Issue

2008-05-21 Thread Christopher Karper
I'm trying to read binary data into a memory stream, but Stream stream = binRec.GetStream("Data"); using (StreamReader sr = new StreamReader(stream)) { script += sr.ReadToEnd(); } Gives me an ArgumentNullException when I try to read the stream. Am I missing a step? I

[WiX-users] Make your snake long

2008-05-21 Thread Ranjan
Make her wet just by the sight of your weapon http://www.moautaw.com/ - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/0

Re: [WiX-users] setupexe and CompareString on Windows 2000

2008-05-21 Thread Rob Mensching
Sorry, to be clear, when I say "we don't work on Win2000", I meant we don't have any dev or test boxes with Win2k that we're doing work with WiX on. That's how these bugs slip by. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rob Mensching Sent: Wedne

Re: [WiX-users] setupexe and CompareString on Windows 2000

2008-05-21 Thread Rob Mensching
Bug. We don't work on Win2000 much anymore but in general this should work. Honestly, I missed that comment in the documentation. Please, do open a bug on it so we can ensure it gets fixed... and maybe I should start looking around for a Win2k VHD. -Original Message- From: [EMAIL PRO

[WiX-users] Custom WiXUI - overriding default dialogs

2008-05-21 Thread Alex Goryuk
Hi, How do you override the dialogs provided in WixUIExtension.dll ? I¹m trying to override the default behavior of MaintenanceWelcomeDlg. Here are 2 things I¹ve tried: 1) Inserting a copy of this dialog into the sequence causes Œlight¹ to display the duplicate dialog name found [exec]

Re: [WiX-users] Vista UAC warning when setup runs

2008-05-21 Thread Ryan O'Neill
I wouldn't know about that but my hunch is to say you can't. Otherwise malware creators could imply trustworthy software by changing the icon. From: John Lister [mailto:[EMAIL PROTECTED] Sent: 21 May 2008 12:40 To: Ryan O'Neill; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Vista UA

Re: [WiX-users] Please help me understand SelfReg and GAC librarydependencies

2008-05-21 Thread Anthony Wieser
Oops. The error was the way I was trying to unregister the DLL. - Original Message - From: "Anthony Wieser" <[EMAIL PROTECTED]> To: Sent: Tuesday, May 20, 2008 5:24 PM Subject: [WiX-users] Please help me understand SelfReg and GAC librarydependencies > OK, I know it's not the best wa

[WiX-users] Новинка!

2008-05-21 Thread jef olin
Вашему вниманию предлагаются информационные базы данных ВЭД (сведения о внешнеэкономической деятельности ) по РФ и Украине 1999-2008 Фирмы, предприятия, банки РФ (регистрационные и фактические данные) по 2008 г. 3000 руб.Расчетно-кассовый Центр ЦБ 2003- 2005 г.г. (банковские

[WiX-users] Wix MSMQComponent Example

2008-05-21 Thread Krishnan Senthilraj
All, Please let me know few samples/examples to create the MSMQ Wix component. Also what schema url need to give? Please advice. Cheers Senthilraj - This SF.net email is sponsored by: Microsoft Defy all challenges. Microso

Re: [WiX-users] WIX property

2008-05-21 Thread Rob Hamflett
Default PASSWORD to something like "not-specified", and then have an error custom action conditioned on PASSWORD being equal to this original value. Rob pradnya mene wrote: > Hi, > > I am new to the list and just subscribed a few days back, > > The command line specified :msiexec /qn /i set

[WiX-users] WixUI issue in Wix

2008-05-21 Thread Hammad Butt
Hi folks. I am trying to learn the Wix tool and I'm taking the online tutorial at http://www.tramontana.co.hu/wix/ In the "user interface" section, I am trying to follow the instruction to build the SampleWixUI package. But I get linker errors when I try to build it: C:\tools\Wix2\projects\Samp

[WiX-users] Регистрация и защита интеллект уальной собственности

2008-05-21 Thread isak soroor
Услуги по регистрации товарных знаков, изобретений, промышленных образцов, полезных моделей, авторских прав. Наши клиенты не приемлют неудач в бизнесе, обращайтесь - поможем! Тел. / 495 / 629 9 611 Тел. / 499 / 408 9 683 Приносим свои изв

[WiX-users] HOTLAB - яркое и запоминающеес я РАЗВЛЕЧЕНИЕ

2008-05-21 Thread Мобильная фотостудия
HOTLAB - яркое и запоминающееся РАЗВЛЕЧЕНИЕ для участников вашихкорпоративных вечеринок и праздников! HOTLAB - это мобильная (выездная) фотостудия с моментальной печатью фотографий. Попадая в фотостудию, которая очень гармонично вливается в антуражпраздничного пространства, гости чувствуют