I'm looking to remotely disable then re-enable a NIC ... possible?

My organization is having quite a few issues now that we're finally rid of XP. We think we've narrowed it down to the default setting of Win 7 NIC cards Power Management, specifically the "Allow the computer to turn off this device to save power"
checkbox being enabled (checked). Example below:
We've had hundreds of complaints of disconnects and issues re-connecting when people leave their computer at lunchtime or an extended break, and on a few dozen of those specific people we have tried disabling this (manually) and they report the issue has
stopped for them. We'd like to test this on a few dozen more people, but they're at remote locations and we'd have to do it remotely. Making the actual change isn't a problem, it's a specific registry key located at HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002bE10318}\
- the problem is the NIC needs to be disabled and re-enabled after changing the key to make it stick, otherwise it seems to revert back to a default (which is that box checked on).
Does anyone know of a way to disable and then re-enable a NIC on a remote machine via PowerShell? We have full remote access to these machines, so we can copy scripts to them or invoke-command if need be.
Thanks in advance.
[email protected]

If running PowerShell V3, you can take advantage of disconnected remote sessions to continue running code even if the session has been disconnected (and in theory should work if the NIC drops).
Something like this should work:
#Create the session option; Drop is important so the command execution continues on after the disconnect
$Option = New-PSSessionOption -OutputBufferingMode Drop
$Session = New-PSSession -ComputerName 'client1' -SessionOption $Option
Invoke-Command -Session $Session -ScriptBlock {
#Registry code work goes here
$NetAdapter = Get-WMIObject Win32_NetworkAdapter -filter "Name='Intel(R) 82579LM Gigabit Network Connection'"
$NetAdapter.Disable()
$NetAdapter.Enable()
#This may not be needed since the connection will drop anyways
Disconnect-PSSession $Session
#Wait a bit and see if the system comes up as the commands should still be running remotely
Note: The clients need to be running V3 for this to work.
Boe Prox
Blog |
Twitter
PoshWSUS |
PoshPAIG | PoshChat |
PoshEventUI
PowerShell Deep Dives Book

Similar Messages

  • Since FF31 bookmarks toolbar doesn't always show on startup. Corrected per session by disable (then re-enable) via View- Toolbars- Bookmarks Toolbar

    The above problem only occurs occasionally on startup. Bookmarks Toolbar reappears after disable/re-enabling (as outlined in question) but its occasional absence is annoying.
    Thanks for all of the hard work you do at Mozilla, it's greatly appreciated!
    Regards,
    Cliff.Rigg
    :)

    You can check for problems caused by a corrupted localstore.rdf file.
    *http://kb.mozillazine.org/Corrupt_localstore.rdf
    The current Firefox releases store the toolbar customization in the browser.uiCustomization.state pref, so it is possible that there is a problem with the preferences.
    You can check for problems with preferences.
    Delete possible user.js and numbered prefs-##.js files and rename (or delete) the prefs.js file to reset all prefs to the default value including prefs set via user.js and prefs that are no longer supported in the current Firefox release.
    *http://kb.mozillazine.org/Preferences_not_saved
    *http://kb.mozillazine.org/Resetting_preferences
    You can use this button to go to the currently used Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
    Note that Windows hides some file extensions by default.
    Among them are .html and .ini and .js and .txt, so you may only see file name without file extension.
    You can see the real file type (file extension) in the properties of the file via the right-click context menu in Windows Explorer.

  • Disable ingegrity constraint, then re-enable w/deletion of violations?

    Suppose table2 has a foreign-key relationship with table1. Is there any way to disable that constraint on table2, delete a huge number of records from table1, then re-enable the constraint on table 2... telling Oracle to simply delete any records it finds in table2 that no longer satisfy the constraint?
    Or, alternatively, is there a way to cascade the deletes, but defer the cascaded deletion until all the records that are going to be deleted from the current table have, in fact, been deleted (or at least marked for deletion)?
    For the record, the real situation is nowhere near this trivial... we have a table with ~2 billion records that's partitioned by range on its primary key (from which we want to drop a partition containing ~300 million records) and has dozens of downstream tables with foreign key relationships leading back to it.
    The good news is that this isn't a database that has to be kept online and available at all times for continual transaction processing. The foreign-key relationships are mainly there for the sake of academic correctness and self-documentation, and the records being purged are ancient and haven't even been part of a table scan for months. So we're not the least bit worried about having a row in table27 spend two hours on "death row" between the time its deletion becomes inevitable (by virtue of deleting an upstream record with a foreign-key chain leading back to it) and the time it gets physically deleted. Metaphorically, we just need a fast way to slice a chunk off from table1 with a chainsaw, then efficiently eliminate the witnesses from the downstream tables with a meat cleaver. :-)

    OK, let's suppose table1 is the big table with billions of records, from which I'm going to drop the first partition and ~250 million records contained within it.
    table2 has a foreign key relationship: table2.foo_id = table1.id
    table3 has a foreign key relationship to table2: table3.bar = table2.bar
    both foreign key relationships are deferrable, initially deferred.
    Now, partition #1 gets dropped, taking ~250 million records with it. I'm going to guess that the implicit commit comes at the end of that drop, and that's the point when Oracle officially notices that table2 has a foreign key relationship with table1 and parses through it to cascade the deletion and remove the newly-orphaned rows in table2.
    The big question is, when does table2's constraint come into effect? If Oracle defers the next implicit commit attempt until it finishes purging orphaned records from table2, then proceeds to cascade the deletion and purge orphaned records from table3 before its next attempted implicit commit, that's great.
    HOWEVER, I can see a conflict. DROP is a DDL statement that implicitly commits, but what about any DELETEs that get cascaded from it as an outcome of the drop? Do they fall under the single umbrella of the original DROP, or does something like this happen:
    Partition #1 of table1 gets dropped. implicit commit attempted, but foreign key relationship between table2 and table1 formally noticed. Oracle deletes the first orphaned row from table2, then tries to autocommit it... and notices that table3 has a FK relationship with table2. So it scans through table3, deletes any rows that the deletion of the first row from table2 will orphan, and autocommits that deletion. It then continues looking through table2 for the next orphaned row, deletes it, attempts to autocommit, notices the FK constraint (again) between table3 and table2, scans through table3 (again) looking for rows that will be orphaned by the deletion of the second row from table2, deletes them, and autocommits. Then repeats, over and over again, scanning all of table3 from top to bottom each time it deletes a row from table2.
    I have to admit I'm a little fuzzy about what exactly Oracle is doing ACID-wise behind the scenes, mainly because nothing I normally do really requires moment-to-moment integrity. All I really use transactions for is to conveniently undo the mess and restore the database to its original state if a program crashes for some reason, and try to sidestep them (and their overhead) entirely when I'm doing something manually with Toad or SQL*Plus that's time-consuming and doesn't need to keep the database in any kind of usable state between the time it starts and ends. But in the case of deferred integrity checks, I can see how encouraging Oracle to autocommit could actually make performance worse, by prematurely firing otherwise-deferrable constraints.

  • ORA-04052: error occurred when looking up remote object

    Hi, Basically I want to setup Replication between two servers, 'ZEN2K7' & 'DB' (Advanced master-to-master replication, Sync).
    This is what i had done so far.(Both server having ver 10.1.0.2.0)
    At Server 'ZEN2K7'
    CONNECT system/manager@ZEN2K7
    CREATE USER repadmin IDENTIFIED BY repadmin;
    ALTER USER repadmin DEFAULT TABLESPACE POOL_DATA;
    ALTER USER repadmin TEMPORARY TABLESPACE TEMP;
    GRANT connect, resource TO repadmin;
    EXECUTE dbms_repcat_admin.grant_admin_any_schema('repadmin');
    GRANT comment any table TO repadmin;
    GRANT lock any table TO repadmin;
    EXECUTE dbms_defer_sys.register_propagator('repadmin');
    GRANT execute any procedure TO repadmin;
    CREATE PUBLIC DATABASE LINK DB USING 'DB';
    CONNECT repadmin/repadmin@ZEN2K7
    CREATE DATABASE LINK DB CONNECT TO repadmin IDENTIFIED BY repadmin;
    At Server 'DB'
    CONNECT system/manager@DB
    CREATE USER repadmin IDENTIFIED BY repadmin;
    ALTER USER repadmin DEFAULT TABLESPACE POOL_DATA;
    ALTER USER repadmin TEMPORARY TABLESPACE TEMP;
    GRANT connect, resource TO repadmin;
    EXECUTE dbms_repcat_admin.grant_admin_any_schema('repadmin');
    GRANT comment any table TO repadmin;
    GRANT lock any table TO repadmin;
    EXECUTE dbms_defer_sys.register_propagator('repadmin');
    GRANT execute any procedure TO repadmin;
    CREATE PUBLIC DATABASE LINK ZEN2K7 USING 'ZEN2K7';
    CONNECT repadmin/repadmin@DB
    CREATE DATABASE LINK ZEN2K7 CONNECT TO repadmin IDENTIFIED BY repadmin;
    After this, Create master replication group on ZEN2K7
    CONNECT repadmin/repadmin@ZEN2K7
    BEGIN
    DBMS_REPCAT.CREATE_MASTER_REPGROUP(
    gname => '"REPTEST"',
    qualifier => '',
    group_comment => '');
    END;
    Then at 'ZEN2K7', when i executing
    BEGIN
    DBMS_REPCAT.ADD_MASTER_DATABASE(
    gname => '"REPTEST"',
    master => 'DB',
    use_existing_objects => TRUE ,
    copy_rows => TRUE ,
    propagation_mode =>'SYNCHRONOUS');
    END;
    I got following error
    ORA-04052: error occurred when looking up remote object REPADMIN.SYS@DB
    ORA-00604: error occurred at recursive SQL level 2
    ORA-12154: TNS:could not resolve the connect identifier specified
    ORA-06512: at "SYS.DBMS_REPCAT_UTL", line 4262
    ORA-06512: at "SYS.DBMS_REPCAT_MAS", line 2156
    ORA-06512: at "SYS.DBMS_REPCAT", line 146
    ORA-06512: at line 2
    I had already execute the 'catrpc.sql' on both server.
    I had already check the connection at 'ZEN2K7' side, means I can connect to 'DB' within SQL* Plus at 'ZEN2K7' side.
    What else need to do???
    Thanks.
    Gurpreet S. Gill

    ORA-12154: TNS:could not resolve the connect identifier specified
    This means that you server is unable to resolve DB alias.
    Check you SQL*Net settings.
    On ZEN2K7 try tnsping db. If tnsping return error that add db alias to tnsnames.ora if you use tnsnames as one of resolving mechanism (check sqlnet.ora for NAMES.DIRECTORY_PATH)

  • ORA-04052: error occurred when looking up remote object REPADMIN.SYS@CEL2.W

    Hi,
    on 10gR2 , on WIN 2003 server :
    C:\>sqlplus repadmin/***@CEL2.WORLD
    SQL*Plus: Release 10.2.0.4.0 - Production on Tue Jun 22 09:54:18 2010
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing optionsAnd then :
    CONNECT repadmin/******@CEL1.WORLD
    BEGIN
       DBMS_REPCAT.ADD_MASTER_DATABASE (
          gname => 'REPG',
          master => 'CEL2.WORLD',
          use_existing_objects => TRUE,
          copy_rows => FALSE,
          propagation_mode => 'ASYNCHRONOUS');
    END;
    BEGIN
    ERROR at line 1:
    ORA-04052: error occurred when looking up remote object [email protected]
    ORA-00604: error occurred at recursive SQL level 2
    ORA-12545: Connect failed because target host or object does not exist
    ORA-06512: at "SYS.DBMS_REPCAT_UTL", line 4271
    ORA-06512: at "SYS.DBMS_REPCAT_MAS", line 2156
    ORA-06512: at "SYS.DBMS_REPCAT", line 146
    ORA-06512: at line 2Thank for help.

    Thank you. I think it is a problem with dB_LINK.
    SQL> select db_link from dba_db_links;
    DB_LINK
    CEL2.WORLD
    CEL2.WORLD
    SQL> select count(*) from [email protected];
    select count(*) from [email protected]
    ERROR at line 1:
    ORA-12505: TNS:listener does not currently know of SID given in connect
    descriptor
    SQL> select count(*) from SCOTT.EMP@CEL2;
    select count(*) from SCOTT.EMP@CEL2
    ERROR at line 1:
    ORA-02019: connection description for remote database not foundI can not see how to correct it ?
    Thanks.

  • Error: key "E6B456CAF15447D5" could not be looked up remotely

    Hello,
    How do I deal with this?
    downloading required keys...
    error: key "E6B456CAF15447D5" could not be looked up remotely
    error: required key missing from keyring
    error: failed to commit transaction (unexpected error)
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    multilib is up to date
    :: Starting full system upgrade...
    resolving dependencies...
    looking for inter-conflicts...
    Packages (61): akonadi-1.10.2-1  alsa-plugins-1.0.27-2  alsa-utils-1.0.27.2-1  avidemux-cli-2.5.6-7  avidemux-qt-2.5.6-7
                   bison-3.0-1  chromium-28.0.1500.95-1  cracklib-2.9.0-1  dhcpcd-6.0.4-1  dosfstools-3.0.22-1  ffmpeg-1:2.0-2
                   ffmpeg-compat-1:0.10.8-4  fuse-2.9.3-1  gcc-4.8.1-2  gcc-libs-4.8.1-2  gegl-0.2.0-9  giflib-5.0.4-2
                   gnome-icon-theme-3.8.3-1  gnutls-3.2.3-1  gstreamer-1.0.9-1  gtkhtml4-4.6.6-1  hplip-3.13.7-1  ilmbase-2.0.1-1
                   imlib2-1.4.5-5  intel-dri-9.1.6-1  iso-codes-3.44-1  jdk7-openjdk-7.u40_2.4.1-2  jre7-openjdk-7.u40_2.4.1-2
                   jre7-openjdk-headless-7.u40_2.4.1-2  kdelibs-4.10.5-2  kdemultimedia-ffmpegthumbs-4.10.5-2  lib32-libgcrypt-1.5.3-1
                   lib32-libx11-1.6.1-1  lib32-mesa-9.1.6-1  lib32-mesa-libgl-9.1.6-1  libgcrypt-1.5.3-1  libwebp-0.3.1-3
                   libx11-1.6.1-1  linux-3.10.3-1  linux-firmware-20130725-1  linux-headers-3.10.3-1  media-player-info-19-1
                   mesa-9.1.6-1  mesa-libgl-9.1.6-1  mkinitcpio-0.15.0-1  mkinitcpio-busybox-1.21.1-2  mpd-0.17.4-5
                   nepomuk-core-4.10.5-2  nspr-4.10-2  nss-3.15.1-1  openexr-2.0.1-1  syslinux-4.07-1  texmaker-4.0.3-1
                   virtuoso-base-6.1.7-1  vlc-2.0.8.a-1  wireshark-cli-1.10.1-1  wireshark-gtk-1.10.1-1  x264-20130702-2
                   xdg-utils-1.1.0.git20130520-1  xf86-video-intel-2.21.13-1  xorg-iceauth-1.0.6-1
    Total Installed Size:   904.61 MiB
    Net Upgrade Size:       10.44 MiB
    :: Proceed with installation? [Y/n] y

    No go 1:
    [root@lukasz-dell7720 lukasz]# pacman -S archlinux-keyring
    warning: archlinux-keyring-20130525-2 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Packages (1): archlinux-keyring-20130525-2
    Total Installed Size:   0.49 MiB
    Net Upgrade Size:       0.00 MiB
    :: Proceed with installation? [Y/n] y
    (1/1) checking keys in keyring                                                  [##############################################] 100%
    (1/1) checking package integrity                                                [##############################################] 100%
    (1/1) loading package files                                                     [##############################################] 100%
    (1/1) checking for file conflicts                                               [##############################################] 100%
    (1/1) checking available disk space                                             [##############################################] 100%
    (1/1) reinstalling archlinux-keyring                                            [##############################################] 100%
    ==> Appending keys from archlinux.gpg...
    ==> Locally signing trusted keys in keyring...
      -> Locally signing key 0E8B644079F599DFC1DDC3973348882F6AC6A4C2...
      -> Locally signing key 684148BB25B49E986A4944C55184252D824B18E8...
      -> Locally signing key 44D4A033AC140143927397D47EFD567D4C7EA887...
      -> Locally signing key 27FFC4769E19F096D41D9265A04F9397CDFD6BB0...
      -> Locally signing key AB19265E5D7D20687D303246BA1DFB64FFF979E7...
    ==> Importing owner trust values...
    ==> Disabling revoked keys in keyring...
      -> Disabling key BC1FBE4D2826A0B51E47ED62E2539214C6C11350...
    ==> Updating trust database...
    gpg: next trustdb check due at 2014-01-22
    [root@lukasz-dell7720 lukasz]# pacman -Syu
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    multilib is up to date
    :: Starting full system upgrade...
    resolving dependencies...
    looking for inter-conflicts...
    Packages (61): akonadi-1.10.2-1  alsa-plugins-1.0.27-2  alsa-utils-1.0.27.2-1  avidemux-cli-2.5.6-7  avidemux-qt-2.5.6-7
                   bison-3.0-1  chromium-28.0.1500.95-1  cracklib-2.9.0-1  dhcpcd-6.0.4-1  dosfstools-3.0.22-1  ffmpeg-1:2.0-2
                   ffmpeg-compat-1:0.10.8-4  fuse-2.9.3-1  gcc-4.8.1-2  gcc-libs-4.8.1-2  gegl-0.2.0-9  giflib-5.0.4-2
                   gnome-icon-theme-3.8.3-1  gnutls-3.2.3-1  gstreamer-1.0.9-1  gtkhtml4-4.6.6-1  hplip-3.13.7-1  ilmbase-2.0.1-1
                   imlib2-1.4.5-5  intel-dri-9.1.6-1  iso-codes-3.44-1  jdk7-openjdk-7.u40_2.4.1-2  jre7-openjdk-7.u40_2.4.1-2
                   jre7-openjdk-headless-7.u40_2.4.1-2  kdelibs-4.10.5-2  kdemultimedia-ffmpegthumbs-4.10.5-2  lib32-libgcrypt-1.5.3-1
                   lib32-libx11-1.6.1-1  lib32-mesa-9.1.6-1  lib32-mesa-libgl-9.1.6-1  libgcrypt-1.5.3-1  libwebp-0.3.1-3
                   libx11-1.6.1-1  linux-3.10.3-1  linux-firmware-20130725-1  linux-headers-3.10.3-1  media-player-info-19-1
                   mesa-9.1.6-1  mesa-libgl-9.1.6-1  mkinitcpio-0.15.0-1  mkinitcpio-busybox-1.21.1-2  mpd-0.17.4-5
                   nepomuk-core-4.10.5-2  nspr-4.10-2  nss-3.15.1-1  openexr-2.0.1-1  syslinux-4.07-1  texmaker-4.0.3-1
                   virtuoso-base-6.1.7-1  vlc-2.0.8.a-1  wireshark-cli-1.10.1-1  wireshark-gtk-1.10.1-1  x264-20130702-2
                   xdg-utils-1.1.0.git20130520-1  xf86-video-intel-2.21.13-1  xorg-iceauth-1.0.6-1
    Total Installed Size:   904.61 MiB
    Net Upgrade Size:       10.44 MiB
    :: Proceed with installation? [Y/n] y
    (61/61) checking keys in keyring                                                [##############################################] 100%
    downloading required keys...
    error: key "E6B456CAF15447D5" could not be looked up remotely
    error: required key missing from keyring
    error: failed to commit transaction (unexpected error)
    Errors occurred, no packages were upgraded.
    [root@lukasz-dell7720 lukasz]#
    No go 2:
    [root@lukasz-dell7720 lukasz]# pacman-key --refresh-keys
    gpg: refreshing 70 keys from hkp://pool.sks-keyservers.net
    gpg: requesting key 8164A555 from hkp server pool.sks-keyservers.net
    gpg: requesting key C2E5C0D2 from hkp server pool.sks-keyservers.net
    gpg: keyserver timed out
    gpg: keyserver refresh failed: Keyserver error
    ==> ERROR: A specified local key could not be updated from a keyserver.
    No go 3:
    [root@lukasz-dell7720 lukasz]# pacman-key -r E6B456CAF15447D5
    gpg: requesting key F15447D5 from hkp server pool.sks-keyservers.net
    gpg: keyserver timed out
    gpg: keyserver receive failed: Keyserver error
    ==> ERROR: Remote key not fetched correctly from keyserver.
    No go 4:
    I  copied contend of pacman.d/gnpg but with no luck..
    Last edited by str0gg (2013-08-03 19:50:37)

  • [SOLVED] error: key "A6234074498E9CEE" could not be looked up remotely

    Ran into issue today trying to update my system, I searched forums for this specific problem to no avail.
    sudo pacman -Syu
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    multilib is up to date
    :: Starting full system upgrade...
    resolving dependencies...
    looking for conflicting packages...
    Packages (20) cmake-3.1.2-1 gparted-0.21.0-2 kdebase-dolphin-14.12.2-1
    kdebase-lib-14.12.2-1 kdebase-runtime-14.12.2-2
    kdegraphics-mobipocket-14.12.2-1 kdelibs-4.14.5-1
    kdemultimedia-ffmpegthumbs-14.12.2-1 kdepimlibs-4.14.5-1
    kdeutils-ark-14.12.2-1 libkcddb-14.12.2-1 linux-3.18.6-1
    linux-headers-3.18.6-1 livestreamer-1.11.1-2 nvidia-346.35-6
    oxygen-icons-14.12.2-1 packagekit-1.0.4-3 parted-3.2-2
    python2-pillow-2.7.0-1 udisks2-2.1.4-1
    Total Installed Size: 291.11 MiB
    Net Upgrade Size: -0.43 MiB
    :: Proceed with installation? [Y/n] y
    (20/20) checking keys in keyring [----------------------] 100%
    downloading required keys...
    error: key "A6234074498E9CEE" could not be looked up remotely
    error: required key missing from keyring
    error: failed to commit transaction (unexpected error)
    Errors occurred, no packages were upgraded.
    Suggestions?
    Last edited by pdq (2015-02-08 23:20:37)

    No luck with that.
    sudo pacman -S archlinux-keyring && sudo pacman -Syu
    warning: archlinux-keyring-20141218-1 is up to date -- reinstalling
    resolving dependencies...
    looking for conflicting packages...
    Packages (1) archlinux-keyring-20141218-1
    Total Installed Size: 0.62 MiB
    Net Upgrade Size: 0.00 MiB
    :: Proceed with installation? [Y/n] y
    (1/1) checking keys in keyring [----------------------] 100%
    (1/1) checking package integrity [----------------------] 100%
    (1/1) loading package files [----------------------] 100%
    (1/1) checking for file conflicts [----------------------] 100%
    (1/1) checking available disk space [----------------------] 100%
    (1/1) reinstalling archlinux-keyring [----------------------] 100%
    ==> Appending keys from archlinux.gpg...
    ==> Locally signing trusted keys in keyring...
    -> Locally signing key 0E8B644079F599DFC1DDC3973348882F6AC6A4C2...
    -> Locally signing key 684148BB25B49E986A4944C55184252D824B18E8...
    -> Locally signing key 44D4A033AC140143927397D47EFD567D4C7EA887...
    -> Locally signing key 27FFC4769E19F096D41D9265A04F9397CDFD6BB0...
    -> Locally signing key AB19265E5D7D20687D303246BA1DFB64FFF979E7...
    ==> Importing owner trust values...
    ==> Disabling revoked keys in keyring...
    -> Disabling key F5A361A3A13554B85E57DDDAAF7EF7873CFD4BB6...
    -> Disabling key 7FA647CD89891DEDC060287BB9113D1ED21E1A55...
    -> Disabling key D4DE5ABDE2A7287644EAC7E36D1A9E70E19DAA50...
    -> Disabling key BC1FBE4D2826A0B51E47ED62E2539214C6C11350...
    -> Disabling key 9515D8A8EAB88E49BB65EDBCE6B456CAF15447D5...
    -> Disabling key 4A8B17E20B88ACA61860009B5CED81B7C2E5C0D2...
    -> Disabling key 63F395DE2D6398BBE458F281F2DBB4931985A992...
    -> Disabling key 0B20CA1931F5DA3A70D0F8D2EA6836E1AB441196...
    -> Disabling key 8F76BEEA0289F9E1D3E229C05F946DED983D4366...
    -> Disabling key 66BD74A036D522F51DD70A3C7F2A16726521E06D...
    -> Disabling key 81D7F8241DB38BC759C80FCE3A726C6170E80477...
    -> Disabling key E7210A59715F6940CF9A4E36A001876699AD6E84...
    ==> Updating trust database...
    gpg: next trustdb check due at 2016-01-22
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    multilib is up to date
    :: Starting full system upgrade...
    resolving dependencies...
    looking for conflicting packages...
    Packages (20) cmake-3.1.2-1 gparted-0.21.0-2 kdebase-dolphin-14.12.2-1
    kdebase-lib-14.12.2-1 kdebase-runtime-14.12.2-2
    kdegraphics-mobipocket-14.12.2-1 kdelibs-4.14.5-1
    kdemultimedia-ffmpegthumbs-14.12.2-1 kdepimlibs-4.14.5-1
    kdeutils-ark-14.12.2-1 libkcddb-14.12.2-1 linux-3.18.6-1
    linux-headers-3.18.6-1 livestreamer-1.11.1-2 nvidia-346.35-6
    oxygen-icons-14.12.2-1 packagekit-1.0.4-3 parted-3.2-2
    python2-pillow-2.7.0-1 udisks2-2.1.4-1
    Total Installed Size: 291.11 MiB
    Net Upgrade Size: -0.43 MiB
    :: Proceed with installation? [Y/n] y
    (20/20) checking keys in keyring [----------------------] 100%
    downloading required keys...
    error: key "A6234074498E9CEE" could not be looked up remotely
    error: required key missing from keyring
    error: failed to commit transaction (unexpected error)
    Errors occurred, no packages were upgraded.

  • Adobe creative cloud has stopped working, all my individual programmes from adobe open and work fine, but when I try to open adobe cloud it starts to open then says adobe cloud has stopped working, looking for a solution then shuts down, I can not open it

    Adobe creative cloud has stopped working, all my individual programmes from adobe open and work fine, but when I try to open adobe cloud it starts to open then says adobe cloud has stopped working, looking for a solution then shuts down, I can not open it at all.

    Without proper system information and the application logs nobody can tell you much.
    Troubleshoot Creative Cloud download and install issues
    Mylenium

  • PL/SQL: ORA-04052: error occurred when looking up remote object.

    Hi All,
    I'm getting the following error message while executing a PL/SQL Block.
    PL/SQL: ORA-04052: error occurred when looking up remote object UPLDUSER.filestatushistory@FTS
    ORA-00604: error occurred at recursive SQL level 1
    ORA-03106: fatal two-task communication protocol error
    ORA-02063: preceding line from FTSStatement
    declare
    v_coun number;
    begin
    select count(*) into v_coun
    from updluser.filestatushistory@fts;
    end;Back ground of the situation as follows,
    My DataBase version 10.2.0.3 DB Name :DB1
    Table Owner : UPLDUSER
    Table Name : FILESTATUSHISTORY
    I have a report user on the same database and I have grant all on the above table to report user
    Report User : RPT_FTS
    SQL> GRANT ALL ON FILESTATUSHISTORY_V TO RPT_FTS;Now Please find the below database details where I'm getting subjected error.
    Database version : 9.2.0.8
    DB Name : DB2
    User Name : RPT_REPORTS
    I Have create a dblink from RPT_REPORTS to RPT_FTS on DB1 and the dblink works fine. But getting the above error while running it.
    but When I do the same other 10.2.0.3 db , the above PL/SQL block works fine without any problem.
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Now the strange about this is that I have Created a new table on DB1 db like below;
    SQL> CREATE TABLE UPLDUSER.ABC AS SELECT * FROM FILESTATUSHISTORY;and retry my code on DB2 (9.2.0.8) after changing the table to ABC and it worked. Now I don't know whats wrong with a original table(FILESTATUSHISTORY).
    To over come the problem and a work-a-round method I create a view on the DB1 (RPT_FTS) like the below
    SQL> CREATE VIEW FILESTATUSHISTORY AS SELECT * FROM UPLDUSER.FILESTATUSHISTORY;and was able to run the PL/SQL block Remotely.
    Just wants To know what whould have been the cause for this .
    Cheers
    Kanchana

    Hi Kanchana,
    Perhaps following link of google search has answer to your query
    ORA-04052. The search result contains some useful articles whose URLs I shan't post in the forums.
    HTH!
    *009*

  • In the tracing drop down menu, how come the custom is greyed out and can't be selected? It looks like its disabled!!

    in the tracing drop down menu, how come the custom is greyed out and can't be selected? It looks like its disabled!!

    cc2014,
    Have you selected an image?
    Unless a good explanation appears, you may start onthe list below.
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • ORA-04052: error occurred when looking up remote obj in mapping execution

    Hi,
    While executing an OWB mapping, I am getting the following error:
    ============
    Starting Execution UII_D_MAP_SPC_INSTALLATION_SIT
    Starting Task UII_D_MAP_SPC_INSTALLATION_SIT
    ORA-04052: error occurred when looking up remote object [email protected]
    ORA-00604: error occurred at recursive SQL level 1
    ORA-02019: connection description for remote database not found
    ORA-02063: preceding 3 lines from BIP2S@BIPDRACONN
    ORA-06512: at "UII_ODS_OWNER.UII_D_MAP_SPC_INSTALLATION_SIT", line 73
    ORA-06512: at "UII_ODS_OWNER.UII_D_MAP_SPC_INSTALLATION_SIT", line 1672
    ORA-06512: at "UII_ODS_OWNER.UII_D_MAP_SPC_INSTALLATION_SIT", line 2353
    ORA-06512: at "UII_ODS_OWNER.UII_D_MAP_SPC_INSTALLATION_SIT", line 6838
    ORA-06512: at line 1
    Completing Task UII_D_MAP_SPC_INSTALLATION_SIT
    Completing Execution UII_D_MAP_SPC_INSTALLATION_SIT
    ============
    Actually, here UII_ODS_OWNER itself is the target schema and <<UIIVS.DEVENV1.BT.CO.UK>> is the database in which this schema exists. And the mapping "UII_D_MAP_SPC_INSTALLATION_SIT" is being executed in the same target schema UII_ODS_OWNER.
    I am not sure why this above error is coming because such a dblink 'UIIVS.DEVENV1.BT.CO.UK' does not exist in the OWB generated package code. And the 2nd dblink 'BIP2S@BIPDRACONN' does not exist in the code, intead it exists as "BIP2S.DEVENV1.BT.CO.UK@BIPDRACONN" in the package code which is correct (as per OWB configuration & database).
    Same error also comes when I try to execute the same mapping from the OWB DEPLOYMENT MANAGER.
    Thanks & Regards,
    lenin

    Good morning Lenin,
    Have you checked the implementation of the connectors and are your locations well registered?
    Has a similar setup ever worked well?
    Can you access the source table using SQL (e.g. with SQL*Plus or TOAD)?
    Regards, Patrick

  • Itunes stops working when i connect my ipad windows error message comes up looking for solution but then closes itunes.

    Can anyone help my itunes stops working when i connect my ipad to my computer a windows error message comes up looking for solution but then closes itunes.

    Hi tokley13,
    To troubleshoot this issue where iTunes is quitting unexpectedly, please follow the steps in the article below.
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues - Apple Support
    Thanks for using the Apple Support Communities!
    Cheers,
    Alex H.

  • Error looking up remote object

    I have created an application that needs to reference several synonyms that exist in another schema on another server.
    When I compile my package in SQL Developer, I run into the error message:
    ORA-04045: errors during recompilation/revalidation of GILLNET_TAG.GILLNET_TAG
    ORA-04052: error occurred when looking up remote object PERMIT.VPS_FISHERY_NER@DER1_PERMIT
    ORA-00604: error occurred at recursive SQL level 2
    Note that the error refers to only 1 of the 4 synonyms -- VPS_FISHERY_NER
    The others seem fine.
    I created this synonym like this:
    CREATE PUBLIC SYNONYM vps_fishery_ner FOR permit.vps_fishery_ner@der1_permit;
    Note that this is a synonym that references a synonym, as are the other 3.
    Any ideas as to why this error is happening?
    The DBMS is 10g.
    Thanks.

    I have already posted the error that I see in SQL Developer -- it occurs when I simply compile the package.
    Far from being impossible, it is actually happening.
    I ran the Select statement that references the synonym in SQL Plus, just as you asked me to. There were no errors. I saw rows from a table in another schema on another server. I don't want to show you the result set since the data is confidential.
    There's got to be a reason that we're overlooking.
    Edited by: Prohan on Mar 10, 2009 1:58 PM

  • Broken iPhone, is there any way to remotely disable imessages

    I broke my iPhone so while it's off getting fixed for a couple of days, I want to be able to receive text messages on my replacement phone. Is there any way I can remotely disable iMessages so I can get text messages on my non-Apple replacement phone?

    Follow the steps mentioned in this article:
    Deregister and Turn Off iMessage - Apple Support

  • Simple Single-Source Replication(error occurred when looking up remote obj)

    Dears
    I am following the "Simple Single-Source Replication Example"
    (http://download.oracle.com/docs/cd/B19306_01/server.102/b14228/repsimpdemo.htm#g1033597)
    In Configure Capture, Propagation, and Apply for Changes to One Table; when I Set the Instantiation SCN for the hr.jobs Table at str2.net by following procedure
    SQL> DECLARE
    2 iscn NUMBER; -- Variable to hold instantiation SCN value
    3 BEGIN
    4 iscn := DBMS_FLASHBACK.GET_SYSTEM_CHANGE_NUMBER();
    5 [email protected](
    6 source_object_name => 'scott.emp',
    7 source_database_name => 'str1.net',
    8 instantiation_scn => iscn);
    9 END;
    10 /
    DECLARE
    ERROR at line 1:
    ORA-04052: error occurred when looking up remote object
    [email protected]
    ORA-00604: error occurred at recursive SQL level 1
    ORA-02085: database link STR2.NET connects to
    ORCL.REGRESS.RDBMS.DEV.US.ORACLE.COM
    Note also advise where should I have to execute above at (STR1.NET or STR2.NET)
    regards;

    Good morning Lenin,
    Have you checked the implementation of the connectors and are your locations well registered?
    Has a similar setup ever worked well?
    Can you access the source table using SQL (e.g. with SQL*Plus or TOAD)?
    Regards, Patrick

Maybe you are looking for