Trouble installing a *.msi file on a folder using Windows 7

I'm having trouble installing a *.msi file created under Microsoft Visual Studio.Net 2005 on a Windows 7 machine.  The problem occurs when I attempt to provide a directory for installation, but the installation wizard always defaults to the C: root
folder.  I can always move the created files and folders from the *.msi wizard to a directory of my choosing and run the tool
successfully.  But, I'm confused has to why the *.msi wizard always defaults to the C: root.
I have tried running the *.msi file in administrative mode using the various published methods but none of those methods are made available, in fact they are all disabled.  I.e. right click the *.msi file has a disabled "Run as Administrator"
option.  The properties under the *.msi file to "Run As Administrator" is also disabled.  And running the *.msi file under msiexec as also proven
unsuccessful.

Hello Marco,
From your description, this issue is related with the .msi file, i am afraid it is beyond the scope of our support, this current forum is used to discuss and ask questions about .NET Framework Base Classes (BCL) such as Collections, I/O, Regigistry, Globalization,
Reflection. My suggestion is that you could post this feedback to its owner.
Regards.
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Use msiexec to remotely install an .msi file accross the network

    I'm trying to install an .msi file via group policy but am not having any success. How can I install an .msi file onto computers accross the network using the msiexec command instead of psexec? I'm using this scriptwith psiexec below to no avail,
    I'm running the script as domain admin and the everyone, domain users and domain computer security groups all have ntfs full control permissions to the share folder and co-owner permissions
    to the share. I can also install the package manually and reach the share from the computer using
    \\servername\share
    C:\Users\hrice>psexec \\10.1.20.164 -u abc\admin -p password!! msiexec /i "\\abc-fs\comp
    any\IT\Shared\Adobe Flash Player\install_flash_player_11_active_x.msi\install_flash_play
    er_active_x.msi" /qn
    PsExec v1.98 - Execute processes remotely
    Copyright (C) 2001-2010 Mark Russinovich
    Sysinternals - www.sysinternals.com
    T h i s   i n s t a l l a t i o n   p a c k a g e   c o u l d   n o t   b e   o p e n e d
    .     V e r i f y   t h a t   t h e   p a c k a g e   e x i s t s   a n d   t h a t   y o
    u   c a n   a c c e s s   i t ,   o r   c o n t a c t   t h e   a p p l i c a t i o n   v
    e n d o r   t o   v e r i f y   t h a t   t h i s   i s   a   v a l i d   W i n d o w s
    I n s t a l l e r   p a c k a g e .
     msiexec exited on 10.1.20.164 with error code 1619.

    Doesn't matter, you wanted to use group policy to assign the MSI over the network anyways, right.  
    http://technet.microsoft.com/en-us/library/cc757024%28v=ws.10%29.aspx
    http://support.microsoft.com/kb/816102
    http://www.ehow.com/how_7571432_remotely-install-msi.html
    * 1 - Click the Windows "Start" button and type "gpedit.msc" and press "Enter." This is the shortcut command to open the group policy editor.
    * 2 - Double-click the "Computer Configuration" icon to expand some options. Click "Software Settings." Right-click "Software Configuration" and select "New Package" to open a "New Package" wizard.
    * 3 - Click the "Open" button and point to the location of your MSI file. This can be on a network drive, or on the network server. Click "Open" to save the location.
    * 4 - Click the "Assigned" option and click "OK." The "Assigned" option assigns it to network users. You can disable the package in the future by editing the group policy properties and removing this check box.
    * 5 - Click "OK" to save your package. The new package is shown in the details pane and it takes effect the next time your users log in to the network.
    Don't forget to mark your posts as answered so they drop off the unanswered post filter. If I've helped you and you want to show your gratitude, just click that green thingy.

  • How to install the msi file for tax return

    i am having problem installing the msi file.

    The short answer is that they don't support anything but Windows.
    http://www.ato.gov.au/individuals/content.aspx?doc=/content/73931.htm
    You would have to use Bootcamp and install Windows or install an emulator like Parallels and then install Windows into the Parallels emulator.
    It probably won't do any good but you could file a complaint with them over their choice to only support Windows.

  • How could install a exe file to C:\Test using LV8.0 Application builder?

    I built a project file and created an installer. But the proble is I don't know how to setup the project properity to install the executable file into the folder C:\Test. Can anyone help me?
    The attached is the project image.
    Attachments:
    14.JPG ‏89 KB

    sloved.

  • How to find number of files in a folder using pl/sql

    please someone guide as to how to find number of files in a folder using pl/sql
    Regards

    The Java option works well.
    -- results table that will contain a file list result
    create global temporary table directory_list
            directory       varchar2(1000),
            filename        varchar2(1000)
    on commit preserve rows
    -- allowing public access to this temp table
    grant select, update, insert, delete on directory_list to public;
    create or replace public synonym directory_list for directory_list;
    -- creating the java proc that does the file listing
    create or replace and compile java source named "ListFiles" as
    import java.io.*;
    import java.sql.*;
    public class ListFiles
            public static void getList(String directory, String filter)
            throws SQLException
                    File path = new File( directory );
                    final String ExpressionFilter =  filter;
                    FilenameFilter fileFilter = new FilenameFilter() {
                            public boolean accept(File dir, String name) {
                                    if(name.equalsIgnoreCase(ExpressionFilter))
                                            return true;
                                    if(name.matches("." + ExpressionFilter))
                                            return true;
                                    return false;
                    String[] list = path.list(fileFilter);
                    String element;
                    for(int i = 0; i < list.length; i++)
                            element = list;
    #sql {
    insert
    into directory_list
    ( directory, filename )
    values
    ( :directory, :element )
    -- creating the PL/SQL wrapper for the java proc
    create or replace procedure ListFiles( cDirectory in varchar2, cFilter in varchar2 )
    as language java
    name 'ListFiles.getList( java.lang.String, java.lang.String )';
    -- punching a hole in the Java VM that allows access to the server's file
    -- systems from inside the Oracle JVM (these also allows executing command
    -- line and external programs)
    -- NOTE: this hole MUST be secured using proper Oracle security (e.g. AUTHID
    -- DEFINER PL/SQL code that is trusted)
    declare
    SCHEMA varchar2(30) := USER;
    begin
    dbms_java.grant_permission(
    SCHEMA,
    'SYS:java.io.FilePermission',
    '<<ALL FILES>>',
    'execute, read, write, delete'
    dbms_java.grant_permission(
    SCHEMA,
    'SYS:java.lang.RuntimePermission',
    'writeFileDescriptor',
    dbms_java.grant_permission(
    SCHEMA,
    'SYS:java.lang.RuntimePermission',
    'readFileDescriptor',
    commit;
    end;
    To use:
    SQL> exec ListFiles('/tmp', '*.log' );
    PL/SQL procedure successfully completed.
    SQL> select * from directory_list;
    DIRECTORY FILENAME
    /tmp X11_newfonts.log
    /tmp ipv6agt.crashlog
    /tmp dtappint.log
    /tmp Core.sd-log
    /tmp core_intg.sd-log
    /tmp da.sd-log
    /tmp dhcpclient.log
    /tmp oracle8.sd-log
    /tmp cc.sd-log
    /tmp oms.log
    /tmp OmniBack.sd-log
    /tmp DPISInstall.sd-log
    12 rows selected.
    SQL>

  • Trouble installing vz access manager on a gateway nv5207 windows 7 64-bit operating system

    I am having trouble installing vz access manager on a gateway nv5207 windows 7 64-bit operating system.  It will load the windows generic broadband drivers and the verizon wireless fimware updates and then it will do a search for previous versions of vz manager and it will just stay stuck on that part of the installation.  I had cricket wireless broadband on here and uninstalled it and installed vz manager and it worked for a minuet, but it start acting up again.  So from that point I uninstalled everything and tried to reinstall everything with the same problem.. Even after I cleaned up the registry....thanks in advance for anyone that can help me out.

    I am having trouble installing vz access manager on a gateway nv5207 windows 7 64-bit operating system.  It will load the windows generic broadband drivers and the verizon wireless fimware updates and then it will do a search for previous versions of vz manager and it will just stay stuck on that part of the installation.  I had cricket wireless broadband on here and uninstalled it and installed vz manager and it worked for a minuet, but it start acting up again.  So from that point I uninstalled everything and tried to reinstall everything with the same problem.. Even after I cleaned up the registry....thanks in advance for anyone that can help me out.

  • Please help me, i can't install itunes on my laptop, i am using windows 7.

    i can't install itunes on my laptop, i am using windows 7, also updates i can't install, it says its not existing the folder or files of itunes. thanks....
    erl

    What's the precise text of the error message, please? (There's a few different ones I can think of that you might be getting.)

  • Itunes wont inport anythig it show listings but comes up with error ocurred while converting (song title ) the required file cannot be found using windows 8

    itunes wont inport anythig it show listings but comes up with error ocurred while converting (song title ) the required file cannot be found using windows 8

    iTunes cannot convert protected WMA tracks. There may also be problems if it can't get full access permissions. What exactly are you trying to do when the error occurs?
    tt2

  • Im trying to install windows 7 in on my macbook pro, i thought it just install like intel based PC, so i use windows 7 DVD, i format the harddisk, and installation failed. When i reboot, OS X is missing, because i've format my harddisk. So what should ido

    Im trying to install windows 7 in on my macbook pro, i thought it just install like intel based PC, so i use windows 7 DVD, i format the harddisk, and installation failed. When i reboot, OS X is missing, because i've format my harddisk. So what should i do to make my MBP is with windows 7

    Thanks for all of your help!  Big time!
    Guys, I been in the business working on PC and MAC for years. So I am not green at this, I was looking for some kind of option to get past the boot loader..  Which is failing. 
    I know how to boot into these modes.. Done tons of research before posting and couldn't find anything.
    It will not go into  Internet Recovery, or any thing else.  I hear the sound .. then that is it.. I get nothing else..
    I have tried clearing the NVRAM which is Option + Command + P + R
    Still nothing..
    So I thought I would try here to see if maybe there was some trick out there someone might know of that would work.
    What else guys?  I am hitting th keys right..

  • I have an Acrobat 8 which is all I need.  Installed on my new computer which is using Windows 8.  Each time I open Acrobat I get a window that say unable to registrator.  It gives me three options try again, redo, never register.

    I have an Acrobat 8 which is all I need.  Installed on my new computer which is using Windows 8.  Each time I open Acrobat I get a window that say unable to registrator.  It gives me three options try again, redo, never register.  No matter which option I choose I cannot stop the window from opening each time I open the computer.
    Any suggestions?

    Probably far too old to register. Sounds like a bug, stopping the "never" selection from working. You may be stuck with it.

  • Control panel error when installing from MSI file with JRE 7 update 21

    When I install JRE from the MSI file that I get from the user folder I get an error then I try to start Java Control Panel. Java applications works ok but I cant start the Control panel. If I uninstall Java and install it by executing the offline exe file the installation works fine and the control panel also works.

    Yes same problem here. I had a successful rollout with the MSI package and version 1.7 Update 17 on 1500 computers!
    I packaged the Update 21 and on my first test-clients the control panel crashes when I try to open it. But the setup ends successful without any error code all eventviewer entries are successful and it seems that the environment is running. Firefox plugintest was successful.
    Why doesn't offer Orcale the MSI files?! Since last year Java cost me o lot of time deploying Java. There is no update which you can release quickly because there are always bugs to deploy them.

  • How to Uninstall Crystal Reports installed via .msi file

    Post Author: epowers0213
    CA Forum: General
    Hello,
    We are installing crystal reports on some clustered servers using the CRRedist2005_x86.msi so that a web application which uses Crystal Reports will run properly.  (Visual Studio is not installed on these servers.)
    If there is any problem caused by running the CRRedist2005_x86.msi program, how could we back out the installation/uninstall this version of Crystal Reports?  Our server administration group wants me to provide an "uninstall program" just in case running the .msi file causes problems for any of the other applications on the server.  However, I have not been able to find any information on this on the Business Objects web site (apart from some manual uninstall directions).
    Can anyone help?
    Thank you in advance!

    XMI is XML with a specified format. 
    Looking at the XMI format definition for the XML, it doesn't appear if it will automatically be consumed by Crystal. 
    Crystal expects relational, rather than hierarchial, data - so you'd need to find a way of exposing the data within XMI as a relational dataset.
    Sincerely,
    Ted Ueda

  • I cannot install any MSI files Windows 7 Home Premium.

    Hi,
    I have searched forums and have not found anything to fix this problem... I can't even install Office!
    I get the following error when trying to open any MSI file:
    "Windows Installer"
    "This installation package could not be opened. Verify that the package exists and you can access it, or cantact the application vendor to verify that it is a valid Windows Installer Package.
    Please help me with this microsoft!
    Regards,
    Eddy

    Hi Eddy,
    Based on
    Sai Siva Kumar's suggestion,
    Please try the following methods to solve this issue:
    Method 1: Create a new user account
    To open User Accounts, click the
    Start, click Control Panel, click User Accounts and Family Safety, and then click
    User Accounts.
    Click
    Manage another account.  If you're prompted for an administrator password or confirmation, type the password or provide confirmation.
    Click
    Create a new account.
    Type the name you want to give the user account, click an account type, and then click
    Create Account.
    For your information, please review this article
    Create a user account to learn more about how to create a new user account.
    Method 2:
    Change Environment Variables
    Right click Computer from the start menu, select Properties and click Advanced
    System Settings on the left.
    Select the
    Advanced tab and click the Environment Variables button on the bottom
    Under
    User Variables, select TEMP and click the
    Edit button
    Change the location for
    Variable Value to the desired location ( i.e. C:\TEMP) and click OK
    Do the same thing for TMP  and click
    OK.
    What’s more, it would be helpful for future troubleshooting if you could help to collect the following information:
    Did Windows work fine before? If so,
    what did you do after it worked fine last time? For example, installed some software or changed some settings.
    Have you done some troubleshooting? If so, please tell us what you have done and the results to help us collect more useful information.
    Regards,
    Lany Zhang

  • Java does not update older version when installing from MSI file

    I'm using an MSI file of Java because it's easier for deploying through SCCM. Anyway when I do everything works fine except it does not update older versions of Java. So for instance if I have Java 7 update 7 and install Java 7 update 21 using the MSI file I'll then have two versions of Java installed on my computer. Anybody know a way to install using the MSI file where it updates older versions of Java (as long as it's the same major revision) like the exe would?

    Yes same problem here. I had a successful rollout with the MSI package and version 1.7 Update 17 on 1500 computers!
    I packaged the Update 21 and on my first test-clients the control panel crashes when I try to open it. But the setup ends successful without any error code all eventviewer entries are successful and it seems that the environment is running. Firefox plugintest was successful.
    Why doesn't offer Orcale the MSI files?! Since last year Java cost me o lot of time deploying Java. There is no update which you can release quickly because there are always bugs to deploy them.

  • Can't save files to Last Folder Used

    I'm scanning items with a Kodak iQsmart3, running under Kodak's oXYgen 2.6.1 scan application. Late last week, the application suddenly stopped saving files to the last folder used. Now I have to re-select the destination folder for each scan.
    I have rebooted the computer several times, and have also re-installed the scan application, but nothing helps the problem. It seems now that the problem may be with OS 10.4.11. I've searched and searched for a solution within the OS, but can't find anything that helps.
    Does anyone have a suggestion on how to proceed? Is there a place where you can check to see if the saving options can be changed?

    Thanks for your suggestion. However, I did as you advised and still cannot save files to the last folder used, as I used to be able to do.
    This is the first time in the 2 1/2 years I've been using this system that I've had any trouble with it. When I opened Disk Utility, it showed me the size and type of three different drives, all identical in manufacture. The first holds the Operating system, and the other two are set up in a Raid Striped set. I selected Macintosh HD under the name of the first drive, since that's the name of the disk on my desktop, and ran the Repair Permissions function, moving the recentitems.plist file to the desktop and rebooting, as per your instructions. Was that the proper area to use or should I have selected the disk description above that?
    (Below is the disk information from the Disk Utility application)
    Disk Description : Hitachi HDS725050KLA360 Media Total Capacity : 465.8 GB (500,107,862,016 Bytes)
    Connection Bus : Serial ATA 2 Write Status : Read/Write
    Connection Type : Internal S.M.A.R.T. Status : Verified
    Connection ID : "Bay 1" Partition Scheme : GUID Partition Table
    (Below is the information on the Macintosh HD folder of that drive.)
    Mount Point : / Capacity : 465.4 GB (499,763,888,128 Bytes)
    Format : Mac OS Extended (Journaled) Available : 226.2 GB (242,855,989,248 Bytes)
    Owners Enabled : Yes Used : 239.3 GB (256,907,898,880 Bytes)
    Number of Folders : 133,296 Number of Files : 684,567

Maybe you are looking for

  • Workflow Admin read only responsibility in EBS 11.5.10.2

    Hi All, I have a requirement to create a read only workflow administrator. For that I have done the below steps. 1. Created one permission set with Monitor Data. 2. Created one role and one grant for that role with the above selected permission set.

  • Update set of books in implementation options ??

    we are doing project setup[ in one of the test instance , How ever while doing thta in implementation options set of books is saved incorrectly and now it is freezed (not able to change the set of books field) ..Navigation setup -->system-->implement

  • Oracle outer join on  multiple tables throws error

    Hi , We are using ansi joins with outer joins on multiple tables in oracle 9i. Now these queries have to be used in Oracle8i. Since Oracle8i does not support ansi sql we are replacing the ansi sql queries with the oracle joins. On trying the same we

  • ERROR while calling BAPI_MATERIAL_SAVEDATA

    Hi Guys, i'm trying to create Manufacturer part number for a material by using BAPI_MATERIAL_SAVEDATA. In my return i'm getting the error as "<b>Manufacturer part number management not set for your firm's own material</b>" I have created the material

  • Scrolling Really Slow [HELP]

    Any ideas what I could be doing to cause slow scrolling ?  After looking at some of the Site of the Day examples.. they seem to be scrolling ok.  Thoughts ?