[SOLVED]Ruby Gem gtk3 Won't Install

I wrote a ruby program that uses gtk3, which I had installed from AUR using yaourt. Recently I noticed that the package has been orphaned, so I decided, possibly unwisely, to uninstall the AUR package and install the gem via 'gem install gtk3'. Unfortunately I get this result:
Building native extensions. This could take a while...
ERROR: Error installing gtk3:
ERROR: Failed to build gem native extension.
/usr/bin/ruby -r ./siteconf20150422-3325-14ntm49.rb extconf.rb
checking for --enable-debug-build option... no
checking for -Wall option to compiler... yes
checking for -Waggregate-return option to compiler... yes
checking for -Wcast-align option to compiler... yes
checking for -Wextra option to compiler... yes
checking for -Wformat=2 option to compiler... yes
checking for -Winit-self option to compiler... yes
checking for -Wlarger-than-65500 option to compiler... yes
checking for -Wmissing-declarations option to compiler... yes
checking for -Wmissing-format-attribute option to compiler... yes
checking for -Wmissing-include-dirs option to compiler... yes
checking for -Wmissing-noreturn option to compiler... yes
checking for -Wmissing-prototypes option to compiler... yes
checking for -Wnested-externs option to compiler... yes
checking for -Wold-style-definition option to compiler... yes
checking for -Wpacked option to compiler... yes
checking for -Wp,-D_FORTIFY_SOURCE=2 option to compiler... yes
checking for -Wpointer-arith option to compiler... yes
checking for -Wswitch-default option to compiler... yes
checking for -Wswitch-enum option to compiler... yes
checking for -Wundef option to compiler... yes
checking for -Wout-of-line-declaration option to compiler... no
checking for -Wunsafe-loop-optimizations option to compiler... yes
checking for -Wwrite-strings option to compiler... yes
checking for rb_define_alloc_func() in ruby.h... yes
checking for rb_block_proc() in ruby.h... yes
checking for new allocation framework... yes
checking for attribute assignment... no
checking for Windows... no
checking for gobject-2.0 version (>= 2.12.0)... yes
checking for gthread-2.0... yes
checking for unistd.h... yes
checking for io.h... no
checking for g_spawn_close_pid() in glib.h... yes
checking for g_thread_init() in glib.h... yes
checking for g_main_depth() in glib.h... yes
checking for g_listenv() in glib.h... yes
checking for rb_check_array_type() in ruby.h... yes
checking for rb_check_hash_type() in ruby.h... yes
checking for rb_exec_recursive() in ruby.h... yes
checking for rb_errinfo() in ruby.h... yes
checking for rb_sourcefile() in ruby.h... yes
checking for rb_sourceline() in ruby.h... yes
checking for ruby_set_current_source() in ruby.h... no
checking for rb_thread_call_without_gvl() in ruby.h... yes
checking for ruby_native_thread_p() in ruby.h... yes
checking for rb_thread_call_with_gvl() in ruby.h... yes
checking for rb_str_new_cstr() in ruby.h... yes
checking for rb_gc_register_mark_object() in ruby.h... yes
checking for rb_exc_new_str() in ruby.h... yes
checking for curr_thread in ruby.h,node.h... no
checking for rb_curr_thread in ruby.h,node.h... no
creating ruby-glib2.pc
creating glib-enum-types.c
creating glib-enum-types.h
creating Makefile
make "DESTDIR=" clean
make "DESTDIR="
compiling rbglib_win32.c
compiling rbglib_ucs4.c
compiling glib-enum-types.c
glib-enum-types.c: In function 'g_win32_os_type_get_type':
glib-enum-types.c:85:9: error: 'G_WIN32_OS_ANY' undeclared (first use in this function)
{ G_WIN32_OS_ANY, "G_WIN32_OS_ANY", "any" },
^
glib-enum-types.c:85:9: note: each undeclared identifier is reported only once for each function it appears in
glib-enum-types.c:86:9: error: 'G_WIN32_OS_WORKSTATION' undeclared (first use in this function)
{ G_WIN32_OS_WORKSTATION, "G_WIN32_OS_WORKSTATION", "workstation" },
^
glib-enum-types.c:87:9: error: 'G_WIN32_OS_SERVER' undeclared (first use in this function)
{ G_WIN32_OS_SERVER, "G_WIN32_OS_SERVER", "server" },
^
Makefile:237: recipe for target 'glib-enum-types.o' failed
make: *** [glib-enum-types.o] Error 1
make failed, exit code 2
I found this bug report, but I can't tell if this is related or not.
I can successfully install other gems.
I tried going back to the AUR package, but now I get this error:
error: failed to commit transaction (conflicting files)
ruby-pkgconfig: /usr/lib/ruby/gems/2.2.0/cache/pkg-config-1.1.6.gem exists in filesystem
gem list produces this:
*** LOCAL GEMS ***
bigdecimal (1.2.7, 1.2.6)
io-console (0.4.3)
json (1.8.2, 1.8.1)
minitest (5.6.0, 5.4.3)
pkg-config (1.1.6)
power_assert (0.2.3, 0.2.2)
psych (2.0.13, 2.0.8)
rake (10.4.2)
rdoc (4.2.0)
test-unit (3.0.9, 3.0.8)
I ran 'gem uninstall pkg-config' and retried the AUR package install with the same result.
Last edited by deryl (2015-04-23 12:19:04)

Your gem compilation hit known upstream bug https://github.com/ruby-gnome2/ruby-gnome2/issues/361 Here is a patch that fixes ruby-glib2 https://projects.archlinux.org/svntogit … ruby-glib2 I do not know if ruby-gtk3 should be patched or not (most likely not).
To fix "gem exists in filesystem" error you need to remove all the gems installed globally (to /usr/...). The best way is to use lostfiles package from AUR.
Last edited by anatolik (2015-04-23 02:53:08)

