Deploying Windows Service Fails Every Other Time

I'm using Release Management 2013 to deploy a Windows service.  I go through the steps listed below to deploy it.  It fails on the first step (Delete Service) every other time.  When I run it again, it works.  It seems like it's saying
it failed, but is somehow actually succeeding.  After it fails, I don't see the service in the Services list anymore.  Then when I run the deployment again, it succeeds. 
I have found that if I manually stop the service before deploying again, it will always succeed.  There doesn't seem to be a good way of doing that in Release Management though, since the Stop Service action will error out if the service doesn't exist.
Any help would be appreciated!
==============
Delete Service
Create Folder
XCopy Site Deployment (deploys from drop folder)
Copy Config Files from Drop folder (copies config files folder from drop folder)
Delete File(s) or Folder (deletes existing config)
Rename File or Folder (renames appropriate copied config to the name of the previously deleted config file)
Delete File(s) or Folder (deletes other config files)
Delete File(s) or Folder (deletes config folder)
Create Service
Start Service

Hi,
You may have solved this by now, but for the record, I had the exact same issue. The problem is in this section of ManageWindowsServices.ps1
elseif ($Action -eq "delete")
#If the service exists, we first stop it to avoid "Marked for deletion" problems
$service = Get-Service -Name $ServiceName -ErrorAction SilentlyContinue
if ($service -ne $null)
#Stop the service
$status = & "sc.exe" "$ServerName" stop "$ServiceName"
"Stop status : $status"
$status = & "sc.exe" "$ServerName" $Action "$ServiceName"
"Delete status : $status"
#Ensure the service was deleted successfully
$service = Get-Service -Name $ServiceName -ErrorAction SilentlyContinue
if ($service -ne $null)
$(throw "The deletion of the service failed.")
else
$exitCode = 0
and is due to the fact that the second Get-Service call does actually return the service, even though it's after the call to delete it. Presumably this is some kind of race condition, where the call to delete the service returns before it's finished all
it's work.
In any case, the solution I went for was to rewrite this section as:
elseif ($Action -eq "delete")
[int]$returnCode = 0
#If the service exists, we first stop it to avoid "Marked for deletion" problems
$service = Get-WmiObject -Class Win32_Service -Filter "Name='$ServiceName'"
if ($service -ne $null)
#Stop the service
$status = & "sc.exe" "$ServerName" stop "$ServiceName"
"Stop status : $status"
"Deleting Service..."
$returnCode = $service.delete().ReturnValue
"Return code was : $returnCode"
if ($returnCode -ne 0)
$(throw "The deletion of the service failed: Return code was $returnCode")
#Ensure the service was deleted successfully
$service = Get-WmiObject -Class Win32_Service -Filter "Name='$ServiceName'"
if ($service -ne $null)
$(throw "The deletion of the service failed.")
else
$exitCode = 0
The above code works in all cases that I've run it for. You can either edit the existing ManageWindowsServices script, or simply create a new one. I opted for the latter.
Note: This is my first attempt at using Powershell, so there may well be a better way of doing the above.

Similar Messages

  • Filter to convert HTTP request to JNLP arguments fails every other time

    I want to pass HTTP request parameters to a Java Web Start program as arguments. I have implemented a filter which adds the arguments from the request parameters using XML DOM, and I also set the Last-Modified date to the current date/time. [ I am sort of thinking I should put the date as the file date -- not sure ]
    The filter works successfully ever other time I invoke a given URL. If I switch parameters, it looks like the filter works every time.
    When the filter works, there are HTTP GET and HEAD requests. When the filter fails, there are three HEAD requests and one GET request. Using the apache soap TCP Tunnel/Monitor, it looks like the HTTP request parameters aren't being passed for the second GET.

    Varad and Sc0tt,
    Thank you both for your responses.
    Varad – Yes, I can/will reduce the amount of data so it does not cause the tabular form to go over the 2000 field limit. If that is not possible, I will at least make the users aware of this issue. Since the same data is used for the other pages in the application, the users might want to keep all the data.
    Sc0tt – thanks for providing the information for your environment and settings. To plan for the future, we will have to set the value to something high also, around 8-10K range, and adjust later if we have to.
    Thank you both, I will mark both of your answers as helpful and the question as being answered.
    DP
    (Have either of you used the jquery datepicker solution? If yes, can you please take a look at my thread: Thread: Jquery Datepicker calendar problem with page scrolling
    Jquery Datepicker calendar problem with page scrolling

  • Native application installer fails on Mac 10.5.8 every other time

    Hello,
    I have a native AIR 2.0 application with a native installer which I silently install as a part of a bigger package.
    On Mac, I have a DMG which contains the native installer app and a shell script which copies the native installer app into a temporary folder, and then invokes it passing "-silent" option.
    For some reasons the native installer fails every other time, i.e. if I install the app and then move it to trash and then try to re-install, the installer fails.
    However if I try re-installing once again, installation succeeds. I can consistently reproduce this problem.
    This seems to happen only on Mac OS 10.5.8. On 10.6.0 and above everything seems to work fine.
    What can be the reason for such inconsistent behavior?
    OS version is Mac OS 10.5.8, CPU: 2.8GHz Intel Core Duo
    Below is the log for the cases when the installer fails:
    Nov 10 20:19:08 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[9579]: Application signature verified
    Nov 10 20:19:08 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[9579]: Unpackaging/validation complete
    Nov 10 20:19:08 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[9579]: Got an unexpected fatal error while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception ArgumentError: Error #2004" errorID=2004]
    Nov 10 20:19:08 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[9579]: Application Installer end with exit code 7
    Thanks in advance

    Chris, thank you for your answer.
    The only argument I pass into the installer command line is "-silent", i.e. the command line looks like
    "/tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline" -silent
    I've noticed that the installer fails only if it's called from a wrapper package. If I invoke the above command line directly from Terminal, the installer consistently succeeds.
    Here is the full log for the case when installer fails:
    Nov 15 11:21:21 iMac-3 /tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline[37088]: Bootstrapper begin (Mac:version (null))
    Nov 15 11:21:21 iMac-3 /tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline[37088]: Installed runtime located (2.5.0.16600)
    Nov 15 11:21:21 iMac-3 /tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline[37088]: Launching application installer: "AIR Application Installer" -silent /tmp/PixelNovel/Install Timeline.app/Contents/Resources/Timeline
    Nov 15 11:21:21 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37089]: Application Installer begin with version 2.5.0.16600 on Mac OS 10.5.8 x86
    Nov 15 11:21:21 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37089]: Commandline is: -silent "/tmp/PixelNovel/Install Timeline.app/Contents/Resources/Timeline"
    Nov 15 11:21:21 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37089]: Installed runtime (2.5.0.16600) located at /Library/Frameworks/Adobe AIR.framework
    Nov 15 11:21:22 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37089]: Validating app in folder /tmp/PixelNovel/Install Timeline.app/Contents/Resources/Timeline/Contents/Resources
    Nov 15 11:21:23 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37089]: Application signature verified
    Nov 15 11:21:23 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37089]: Unpackaging/validation complete
    Nov 15 11:21:23 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37089]: Got an unexpected fatal error while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception ArgumentError: Error #2004" errorID=2004]
    Nov 15 11:21:23 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37089]: Application Installer end with exit code 7
    Nov 15 11:21:23 iMac-3 /tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline[37088]: Application installer failure (7)
    Nov 15 11:21:23 iMac-3 /tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline[37088]: Bootstrapper failure (7)^M
    And here is the log for a successful attempt:
    Nov 15 11:25:19 iMac-3 /tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline[37154]: Bootstrapper begin (Mac:version (null))
    Nov 15 11:25:19 iMac-3 /tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline[37154]: Installed runtime located (2.5.0.16600)
    Nov 15 11:25:19 iMac-3 /tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline[37154]: Launching application installer: "AIR Application Installer" -silent /tmp/PixelNovel/Install Timeline.app/Contents/Resources/Timeline
    Nov 15 11:25:20 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Application Installer begin with version 2.5.0.16600 on Mac OS 10.5.8 x86
    Nov 15 11:25:20 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Commandline is: -silent "/tmp/PixelNovel/Install Timeline.app/Contents/Resources/Timeline"
    Nov 15 11:25:20 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Installed runtime (2.5.0.16600) located at /Library/Frameworks/Adobe AIR.framework
    Nov 15 11:25:20 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Validating app in folder /tmp/PixelNovel/Install Timeline.app/Contents/Resources/Timeline/Contents/Resources
    Nov 15 11:25:21 iMac-3 /usr/sbin/ocspd[37158]: starting
    Nov 15 11:25:21 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Application signature verified
    Nov 15 11:25:21 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Unpackaging/validation complete
    Nov 15 11:25:21 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: No app located for appID 'com.pixelnovel.TimelineProjectManager' and pubID ''
    Nov 15 11:25:21 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Starting silent app installation to /Applications. Installing app com.pixelnovel.TimelineProjectManager version 0.0.4 using the source file at file:///tmp/PixelNovel/Install%20Timeline.app/Contents/Resources/Timeline
    Nov 15 11:25:22 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel /Applications/Timeline.app
    Nov 15 11:25:22 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Subprocess chown succeeded
    Nov 15 11:25:22 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Launching subprocess with commandline /bin/chmod -R ugo+rx /Applications/Timeline.app
    Nov 15 11:25:22 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Subprocess chmod succeeded
    Nov 15 11:25:22 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Application Installer end with exit code 0
    Nov 15 11:25:22 iMac-3 /tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline[37154]: Application installer success
    Nov 15 11:25:22 iMac-3 /tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline[37154]: Bootstrapper success^M
    I will also send you a link to the DMG file that reproduces the error as a private message - ma be this will help.
    Thank you,
    Anatoly

  • Network fails every other boot [SOLVED]

    I seem to have a small prob when I startup my pc the network fails every other time. I had some probs w/ dhcp starting when I used gentoo, and found a workaround, putting "dhcpcd -k" in etc/conf.d/local.stop ran the dhcpcd -k command when I shutdown my pc, apparently arch's syntax is a bit different so I doubt etc/conf.d/local.stop exists, I tried /etc/rc.local.shutdown, but that didn't seem to do it either. Could someone please tell me the arch way to enter this command every shutdown?

    Snowman wrote:
    Haiyadragon wrote:
    I'm having the same problem. My motherbord has two network devices. It seems that the designations (eth0 and eth1) switch every boot. So every other boot eth0=dhcp is the right one.
    Will "dhcpcd -k" fix it?
    Check this: http://wiki.archlinux.org/index.php/Ude … _Each_Boot
    Thanks.
    Altough I find it quite weird they switch like that.
    "Because udev loads all modules at once, devices are sometimes initialized in a different order. For example, with two network cards, you may notice they switch designations between eth0 and eth1"
    Yeah, I don't buy it. They switched every boot.
    I'm trying the udev-sanctified method. Will find out in a day or so (when I (re)boot).

  • Fails to find HD on boot up every other time

    Starting in mid-November, shortly after replacing the battery and upgrading to 10.4.3, my ibook would not find the HD during boot up every other time I went to use it. I tried booting from the installation disc 10.4, resetting, PRAM, PMU, NVRAM, etc. but nothing short of putting the computer away for the rest of the day helped. The next day it boots up normally. If it goes to sleep, it starts the SBBOD and freezes. If I shut it down, it fails to boot up, only displaying the file folder with the alternating Mac face/question mark. The only solution is to just let it sit.
    This computer is within the range of serial numbers for the logic board recall, but did not display any symptoms within the three years, and now that is over. I don't understand the regularity with which it intermittently works and fails without anything being done to it.
    BTW, I have reinstalled 10.4, repaired permissions, done one update at a time, repairing permissions in between and it worked fine for two days and has again failed to find the HD on boot up. I have the same software on my Power PC (the same age) and have no trouble whatsoever. I'm typing this from that computer.

    This is what I get everytime I run repair disk permissions.
    Determining correct file permissions.
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.widgetplugin/Contents/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.widgetplugin/Contents/MacOS/Dictio nary. New permissions are 33261
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.widgetplugin/Contents/version.plis t. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/FlightTracker.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/FlightTrackerComboBoxPlugin.plugin/Contents/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/FlightTrackerComboBoxPlugin.plugin/Contents/MacOS/FlightTrackerCom boBoxPlugin. New permissions are 33261
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/FlightTrackerComboBoxPlugin.plugin/Contents/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/parser.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stickies.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stickies.wdgt/Stickies.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stickies.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Unit Converter.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Unit Converter.wdgt/UnitConverter.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Unit Converter.wdgt/parser.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Unit Converter.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets. New permissions are 16877
    We are using a special gid for the file or directory ./System/Library/CoreServices/Dock.app/Contents/MacOS/Dock. New gid is 0
    We are using special permissions for the file or directory ./System/Library/CoreServices/Dock.app/Contents/MacOS/Dock. New permissions are 33261
    We are using special permissions for the file or directory ./usr/lib/php/build/Makefile.global. New permissions are 33060
    We are using special permissions for the file or directory ./usr/lib/php/build/acinclude.m4. New permissions are 33060
    We are using special permissions for the file or directory ./usr/lib/php/build/mkdep.awk. New permissions are 33060
    We are using special permissions for the file or directory ./usr/lib/php/build/phpize.m4. New permissions are 33060
    We are using special permissions for the file or directory ./usr/lib/php/build/scanmakefilein.awk. New permissions are 33060
    Permissions repair complete
    The privileges have been verified or repaired on the selected volume
    Everytime I run this I get the same message. Any reason these won't stay the correct values?

  • Every other time I open a new window or start firefox I get 2 windows in one & nothing happens.

    Every other time that I start up Firefox I get 2 windows in one, and nothing happens. Also, whenever I open a new window in Firefox every other window comes up as 2 in one and nothing happens.

    See [[How to set the home page]]: Firefox supports multiple home pages separated by '|' symbols
    See also http://kb.mozillazine.org/Preferences_not_saved and [[Preferences are not saved]]

  • Hi everybody, I am in Turkey on a long assignment, I need help solving a big problem on my macbook pro os 10.9.3. The other week my wife visited some website and now we have a redirect virus of some sort, and every other time when we click

    Hi everybody, I am in Turkey on a long assignment, I need help solving a big problem on my macbook pro os 10.9.3. The other week my wife visited some website and now we have a redirect virus of some sort, and every other time when we click on a link or anywhere on the page we are redirected to this casino web site, https://casino.7bets10.com/tr/?from=hy9yKXD43jSC-8Oxbw4femNd7ZgqdRLk-dHJpeG9uaXR l. Its the same whether on Chrome or Safari. Does anyone have a solution, thank you!

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    Don't be put off merely by the seeming complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. All it does is to collect information about the state of the computer. That information goes nowhere unless you choose to share it. However, you should be cautious about running any kind of program (not just a shell script) at the behest of a stranger. If you have doubts, search this site for other discussions in which this procedure has been followed without any report of ill effects. If you can't satisfy yourself that the instructions are safe, don't follow them. Ask for other options.
    Here's a summary of what you need to do, if you choose to proceed:
    Copy a line of text in this window to the Clipboard.
    Paste into the window of another application.
    Wait for the test to run. It usually takes a few minutes.
    Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    4. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    5. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    6. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts 51 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports ' \*AutoCad \*dropbox \*GoogleDr\* vidinst\* ' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 ` route -n get default|awk '/e:/{print $2}' ` 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB com.apple.AirPortBaseStationAgent 464843899 );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n-\t%s\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' /^ *$|CSConfigDot/d;s/^ */  /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/Shared/!s/\/Users\/[^/]+/~/g ' ' s/^ +//;5p;6p;8p;12p;' ' {sub(/^ +/,"")};NR==6;NR==13&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: [^EO]|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { if(n<200) print "com.apple.";} ' ' $3~/[0-9]:[0-9]{2}$/ { gsub(/:[0-9:a-f]{14}/,"");} { print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { print "'${p[41]}'";if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$|'${p[41]}'/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:[^:]+//p ' '/root/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1000) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/ { next;} /(etc|Preferences|Launch[AD].+)\// { sub(".(/private)?","");n++;print;} END { print "'${p[41]}'.plist\t'${p[42]}'";if(n<500) print "Launch";} ' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| |\n","\\|\\|kMDItem'${p[35]}'=");sub("^...."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[9]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/ { next;} /%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]" "$1;b=b$1;} END { if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n  "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n  [N/A]";"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text$|POSIX sh.+ text ex)/) F=F" ("T")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n  ...and %s more line(s)\n",l-L);} ' ' /^ +[NP].+ =/h;/^( +D.+[{]|[}])/{ g;s/.+= //p;};' ' /^ +B/{ s/.+= |(-[0-9]+)?\.s.+//g;p;} ' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' / / { print "'"${p[28]}"'";exit;};1;' '/ en/!s/\.//p' ' NR!=13{next};{sub(/[+-M]$/,"",$NF)};'"`S0 39 40`" ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9;} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?Info\.plist$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' 's/0/Off/p' );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps sudo\ crontab sudo\ iotop top pkgutil PlistBuddy whoami cksum kextstat launchctl sudo\ launchctl crontab 'sudo defaults read' stat lsbom mdfind ' for i in ${p[24]};do ${c1[18]} ${c2[27]} $i;done;' defaults\ read scutil sudo\ dtrace sudo\ profiles sed\ -En awk /S*/*/P*/*/*/C*/*/airport networksetup mdutil sudo\ lsof test );c2=(com.apple.loginwindow\ LoginHook '-c Print /L*/P*/loginw*' '-c Print L*/P*/*loginit*' '-c Print L*/Saf*/*/E*.plist' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' '-c Print\ :'${p[35]}' 2>&1' '-c Print\ :Label 2>&1' '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$Message' -k Sender kernel -k Message Req 'bad |Beac|caug|dead[^bl]|FAIL|fail|GPU |hfs: Ru|inval|jnl:|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|tim(ed? ?|ing )o|WARN' -k Message Rne 'Goog|ksadm|SMC:' -o -k Sender fseventsd -k Message Req 'SL' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cgh] ! -name *ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '-L {/{S*/,},}L*/Lau* -type f' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Ca*/*/Ex,Compon,Ex,In,iTu,Keyb,Mail/B,P*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,{[lp],sy}*.conf,pam.d/*,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t /S*/L*/Lau*/*t .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers\ "${p[N5]}" -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' -i4TCP:0-1023 com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' );N1=${#c2[@]};for j in {0..8};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents launchd Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};';done;A7(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0(){ [[ "$v" ]]&&echo "$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "$s"<<<"$v"`&&C1 1 $1;};for i in 1 2;do for j in 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;A2 0 $((N1+1)) 2;C0;A1 0 $N1 1;C0;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 14 12 14;D22 6 36 13 15;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D22 11 17 17 20;for i in 0 1;do D22 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A2 19 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;A2 4 20 21;B7 6;B2 9;A4 14 7 52 9;B2 10;B6 9 10 4;C3 25;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;D13 24 24 32 31;D13 25 37 32 33;A2 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D13 21 0 32 19;D13 10 42 32 40;D22 29 35 46 39;};D13 14 1 48 42;D12 34 43 53 44;D22 0 $((N1+8)) 51 32;D13 4 8 41 6;D12 26 28 35 34;D13 27 29 36 35;A2 27 32 39&&{ B2 19;A2 33 33 40;B2 20;B6 19 20 3;};C2 36;D23 33 34 42 37;B1&&D23 35 45 55 46;D23 32 31 43 38;D12 36 47 32 48;D13 20 42 32 41;D13 14 2 48 43;D13 4 5 32 1;D22 4 4 50 0;D13 14 3 49 5;D12 26 48 59 49;B3 4 22 57;A1 26 46 56;B7 22;B3 0 0 58;C3 47;D23 22 9 37 7;A7;C2 2;} 2>/dev/null|pbcopy;exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    7. Launch the built-in Terminal application in any of the following ways:
    Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    8. If you see an error message in the Terminal window such as "syntax error," enter
    exec bash
    and press return. Then paste the script again.
    9. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    10. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report the results. No harm will be done.
    11. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start Time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    12. When you post the results, you might see the message, "You have included content in your post that is not permitted." It means that the forum software has misidentified something in the post as a violation of the rules. If that happens, please post the test results on Pastebin, then post a link here to the page you created.
    Note: This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • IPASCII Response fails every other poll.

    IPASCII Driver object is used to retrieve (via Ethernet) data.
    Request format works good.
    My Request Format (RequestFormat):
    "GET /data HTTP/1.0 \r\n\r\n" as per device manufacture Txt string and
    (2) carriage return/line feeds
    Response String looks good Object = (.Response)
    Typical Response String
    F|74.0|29.3|-999.9|74.0|29.3|-999.9|-999.9|-999.9|-999.9|-999.9|-999.9
    |-999.9
    Data is temperature from module, -999.9 are data inputs without temperature
    probes attached...
    RSV1.txt = (F)
    RSV2.txt = (74.0)
    ETC...
    RSV1-13 data look good but fails every other poll
    (Socket communications error 10053: Software caused connection abort).

    I have received the following response from NI engineers.
    To review this issue -- the IPASCII object has a problem in that if you use the IPASCII object to query a web service that closes the
    connection remotely after a request has been made Lookout will not close the local connection.  This results in a "CLOSE_WAIT"
    state for the local TCP port.   Since the port is not closed, Lookout is not able to make a subsequent outgoing connection on the
    same port.  Lookout does appear to close the port when after it tries to make repeated connections, but this means for every time
    you want to make a query you have to alternate between successful queries and comm failures. Most likely this was not found earlier
    because for many Ethernet based instruments, a TCP connection is persistent, however web servers using the HTTP/1.0 protocol
    close the TCP connection after every GET request and response.  A corrective action request has been filed with our Lookout R&D
    team and hopefully a fix will be available in future versions of Lookout.  Thank you for your patience with this issue.

  • Submit to an iframe, only happens every other time

    We have a navigation (tree widget) that is generated with JavaScript. Clicking on the tree nodes is supposed to load an url i the content iframe.
    A hidden form is used for this. By clicking on a tree node a hidden inputs field value is set and the hidden form is submitted that does a post to the iframe (using target on the form).
    First question would be if this is the best solution for this. Feels a bit hacky.
    But the main problem is that the form is only submitted every other time.

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    >In Firefox 4 Safe mode also disables plugins (Tools > Add-ons > Plugins) and hardware acceleration (Tools > Options > Advanced > General)

  • Every other time FF is launched, address bar is static, 1st tab won't close.

    This problem only happens every other time I open Firefox. It's two things, first, when I open Firefox my homepage loads, but the address bar is blank. And if I type something in like "google.com" it loads Google, but it doesn't automatically change the address to "http://www.google.com" like usual, it just keeps "google.com". Also when I have other tabs open and try to close the first one, it doesn't close.

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    >In Firefox 4 Safe mode also disables plugins (Tools > Add-ons > Plugins) and hardware acceleration (Tools > Options > Advanced > General)

  • Cme 2 cme voip calls work every other time

    have 2 cme's with checkpoint in between.
    cme A & cme B
    ip phone on cme a call cue on cme b works every time
    ip phone on cme a calls ip phone on cme b it works every other time consistantly. One time ringback next time busy.
    phones in both locations are on different subnet from cue.
    i've tried to disable ip cef to no avail and still getting problem.
    debugs give disconnect cause code as network not available.
    any ideas as to why it would work one time and not the next?
    some sort of timer / timeout?
    thanks,
    paul.

    You've probably mapped that key to a key command or controller assignment.
    If you know what you are doing, then check the key commands and controller assignments window for unwanted MIDI mappings.
    If you are not sure, then back up and move your Logic preference files and restart Logic to see if it goes away.
    If it still happens, option click on File -> New to create a new song and try that. It it works OK in that, you may have something in your environment that's interpreting specific note values and doing something with them (or filtering them).

  • Every other time I type cmd k for keyboard in Logic Pro X, the track that is selected is muted.

    The title kind of says it all. Every other time that I press the shortcut for onscreen keys, the selected track is muted. By that I mean if I press cmd+k it brings up the keyboard unmuted, then press cmd+k to get rid of it and it's still fine, but the next time I press cmd+k to bring the keyboard back up, the track is muted.
    Only noticed this today, and don't know what I did. Please Help!

    Figured it out! On the menu bar I clicked Logic Pro X > Control Surfaces > Learn Assignment for "Mute", which meant that I Mute was the last command that I had clicked on. In the (No Zone) section, there was a Learned Assignment, and I simply clicked delete and it disappeared. Now everything is just fine.

  • KDE: Laptop only sleeps when closing lid every other time

    Hello all,
    I'm running KDE 4.14.1 on an older Toshiba Satellite laptop. In the KDE System Settings, I've told it to sleep when closing the lid and this works - but strangely only every other time I close the lid. It will work once, then I open the lid and it powers up just fine. Then I close it again and the screen just turns off but the laptop stays fully powered.
    Any ideas what might be going on? It consistently only sleeps every other time when I close the lid (the other times it just turns the screen off).

    Take a look at /etc/systemd/logind.conf
    Is systemd also trying to manage this?

  • Mac book pro doesn't wake up every other time with external monitor

    It is related to 'Put display to sleep' as I managed to find out. When you have 'put display to sleep' turned on, every other time screen doest turn back on, nor external nor internal, sometimes internal lits up and there is just blue screen, not desktop. You can't do anything except turning notebook off. No mouse, no keyboard, nothing, there is no mouse pointer either. I didn't experiment without external monitor, though, maybe it hangs up too.
    This thing did cost me $2800. Can it atleast work as it supposed too?
    I set it to 'never sleep', 'never sleep display', but frankly, it *****. When I need to go out, I just turn monitor off.
    Is apple doing anything to resolve that issue? Do they read these forums?

    Tried resetting SMC?
        Reset SMC.     http://support.apple.com/kb/HT3964
        Choose the method for:
        "Resetting SMC on portables with a battery you should not remove on your own".
    Best.

  • SQLPlus works every other time

    Every other time I login into sqlplus I get
    Error:
    ORA-06553: PLS-213 package STANDARD is not accessible
    Error accessing package DBMS_APPLICATION_INFO
    ERROR:
    ORA-06553: PLS-213 package STANDARD is not accessible
    Anyone have any idea why this might be happening, as the views and tables can not be queried when this happens.
    TIA,
    John Jones
    null

    The PL/SQL compiler could not find package STANDARD in the current Oracle database. To compile a program, PL/SQL needs package STANDARD.
    Make sure that package STANDARD is available in the current Oracle database, then retry the operation.
    Query all_source table :
    select distinct name,type from all_source
    where type = 'PACKAGE'
    and name like 'STAND%';
    If you dont get no rows selected, then
    try to check for the same logged in as
    sys or system.
    This package is installed default by Oracle
    no matter what kind of installation you
    choose
    HTH
    Naresh
    null

Maybe you are looking for