Similar Messages

  • [Solved] Ruby - Gem bundle install no longer works

    Hi,
    I am new to Linux, Arch and Ruby.
    About 3 days ago I installed Arch on my virtualbox.
    After I was happy with my installation (openbox as WM) I installed ruby.
    I was able to install a project (Gemfile) using the command:
    gem bundle install (from the terminal)
    (That was after installing the bundle gem from within ruby: gem install bundle)
    Today, after updating my Arch system, I had to install that project again (for reasons related to the project), and I cannot.
    I write in the terminal:
    gem bundle install
    and get:
    ERROR:  While executing gem ... (RuntimeError)
        Unknown command bundle
    I searched the forums, but there's nothing relevant that I could find.
    Can someone help?
    Edit:
    After more tries and searches I have found:
    1. This has nothing to do with the Arch update as I feared.
    2. The command to run is "bundle install" not as I initially did.
    Apologies for cluttering the forum.
    Last edited by Tronn (2012-07-24 06:07:18)

    bradmccormack wrote:
    Hi mavenik,
    Whilst it is not the best way to do it, the following worked for me
    1) install gcc44 from AUR (you can probably use gcc45 too). If you are not sure how to do that please search the forums for installing from Aur or Aur wrappers (I use packer)
    packer -S gcc44.
    2) After it is installed temporarily rename your current gcc (4.7.x) 
    sudo mv /usr/bin/gcc /usr/bin/gcc4.7
    3) create a symlink to gcc4.4.x
    sudo ln -s /opt/gcc-4.4/gcc /usr/bin/gcc
    Test gcc version by doing
    gcc --version
    It should say 4.4.6 or similar
    4) install ruby1.8 or ruby-enterprise from Aur (if this is required for redmine)
    packer -S ruby-enterprise
    ruby will now be compiled using an older version of gcc and gems will install correctly.
    5) delete the symlink
    sudo unlink /usr/bin/gcc
    6) rename gcc4.7 back to gcc
    sudo mv /usr/bin/gcc4.7
    Test the version again to make sure it has reverted.
    Please note the proper way to do this would be to set ruby1.8 / ruby-enterprise to compile with the older gcc by setting CC in the pkgbuild.
    I'm not sure how to do that (had no luck) so the hacky solution above worked for me.
    Please check each command above before you use it to make sure it is safe and valid for you.
    Enjoy !
    You should be able to compile with the older gcc by putting CC=/path/to/your/compiler right before "make", like so:
    CC=/opt/gcc-4.4/gcc make
    YEAH! I got it working!  Here's what I did: install "gcc45" from the AUR, then compile ruby-enterprise by downloading the AUR package and running:
    CC=gcc-4.5 makepkg
    ... then install the package.  IT WORKS!
    Last edited by synthead (2012-04-23 13:52:39)

  • [SOLVED]Ruby on Rails won't run with apache/passenger

    Hi I want to run Redmine, a Ruby on Rails application, on a personal server using MariaDB as the database and Apache with the Phusion Passenger module as the application platform. So far I am able to run Redmine with the default WeBrick server, but if I try to run it via Apache (http://192.168.1.5/redmine) I just get the directory index of  /usr/share/webapps/redmine. I've been running various php webapps using this apache installation without issues but my unfamiliarity with Ruby on Rails makes me unsure how to fix this. If I create a Ruby on Rails test  application as described at https://wiki.archlinux.org/index.php/Ru … figuration I get the same issue.
    Using the arch wiki articles on Ruby on Rails and Redmine, This is basically how I installed things:
    $ yaourt -S ruby1.9 rubygems1.9 nodejs redmine
    # gem-1.9 install rails
    # gem-1.9 install passenger
    /opt/ruby-1-9/ and subfolders ended up having no read/exexute permissions for 'other', probably because of my umask settings, so I changed the permissions, also because apache runs as user/group 'apache'.
    Ran the script that installs the passenger apache module:
    # /opt/ruby1.9/bin/passenger-install-apache2-module
    added to httpd.conf:
    LoadModule passenger_module /opt/ruby1.9/lib/ruby/gems/1.9.1/gems/passenger-4.0.5/libout/apache2/mod_passenger.so
    PassengerRoot /opt/ruby1.9/lib/ruby/gems/1.9.1/gems/passenger-4.0.5
    PassengerDefaultRuby /opt/ruby1.9/bin/ruby
    ServerName arch-server
    DocumentRoot /usr/share/webapps
    <Directory "/usr/share/webapps">
    # This relaxes Apache security settings.
    AllowOverride all
    Order allow,deny
    Allow from all
    # MultiViews must be turned off.
    Options -MultiViews
    </Directory>
    I checked if the passenger module is loaded, and judging from /var/log/httpd/error_log that seems the case:
    [ 2013-07-03 22:52:22.8947 28902/b7407700 agents/Watchdog/Main.cpp:440 ]: Options: { 'analytics_log_user' => 'nobody', 'default_group' => 'nobody', 'default_python' => 'python', 'default_ruby' => '/opt/ruby1.9/bin/ruby', 'default_user' => 'nobody', 'log_level' => '0', 'max_instances_per_app' => '0', 'max_pool_size' => '6', 'passenger_root' => '/opt/ruby1.9/lib/ruby/gems/1.9.1/gems/passenger-4.0.5', 'pool_idle_time' => '300', 'temp_dir' => '/tmp', 'union_station_gateway_address' => 'gateway.unionstationapp.com', 'union_station_gateway_port' => '443', 'user_switching' => 'true', 'web_server_pid' => '28901', 'web_server_type' => 'apache', 'web_server_worker_gid' => '1001', 'web_server_worker_uid' => '1006' }
    [ 2013-07-03 22:52:22.9120 28905/b73bd700 agents/HelperAgent/Main.cpp:555 ]: PassengerHelperAgent online, listening at unix:/tmp/passenger.1.0.28901/generation-0/request
    [ 2013-07-03 22:52:22.9262 28902/b7407700 agents/Watchdog/Main.cpp:564 ]: All Phusion Passenger agents started!
    [ 2013-07-03 22:52:22.9266 28910/b71dd700 agents/LoggingAgent/Main.cpp:271 ]: PassengerLoggingAgent online, listening at unix:/tmp/passenger.1.0.28901/generation-0/logging
    [Wed Jul 03 22:52:22 2013] [notice] Apache/2.2.24 (Unix) PHP/5.4.16 mod_ssl/2.2.24 OpenSSL/1.0.1e DAV/2 Phusion_Passenger/4.0.5 configured -- resuming normal operations
    'apachectl configtest' gives 'Syntax OK'.
    I followed the wiki on redmine (https://wiki.archlinux.org/index.php/Redmine), chose to use "bundle install" to install the required gems with only a 'production' environment. What worried me is that those gems are now in /root/.gems while the webserver runs as user 'apache'.
    I can run Redmine at 192.168.1.5:3000 without errors using:
    # ruby script/rails server webrick -e production
    But if I kill it and try via apache http://192.168.1.5/redmine I get a directory content listing.
    Last edited by rwd (2013-07-04 21:00:10)

    Thanks markocz, my use of sub-url was indeed the problem. With help from the linked article I did the following:
    # mkdir /usr/share/webapps/phusion-passenger/
    # ln -s /usr/share/webapps/redmine/public /usr/share/webapps/phusion-passenger/redmine
    # chown -R root:http /usr/share/webapps/
    # chmod -R g+rx /usr/share/webapps/
    httpd.conf now looks like this:
    LoadModule passenger_module /opt/ruby1.9/lib/ruby/gems/1.9.1/gems/passenger-4.0.5/libout/apache2/mod_passenger.so
    PassengerRoot /opt/ruby1.9/lib/ruby/gems/1.9.1/gems/passenger-4.0.5
    PassengerDefaultRuby /opt/ruby1.9/bin/ruby
    ServerName arch-server
    DocumentRoot /usr/share/webapps/phusion-passenger
    <Directory "/usr/share/webapps/phusion-passenger">
    # This relaxes Apache security settings.
    AllowOverride all
    Order allow,deny
    Allow from all
    # MultiViews must be turned off.
    Options +FollowSymLinks
    </Directory>
    RailsBaseURI /redmine
    <Directory "/usr/share/webapps/phusion-passenger/redmine">
    Options -MultiViews
    </Directory>
    Redmine now works via passenger.
    Last edited by rwd (2013-07-04 20:59:40)

  • [SOLVED] Gnome Shell Extensions won't install from website

    When I go to https://extensions.gnome.org/ from either Chromium or Firefox, extensions fail to install. If I click the toggle to turn a new extension "ON", nothing happens. Reloading the site switches it back to "OFF".
    I was able to install gnome-shell-extension-mediaplayer-git from the AUR. (Which also pulls in gnome-shell-extension-common-git.) It works fine. The problem is that most of the extensions on the AUR appear to be outdated and the users directed to the official site.
    This is a relatively new install of Arch and extensions have never worked. Maybe there's a package I'm missing? Or is there a way to get any debugging output? I'm not sure where to look.
    Last edited by ioos (2013-02-27 23:50:32)

    I found the following from AskUbuntu (not my own words, pasted from the source:
    I'll take a wild stab in the dark: If you're using Chrome/Chromium, navigate to about:plugins and make sure "Gnome Shell Integration" is enabled. Then navigate back to extensions.gnome.org and when the ribbon appears at the top make sure you "Always Allow for this Site"
    On Firefox you'll have to do something similar if you've turned extensions off. Browse to about:plugins and make sure libgnome-shell-browser-plugin.so is present / enabled. If it's not, upgrade Gnome Shell, or find it on your filesystem and link to it from to ~/.mozilla/plugins (you shouldn't have to do this though).
    Source

  • [Solved] thunar-archive-plugin won't install in Xfce 4.8.0

    Hi again.
    When I attempt to install the thunar archive integration package, this is the message I recieve despite having all the requirements installed.
    NOTE for thunar-archive-plugin:
    ==> please install xarchiver, squeeze, file-roller or ark to use the plugin
    Is there anything I can do to remedy this?
    I found a thread from back in January with the same issue. But, These are different package versions involved.
    Last edited by Who'sThere? (2011-06-03 03:15:08)

    Yes. I've had Xfce4, Thunar, and Xarchiver installed  since day one of the initial netinstall.
    No, Force installing the package doesn't work.
    EDIT;
    I ran the following command.
    pacman -Rnss thunar xarchiver
    I then ran.
    pacman -Scc
    After reinstalling all of the above apps, I now have the 'extract here', and 'extract to...' options available.
    Last edited by Who'sThere? (2011-06-03 03:14:51)

  • Ruby gem Psych::SyntaxError (no file specified) (SOLVED)

    I'm trying to install some cool ruby gems, and at first it worked fine. Just installed ruby by with
    sudo pacman -S ruby
    and then I managed to install some gems with
    gem install _random_gem_
    When I tried to install another gem, shopify_theme, I started getting the famous "failed building native gem extension". I tried to fix it, I don't know if I did, but still I rebooted after a while and whop, it looked like it was installing as it should. I then tried to add the ruby gem to the PATH, and after that, everytime I type 'gem' I get:
    [user@arch]$ /usr/bin/gem
    /usr/lib/ruby/2.0.0/psych.rb:205:in `parse': (<unknown>): found character that cannot start any token while scanning for the next token at line 3 column 1 (Psych::SyntaxError)
    from /usr/lib/ruby/2.0.0/psych.rb:205:in `parse_stream'
    from /usr/lib/ruby/2.0.0/psych.rb:153:in `parse'
    from /usr/lib/ruby/2.0.0/psych.rb:129:in `load'
    from /usr/lib/ruby/2.0.0/rubygems/config_file.rb:318:in `load_file'
    from /usr/lib/ruby/2.0.0/rubygems/config_file.rb:191:in `initialize'
    from /usr/lib/ruby/2.0.0/rubygems/gem_runner.rb:66:in `new',
    from /usr/lib/ruby/2.0.0/rubygems/gem_runner.rb:66:in `do_configuration'
    from /usr/lib/ruby/2.0.0/rubygems/gem_runner.rb:46:in `run'
    from /usr/bin/gem:21:in `<main>'
    It doesn't even have to be a gem command, like gem list, or gem install. Whatever I type gives me the same error. I've tried uninstalling and reinstalling ruby, compiling it from source as well, but no luck. Since neither the bad character or the file in which the error occur isn't specified (maybe it is? I can't see it though), I'm having a hard time tracking it down and doing something about it.
    Any bright minds with the same experience out there? I'd love any help I can get :)
    Thanks in advance!
    Last edited by kottmaskinen (2013-09-26 10:29:01)

    AAAAAaaaahhhyeeeahh!!
    My ~/.gemrc had the wrong gem path in it!
    It had a dash and a new line in it, which wasn't cool, so I removed it and now it works Wow! I've been looking a week for how to solve this. This feels like christmas

  • Ruby gems installed from AUR leave files behind if removed again

    Most Ruby gems in the AUR use the PKGBUILD snippet provided by http://wiki.archlinux.org/index.php/Rub … Guidelines – now I think that using "gem install" will avoid the sandbox and also make it impossible for yaourt/clyde/… to keep track of the installed files. As a result of this, removing an installed package again (with `{yaourt,clyde,…} -R <package>` will *not* uninstall the gem, at all.
    A quick test demonstrates this:
    $ gem list | grep hmac
    $ yaourt -S ruby-hmac
    $ gem list | grep hmac
    ruby-hmac (0.4.0)
    $ yaourt -R ruby-hmac
    $ gem list | grep hmac
    ruby-hmac (0.4.0)
    As you can see, the gem is still there.
    Doesn't that defeat the purpose of using packages?

    I can't reproduce this, neither with ruby-hmac nor with my own gem based ruby packages on aur (e.g. ruby-uuid or ruby-macaddr). Pacman says Installed/removed size for ruby-hmac is 0.42MB.
    What's notable is that your gem version (1.3.6) is not the one currently shipped with arch's ruby package (1.3.1). Where does your gem installation come from?
    On my system:
    ~$» pacman -Qo gem
    /usr/bin/gem is owned by ruby 1.9.1_p429-1
    ~$» gem env
    RubyGems Environment:
    - RUBYGEMS VERSION: 1.3.1
    - RUBY VERSION: 1.9.1 (2010-07-02 patchlevel 429) [i686-linux]
    - INSTALLATION DIRECTORY: /usr/lib/ruby/gems/1.9.1
    - RUBY EXECUTABLE: /usr/bin/ruby
    - EXECUTABLE DIRECTORY: /usr/bin
    - RUBYGEMS PLATFORMS:
    - ruby
    - x86-linux
    - GEM PATHS:
    - /usr/lib/ruby/gems/1.9.1
    - /home/chenno/.gem/ruby/1.9.1
    - GEM CONFIGURATION:
    - :update_sources => true
    - :verbose => true
    - :benchmark => false
    - :backtrace => false
    - :bulk_threshold => 1000
    - REMOTE SOURCES:
    - http://gems.rubyforge.org/

  • HT1338 Apple sent me a disc for Snow Leapord so I could upgrade to Lion, but the disc won't install.  Anyone else have that problem?  How do i solve?  Can't move to I cloud until it is done.

    Apple sent me a disc for Snow Leapord so I could upgrade to Lion, but the disc won't install.  Anyone else have that problem?  How do i solve?  Can't move to I cloud until it is done.

    Hold c and reboot off the 10.6 disk, run the installer.
    If the machine your upgrading is the 2006, I'd highly advise you stay on 10.6.8
    It's a 5 year old machine, you're in the last life stages of that machine and 10.7 will push it right over the edge.
    10.6 is a GOOD upgrade for that machine, faster than 10.7 or 10.5.
    And 10.6 will run your 10.5 software, 10.7 will not.
    Get iCloud with a new 10.8 machine coming out after this summer, seriously.
    Your machine is too old to bother with Lion.
    Or else you can learn yourself and use this link to get back to Snow, good luck finding your 10.5 programs.
    How to revert your Mac to Snow Leopard

  • [solved] gtk3 themes for gtk3 apps, without installing gnome3

    After executing "pacman -Syu", transmission was upgraded to a newer version, but it no longer has the "Clearlooks" gtk2 interface wich I installed witch pacman and selected it with "lxappearance" because I don't have gnome2 or 3 installed. Now, transmission has an ugly gtk3 interface that looks like windows 95. But how can I install ans select a gtk3 theme, without installing gnome3 ? (because I only want to keep openbox and xmonad installed, and no other WM or DE)
    It says on wiki.archlinux that "gnome-tweak-tool" won't work if gnome3 is not installed...
    It also tried to install the "librsvg" package, and the Newlooks theme, and I've edited "~/gtk-3.0/settings.ini" to add:
    gtk-application-prefer-dark-theme = false
    gtk-theme-name = Zukitwo
    gtk-fallback-icon-theme = gnome
    ... and after reboot, Transmission doesn't have the "Newlooks" gtk theme... it still has the old looking theme
    Last edited by Chrys349 (2011-11-26 16:36:53)

    I am facing the same problem. I've created ~/.config/gtk-3.0/settings.ini file:
    [Settings]
    gtk-theme-name = elementary
    gtk-fallback-icon-theme = elementary
    gtk-toolbar-style=GTK_TOOLBAR_ICONS
    Someone also wrote that copying gtk-3.0 folder should enable gtk3 theme, but this also failed.
    cp -r /usr/share/themes/elementary/gtk-3.0/ ~/.config/gtk-3.0/

  • [SOLVED] Both stable and unstable chromium-pepper-flash won't install

    Hi all,
    I just installed Chromium, but am unable to install Flash. It was recommended that I install pepper-flash rather than flashplugin, since the latter is deprecated. But there is a problem:
    chromium-pepper-flash-stable won't install because the link to the package is invalid:
    ERROR: Failure while downloading google-chrome-stable-31.0.1650.57-1.x86_64.rpm
    chromium-pepper-flash won't install because the md5 checksum is invalid:
    ==> Validating source files with md5sums...
    google-chrome-unstable_current_amd64.deb ... FAILED
    LICENSE.txt ... Passed
    ==> ERROR: One or more files did not pass the validity check!
    This leaves me with three questions:
    Does this happen often, or is it a freak coincidence that both recommended Flash packages are broken on the first day I start using Arch?
    I can probably find the proper package file for chromium-pepper-flash-stable, but what is recommended practice for installing it (if I am in a hurry, or just impatient)? Should I hack the PKGBUILD file myself?
    Should I flag these packages as out-of-date in AUR?
    Thanks!
    Last edited by mhelvens (2013-12-04 22:51:39)

    Yes, edit the PKGBUILD yourself. Both the link and the checksum.
    Have a look at the comments: https://aur.archlinux.org/packages/chro … mments=all Being broken is not an uncommon occurrence for this package.

  • Windows Updates won't install - Error 0x80072EFD

    Question 
    Windows Updates won’t install.  I’m receiving Error 0x80072EFD.  What can I do to solve this?
    Answer 
    This particular error means that your computer was not able to connect to the Internet when it tried to install updates.  First, check your Internet connection and then try again. If that doesn’t work, try the methods below.
    Method A: Make sure that Windows Firewall is turned on, and temporarily disable third-party firewalls
    Warning This workaround may make a computer or a network more vulnerable to attack by malicious users or by malicious software such as viruses. We do not recommend this workaround but are providing this information so that you can implement this workaround at your own discretion. Use this workaround at your own risk.
    To complete this method, follow these steps.
    Step 1: Make sure that Windows Firewall is turned on
    To open Windows Firewall, click the Start button, and then click Control Panel. In the search box, type firewall, and then click Windows Firewall.
    Click Turn Windows Firewall on or off.
    Click On (recommended), and then click OK.
    Step 2: Temporarily disable third-party firewalls
    Click the Start button, click Control Panel, and then, under System and Security, click Review your computer's status.
    Click the arrow button next to Security to expand the section.
    Under Firewall, read the firewall status note. This information will indicate which, if any, firewall is installed and whether the firewall is turned on. For example, for ZoneAlarm, the notice will say ZoneAlarm Firewall is currently ON.
    Open the third-party firewall application that is listed in the firewall status note, and temporarily disable the firewall. If necessary, refer to the firewall application documentation, or contact the application vendor for more information about how to temporarily disable the application.
    Step 3: Try to install the updates again
    If this method resolved your issue, follow the steps in Method B, step 2 to re-enable your third-party firewall. You might want to also check for and install any necessary updates to your third-party firewall.
    If this method did not resolve your issue, continue with Method B.
    Method B: Temporarily disable third-party antivirus software
    Warning This workaround may make a computer or a network more vulnerable to attack by malicious users or by malicious software such as viruses. We do not recommend this workaround but are providing this information so that you can implement this workaround at your own discretion. Use this workaround at your own risk.
    Note If your third-party firewall is still disabled from Method A, do not open e-mail messages, surf the Web, or use instant messenger at this point.
    Step 1: Locate and temporarily disable your third-party antivirus software
    Note Windows does not detect all antivirus software, and some antivirus software doesn't report its status to Windows. If your antivirus software is not displayed in Windows Security Center, and you're not sure how to find it, try any of the following:
    Look for the antivirus software in the list of programs on the Start menu.
    Type the name of the software or the publisher in the Search box on the Start menu.
    Look for the software in Action Center:
    Click the Start button, click Control Panel, and then, under System and Security, click Review your computer's status.
    Click the arrow button next to Security to expand the section.
    If Windows can detect your antivirus software, it will be listed under Virus protection.
    If the software is turned on, check the Help documentation that was included with the software for information about how to disable it.
    Note You may have to look in the application documentation to determine how to do this.
    Step 2: Check for Windows Updates
    As soon as the antivirus software is temporarily disabled, visit the Windows Update or Microsoft Update site again, and try to download and install updates.
    If this method resolved your issue, and you were able to install the updates successfully, you should re-enable your third-party antivirus software.
    If this method did not resolve your issue, continue with Method C.
    Method C: Disable software accelerator programs
    Disable any software accelerator programs that may be running. Some examples of these programs are file download accelerators and Internet speed accelerators.
    Note If your third-party firewall is still disabled from Method B, do not open e-mail messages, surf the Web, or use instant messenger at this point.
    Step 1: Disable software accelerator programs
    To do this, select from the following options:
    See the documentation that was included with the program.
    View the Help files for your program.
    Contact the program vendor. For information about how to contact the program vendor, visit the following Microsoft Web site:
    http://support.microsoft.com/gp/vendors
    Step 2: Install Updates
    As soon as the software accelerator program is disabled, visit the Windows Update or Microsoft Update site again, and try to download and install updates.
    If this method resolved your issue, you should enable the software accelerator programs that you disabled in Step 1.
    If this method did not resolve your issue, continue with Method E.
    Method D: Add the Windows Update Web site and the Microsoft Update Web site to the Trusted Sites list
    Note If your third-party firewall is still disabled from Method A, do not open e-mail messages, surf the Web, or use instant messenger at this point.
    To add the Windows Update Web site and the Microsoft Update Web site to the Trusted Sites list, follow these steps:
    Start Windows Internet Explorer.
    On the Tools menu, click Internet Options.
    Note If you are using Internet Explorer 7, and the menu is not available, press the ALT key on your keyboard to access the Internet Explorer Menu.
    Click the Security tab, and then click Trusted Sites.
    Click Sites, and then click to clear the Require server verification (https for all sites in this zone check box.
    In the Add this Web site to the zone box, type the following addresses, and then click Add after you type each address:
    http://update.microsoft.com
    http://windowsupdate.microsoft.com
    Click OK two times.
    Try to install the updates again.
    If this method resolved your issue and you were able to install updates successfully, you should re-enable your third-party firewall if it is still disabled. To do this, see step 2 in Method A.
    For more methods and advanced troubleshooting techniques, see You may encounter temporary connection-related errors when you use Windows Update or Microsoft Update to install updates.

    Mark, I've just been through this update issue with two installations.  In my case, it seemed intertwined with authentification and indexing not working, either.    Upon a transfer of my system disk to new hardware I got hit with the issue and couldn't fix it.  Which is why I did a clean install of Win7 ultimate 64bit on my T61p.  The install (including update) worked great until I ran the intel matrix storage manager update.  This broke windows update.  If you surf the web, and include "intel rapid storage manager" or "intel matrix storage manager" and "Windows update fails", you'll see that a lot of folks feel that the intel driver (or how windows handles it) is what breaks update.  I tracked this down to a driver, iastor.sys, in windows\system32\drivers.    I was able to fix my Window Update by copying an iastor.sys from another recently built machine (should be exactly the same, but this was my wife's T510, but still Win 7 Pro 64) to overwrite the iastor.sys that the intel update changed.  To be clear: I couldn't get windows update or indexing to work.  I overwrote* the "bad" iastor.sys with one that worked on another computer.  Rebooted.  Update worked. I just wanted to point out that instead of blindly installing updates to fix problems, folks should be aware that sometimes the update is the problem. Especially as these systems are off warranty and the drivers are not being updated.  I've asked elsewhere, so let me ask here: Where is the System Interface Driver for t61p?  Not listed anywhere on site, links on the web referring to it are all broken.  Is the System Interface Driver now part of another driver program?  Thanks! Jim T61p, Win 7 Ultimate 64bit, and T510, Win 7 Pro 64bit

  • HP OfficeJet J6410 won't install under Windows 8 & Windows 8.1

    Recently I made a posting about installing the HP OfficeJet J6410 printer on my daughter's new HP laptop.
    Please, before answering my question, I would like to point out to two earlier postings from me.
    1. The first posting.
    Around april this year (2014) I bought a new laptop for myself (a HP 15 Notebook PC, d081ed). It had Windows 8.1 pre-installed on it. At first I had problems installing the HP OfficeJet J6410 printer. I received a very usefull reply by which I was able to solve the problem.
    Read more about this posting here: http://h30434.www3.hp.com/t5/Printer-All-in-One-Install-Setup/Officet-J6410-won-t-install-under-Wind...
    2. The second posting.
    Almost two weeks ago a bought a second HP laptop (HP Pavilion TouchSmart 11-e000ed) voor my daughter. This laptop had Windows 8 pre-installed on it. I experienced the same problem with the printer and made a posting. Unfortunatelly that didn't resolve the problem. I received no further reactions. The problem is still unsolved.
    Read more about this posting here: http://h30434.www3.hp.com/t5/Printer-All-in-One-Install-Setup/HP-OfficeJet-J6410-won-t-install-under...
    A. What have I done afterwards?
    Afterwards the previous above I first made sure I had all the updates for Windows 8 installed. I've read that in the case of the laptop of my daughter I could upgrade for free to Windows 8.1. So I did that too.
    B. Why a second posting?
    Since I upgraded to Windows 8.1. I realized my second posting wasn't quite accurate anymore. I realized it could lead to confusion since I now don't have Windows 8 installed on it anymore.
    Now here's the strange part.
    B.1.
    On my own laptop (d081ed, HP 15 Notebook PC) I have the same operating system (Windows 8.1. ) as I now have on the laptop for my daughter (11-e000ed, HP Pavillion Touchsmart)
    B.2.
    After upgrading I tried the same steps, as described in my first posting, on the laptop for my daughter.
    Strangely enough, and although we now both have a HP laptop with exactly the same operating system on it, I can not get the printer installed.
    What can be wrong? I tried updating, the scrubber, the packages to solve the C++ redistributable packages... nohting works! And worse!! It seems I somehow made the problem worse...
    Why do I think that, and are there things or error-messages that are different than the one I experienced before (with my own laptop, see point 1 above at the beginning of this posting).
    B.2.1.
    The first thing that is different:
    If I want to install the printer, and after it extracted files, checked the system and prepares it for installation, I receive the message:
    C:\users\<username of my daughter.\AppData\Local\Temp\7zS0FF0\Setup\de..
    This is different than the message (Program: C\Users\IRN\AppData\Local\Temp\7zS28Db\Setup.exe) I experienced with my own laptop (the d081ed).
    Note the difference between:
    ..Temp\7zS0FF0\Setup\de.. (<-- that is the message I get on the laptop of my daughter)
    and
    ..Temp\7zS28Db\Setup.exe (<-- that is the message I had on my own laptop)
    B.2.2.
    The second thing that is different:
    At some point I installed, after upgrading to Windows 8.1, the SP 40669 package. I can't remember having done that on my own laptop.
    B.2.3.
    On my own laptop I installed the C+++ packages for 2005, 2008 and 2010.
    On the one for my daughter I only installed the C+++ package for 2010 (KB2562063, version 10.0.30319 and 10.0.40219, but I don't think that is the problem really, correct my if I'm wrong).
    B.2.4.
    Before I upgraded to Windows 8.1. I got an error message at rebooting the system (in Dutch
    explorer.exe - Toepassingsfout
    De instructie op 0x5d2c3e01 verwijst naar geheugen op 0x00000000. Een lees- of schrijfbewerking op het geheugen is mislukt: read.
    Klik op OK als u het programma wilt beëindigen.
    And after that the message doesn't wait for your click on OK. It just flashes away very quickly. Since I got that message a couple of times, I did manage to capture it with the camcorder on my mobile phone. In that way I was able to describe you the message as exactly as here above. 
    I sometimes get the message again, and then not. So it's not consistent. It seems to me the problem there is with explorer.exe and not with the printerproblem, but I'm not sure. Couple of days later, there were new updates for Windows 8.1, which I installed, and the error-message didn't show up again the last few days.
    Last request.
    I would really appreciate some help with this. The reason I like the printer installed is because of the HP Solution Center. I'm sure my daughter would use it for scanning documents needed for her study and printing activities.
    I installed the basic printer for the time being, but only as I temporarily work-around, so she can - at least - print all of her study materials. Scanning, on the other hand, is some differtent then, but that is a known problem with the basic printer driver.
    I truly don't understand this problem. We both have an HP laptop, we both have the same operating system now (Windows 8.1) and stil .. on my laptop I managed to install the printer, and on hers not.
    Please help me.
    (p.s. I do have a HP support Pack for both laptops, and if one thinks that this problem is too complex and would redirect me to HP support ... no offense taken, from my side. But, I really would like to try to solve problem myself at first and would really appreciate your help with it. )

    Hello RNRMusicMan,
    Glad you're willing to help me out. So Sorry I couldn't send a message earlier. I had a few appointments the last few days and afterwards I had to little time to spend enought time to try to solve te problem.
    But o.k, let's continue.
    I've followed the steps you mentioned as a second option. I'll describe what I've done.
    First I tried the Hp printer install wizzard
    No succes
    Same error occured  …\setup\de.. (at the second fase of the installation program of the printersoftware)
    Restarted the system
    I used the Scrubber
    L4
    Error: uninstaller didn't work. Clicked ok
    Restart
    At restart I got the same error about something with the memory. (In dutch; 'De instructie op 0x5d2c3e01 verwijst naar geheugen op 0x00000000. Een lees- of schrijfbewerking op het geheugen is mislukt: read.' and please note that 0x5d2c3e01 was this with different numbers etc, but I guess that's just the adress in the memory where the program wants to read/write to)
    I continued with cleanboot
    Msconfig – services – hide all microsoft services – disable
    Startup – system configuration – open task manager
    On startup tab in task manager – I disabled each startup item
    Closed taskmanager
    Startup – system configuration – checked ok box
    Restarted
    Tried to install again with the OI_AIO_J6400_Full_Win_WW_140_4.exe software I downloaded from the hp website
    At ‘systeem wordt voorbereid op installatie’ I got the same error again: ‘C:\Users\Simone\AppData\Local-\Temp\7zS46SD\Setup\de..
    After this I followed the steps as described to start up again normally (that is: msconfig, enabling the services again, etc.) and that step went o.k and as aspected, so no problems there.
    After that I restarted the system again. I didn't get the message about the problem with the memory again. So I guess that must have been due to the error in the scrubber program.
    I really don't understand this. Me and my daughter both have a hp, both the same OS (windows 8.1), and on my laptop I got the printer running and hers not. What can it be? I'm guessing that there most have been something that went wrong then with either the installation with one of the windows 8 or windows 8.a upgrades, or with the upgrading from windows 8 to windows 8.1. Or is that to far fetched? But that just a question I have, trying to understand what went wrong or what could be the cause of this.
    So what now? It didn't work.
    Update (29-9-14):
    Since all the suggested solutions didn't work out I decided to start all over.
    One of the reasons I decided to do so, was the following:
    I've got an external DVD writer (Samsung, Slim External, model SE-8084D/TSWS) that I needed to use for installation of the HP J6410 CD that came with the printer, since the laptop of my daughter doesn't have a built-in DVD player.
    Now here the strange thing! When I use it on my own laptop, it starts the software on the the HP J6410 DVD flawlessly. No problems there! But, when I connect it to the laptop of my daughter, it sees the CD and I can explore the files on it. But, when I try to start HPSetup.exe on it it does ... nothing!! Now that's very stange! Me and my daughter both have a HP laptop, with the same OS. Still it functions normally on my laptop, and on for the one for my daughter it does nothing. Same with the software that you can download from the HP site. It runs on my computer, but gives errors on the one for my daugther. So I guess that was a good reason to decide to start all over again from scratch
    This is what I've done so far.
    - I made a (full) factory recovery.
    - I've installed all the updates for Windows 8.
    - After that I upgraded to Windows 8.1 again and installed all of the updates for it as well.
    - I removed the antivirus program (Norton Antivirus)
    - After that is done I tried to install the printer again.
    No success!
    But.. I'm convinced I've found out where the problem might lay.
    My daughter had c++ 2012 redistributable installed (version 11.0.50727).
    My other laptop doesn't. An even older hp laptop (with Windows Vista on it) does neither. On those laptops the printer software ran.
    On the new laptop for my daughter it doesn't.
    So.. I'm suspecting the problem does not lay in the printer software but in the c++ 2012 redistributable package.
    Another difference is that my own laptop had an Intel processor. The one for my daughter has an AMD.
    So I am convinced the problem must lay in the C++ 2012 package (maybe combined with the AMD processor? I don't know) and NOT the printer software.
    Anyone got any ideas on what to do next?
    If so, I thankfully await your answer.

  • HP OfficeJet J6410 won't install under Windows 8

    Hello to you all,
    Two days ago, I bought a new notebook for my daughter. She needs it for her study. It's the HP Pavilion TouchSmart 11-e000ed.
    Again, just like the situation I wrote about before in this topic over here (link: http://h30434.www3.hp.com/t5/Printer-All-in-One-Install-Setup/Officet-J6410-won-t-install-under-Wind... the OfficeJet Printer J6410 won't install under Windows 8.
    Now this is what I've done before the problem occured:
    - I made a username and password for her,
    - I activated Windows 8,
    - I made a recovery-point,
    - I took my external DVD writer, installed Office 2007 Home and Student for her (o.k, I know it's old, but it's very o.k - and legal copy -. for her study, used it myself as well and still do, and never any complaints about that one), and activated it,
    After that and restarting the notebook;
    - the notebeek activated USB 2.0 (it does that automatically at first use),
    - installed XPS2OneNote (to use for Office OneNote 2007),
    - installed SaveAsPDF&XPS,
    - removed Norton Internet Security (I never use it, I use something else for that purpose, but was - and still am - planning to install that on a later moment),
    - I made sure the notebook can access the server we have here at home, and made a share for her.
    After that I used the OJ_AIO_J6400_Full_Win_WW_140_408.exe file (Dutch, but I'll translate the text in English).
    From this point on I will describe as precisely as possible what happened
    - - the program extracts some files, no problems there,
    - - when the first screen appears, I pressed 'Install',
    - -  a bar appears, and after that another pop-up that says tha you must allow all HP processes. I pressed 'Next',
    - - system is controlled, and after that one must agree with the licence agreements. I checked the box, and pressed 'Next',
    - - the system is prepared for installation and - yes! - there it comes... an error message.
    The error message says:
    C:\users\<username of my daughter.\AppData\Local\Temp\7zS0FF0\Setup\de..
    Please not that this is a different message than the one I got before, as I described in my posting before, (link again: http://h30434.www3.hp.com/t5/Printer-All-in-One-Install-Setup/Officet-J6410-won-t-install-under-Wind...
    Nonehteless, I assumed that, as before, the problem was with the C+++, just like before. That is why I made the following steps:
    - I used the OJ_AIO_J6400_140_408_Scrubber program, run L4 4 times.
    - I looked for the KB2565063 update, but it isn't there anymore. So, instead, I ran all updates there are until the system said that there are no updates to be found,
    - After that I took the old installation disk that came with the OfficeJet J6410 printer, and (tried to) ran hpsetup.exe. It doesn't do a thing! Literally!!
    - after that I tried to run the the OJ_AIO_J6400_Full_Win_WW_140_408.exe file again. No success. I got the same error as before (see above, the ..\7zS0FF0\Setup\de.. thing again.
    So, what to do now?
    Anyone got some helpfull tips for me? I would really appreciate your feedback / help.
    Thank you in advance,

    Hi again,
    No, it didn't work. And, the solution you offered neither.
    This is what I've done.
    After downloading the  OJ_AIO_J6400_Full_Win_WW_140_408-4.exe file, I tried to install it.
    It failed. I got an error message similar to the one before. 
    'C:\users\<username of my daughter.\AppData\Local\Temp\7zS57DB\Setup\de.'
    I tried to ran the scrubber again, and the CCCUninstaller and tried again.
    Same error message occured.
    After that I tried to look for the KB2565063 file again. Found it this time and ran the vcredist_x64 file.
    I rebooted the system, tried to run the OJ_AIO_J6400_Full_Win_WW_140_408-4.exe file again.
    Same error message ocuured.
    So, after that, I followed the steps you proposed.
    Step 2 - searching for hpoins*.dat --> no results found.
    Step 3 - searching for hpwins*.dat --> no results found.
    Step 4 - I ran the Run Dialog box and typed MSIEXEC /REGSERVER (with AND without the extra space between ('MSIEXEC /REGSERVER') in the Dialog Box and pressed Ok. 
    Got an error message in Dutch:
    'Kan het bestand MSIEXEC /REGSERVER niet vinden. Controleer of u de naam juist hebt ingevoerd en probeer het daarna opnieuw.
    Translation: 'Can't find the file MSIEXEC /REGSERVER. Check if you typed the name correctly and try again'.
    Step 5 - I ran the Run Dialog box and typed MSIEXEC /UNREGISTER (with AND without the extra space between ('MSIEXEC /UNREGISTER') in the Dialog Box and pressed Ok. 
    Got an error message in Dutch:
    'Kan het bestand MSIEXEC /UNREGISTER niet vinden. Controleer of u de naam juist hebt ingevoerd en probeer het daarna opnieuw.
    Translation: 'Can't find the file MSIEXEC /UNREGISTER. Check if you typed the name correctly and try again'.
    So... conclusion: NOTHING worked.
    My ideas for a possible solution didn't work, and neither did your ideas for a possible solution.
    Reason why I want it to work is because of the HP Solution Center. If I can not install it with the software from the original installation disk, or the software that one can download from the HP site (the OJ_AIO_J6400_Full_Win_WW_140_408-4.exe file that is), than I have no HP Solution Center. That would be a pity, for I am sure my daughter would really love the use and ease of the program, and would really use it a lot for her study.
    What's next? What else can I try to solve the problem?
    Got any more idea's or helpful hints?
    Thanks in advance,

  • Indesign CS6 won't install on Windows 7 64bit via GPO

    Good afternoon,
    I created a installation of Indesign CS6 with application manager enterprise 3 to deploy to computers via the active directory.
    It installs correctly without issue to Windows XP x86 machines however won't install to Windows 7 x64 machines.
    When the computers starts it trys to install but fails and proceeds to the login screen.  The following information is left in the Windows event log.
    Has anyone else had this problem and more importantly know how to solve it?
    Log Name:      System
    Source:        Microsoft-Windows-GroupPolicy
    Date:          13/08/2013 9:44:23 AM
    Event ID:      1085
    Task Category: None
    Level:         Warning
    Keywords:     
    User:          SYSTEM
    Computer:      WIN7TEST
    Description:
    Windows failed to apply the Software Installation settings. Software Installation settings might have its own log file. Please click on the "More information" link.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-GroupPolicy" Guid="{AEA1B4FA-97D1-45F2-A64C-4D69FFFD92C9}" />
        <EventID>1085</EventID>
        <Version>0</Version>
        <Level>3</Level>
        <Task>0</Task>
        <Opcode>1</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2013-08-12T23:44:23.375831000Z" />
        <EventRecordID>9482</EventRecordID>
        <Correlation ActivityID="{B74A3709-81F6-4B73-AA1F-9B610874B7EA}" />
        <Execution ProcessID="384" ThreadID="1324" />
        <Channel>System</Channel>
        <Computer>WIN7TEST</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData>
        <Data Name="SupportInfo1">1</Data>
        <Data Name="SupportInfo2">3961</Data>
        <Data Name="ProcessingMode">1</Data>
        <Data Name="ProcessingTimeInMilliseconds">41590</Data>
        <Data Name="ErrorCode">1603</Data>
        <Data Name="ErrorDescription">Fatal error during installation. </Data>
        <Data Name="DCName">\\AYR.burdekin.qld.gov.au</Data>
        <Data Name="ExtensionName">Software Installation</Data>
        <Data Name="ExtensionId">{c6dc5466-785a-11d2-84d0-00c04fb169f7}</Data>
      </EventData>
    </Event>
    Log Name:      System
    Source:        Application Management Group Policy
    Date:          13/08/2013 9:44:23 AM
    Event ID:      108
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          SYSTEM
    Computer:      WIN7TEST
    Description:
    Failed to apply changes to software installation settings.  Software changes could not be applied.  A previous log entry with details should exist.  The error was : %%1603
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Management Group Policy" />
        <EventID Qualifiers="0">108</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-08-12T23:44:23.000000000Z" />
        <EventRecordID>9481</EventRecordID>
        <Channel>System</Channel>
        <Computer>WIN7TEST</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData>
        <Data>Software changes could not be applied.  A previous log entry with details should exist.</Data>
        <Data>1603</Data>
      </EventData>
    </Event>
    Log Name:      System
    Source:        Application Management Group Policy
    Date:          13/08/2013 9:44:23 AM
    Event ID:      102
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          SYSTEM
    Computer:      WIN7TEST
    Description:
    The install of application Adobe InDesign CS6 from policy Global-Application-Adobe InDesign failed.  The error was : %%1603
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Management Group Policy" />
        <EventID Qualifiers="0">102</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-08-12T23:44:23.000000000Z" />
        <EventRecordID>9479</EventRecordID>
        <Channel>System</Channel>
        <Computer>WIN7TEST</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData>
        <Data>Adobe InDesign CS6</Data>
        <Data>Global-Application-Adobe InDesign</Data>
        <Data>1603</Data>
      </EventData>
    </Event>

    Hi Abhijit,
    I am able to install InDesign CS6 manually on the machines from the CD/DVD however when trying to install it via GPO or running the msi using the msi exec commands it doesn't install and leaves the above errors in the event log.
    The installation was made using the same CD/DVD and the installation works on the Windows XP clients and software other than InDesign CS6 will install to the Win 7 64-bit machines via GPO.
    Cheers,

  • "Add-On Software" CD for LV6.1 won't install.

    Following NI Forums Knight Dan Knutson's advice to install a LV version earlier than 8.5 in order to convert 40 VIs written in LV5.1 to LV8.5.1, I attempted to install LabVIEW 6.1. There is a CD that won't install. It is the "Add-On Software" LV6.1 CD. The CD does not autoinstall when it's put in the CD drive. When I right-click the Autorun > Install icon, the installer returns, "Error. Installation failed." The CD has LabVIEW, and Measurement Studio folders, an autorun setup information file and and Eagle icon. There is no setup.exe on the installation CD main directory. Could anyone please suggest how to install the LabVIEW and Measurement Studio folders?
    I tried to go into the individual sub-folders of the "Add-On Software" CD, but when I reached LabVIEW\Enterprise\SPC\Install\disk1\ and click Setup.exe, I get "Setup Installation Error. Setup has detected that UnInstallShield is in use. Please close UnInstallShield and restart Setup. Error 432." Running MSCONFIG to remove isUninst.exe from the Startup folder fails because no IsUninst.exe application runs on startup, rebooting does not help, it's not an Administrator issue because my account already has Administrator privileges, and searching the Internet does not give useful clues.
    Could an expert please solve either of these two problems?
    Thanks,
    BenCh01

    Hello All,
    I may be confused on the topic of a Compact RIO integrated with LabVIEW version 5.1? Version 5.1 pre-dates the release of Compact RIO hardware. The Compact RIO platform uses neither NI-DAQmx, nor the Traditional NI-DAQ driver, it is built on a separate driver platform in NI-RIO. May I inquire as to why version 8.5.1 was selected for the upgrade process, and not the latest version in 2009 SP1? 
    As you may have experienced already, the process of upgrading across 10 releases of the LabVIEW development environment may present issues, as the environment has been significantly changed through the years. For additional information on the upgrade process please see the following information:
    How to Upgrade or Revert a VI to a Different Version of LabVIEW
    http://zone.ni.com/devzone/cda/tut/p/id/8387
    Upgrading to the Latest Version of LabVIEW
    http://zone.ni.com/devzone/cda/tut/p/id/7417
    More realistically, does this application contain highly customized code, or functions, that are not integrated into the newer platform? With regard to hardware integration, if you intend on working with the Compact RIO platform, you will be working to develop brand new code using the LabVIEW Real-Time (and possibly LabVIEW FPGA) Module, as any code written in LabVIEW 5.1 will not support the Compact RIO platform. With respect to any additional hardware that may have been used, you will need to verify the device support in either the NI-DAQmx or Traditional DAQ releases, this information can be found at http://www.ni.com/support. I believe time spent developing on a supported platform, for the new hardware set, may be more effective than looking to directly upgrade the 5.1 code.
    Please post any additional questions you may have. 
    Patrick Corcoran
    Application Engineering Specialist | Control
    National Instruments

Maybe you are looking for

  • Condition loop only one time

    taking input as digits giving output in words ex: 100 output hundread 1234 one thousand two hundread thirty four 0003 three like this we have output so please specify any logic thanks&regards SIva

  • Get this on launch: "...Secure network communication has not been cleaned up correctly". What is going on?

    Launch Firefox beta and get this dialog box: "The operation can not be completed because of an internal failure. A secure network communication has not been cleaned up correctly." Firefox then goes on to seemingly launch ok. Why am I getting this sec

  • QAC2 in mass processing

    Dear Experts, I know the transaction QAC2 for transfering inspection lot qty from plant to plat or storage location to storage location. When it is executed for an inspection lot and SL is changed or plant is changed a material document of mvt-323 is

  • Want to use existing Lightroom serial # on 2nd computer

    I have lightroom on Mac-computer1 wanting to use on Mac-computer2.  I have downloaded a trial version and tried to register online with existing serial# why is this happening??

  • Downloads MACOSX file and folder

    I have created a site for a client in Dreamweaver CS3 for Mac Leopard. The home page has a "click to download brochure" area. When dowloading to a windows machine three files appear: brochure pdf, _MACOSX folder and _MACOSX file. Is there a way to av