ARD 3.1 Bug ? (task not ended)

Hello,
After updating to ARD 3.1 (from 3.0), I have some problems using unix task.
with 3.0 when I send "softwareupdate -a -i" (using root user) to a group of computer, all update were made in parallel and when each task finised, I can see a green icon "success".
with 3.1 after the task was send, I receive only "some times" the succes message
the main part of tasks are labeled as active (despite the fact that the softwareupdate process has cleanlly ended on the client machine).
I seems to be the "succesfull end" message was not send properly.
Any idea ? bug ??
Laurent

I noticed a similar behavior when running softwareupdate earlier. Had you already upgraded the clients to 3.1?
If you hadn't, then my guess would be that softwareupdate was updating the ARD client, thus interrupting the ARD session.

Similar Messages

  • Scheduled Powershell task not ending

    I've set up a PS script to email users who are with in 14 days of their password expiring.  When I run it in PS it's self it runs fine, the notices go out and it ends.  However when I set it as a scheduled task it doesn't stop.  It starts,
    sends the emails then Task scheduler says that it's still running an hour and a half later.  Normally it's a 5 min job.  I have it set to force stop after an hour, but it's ignoring that for some reason.  The job runs twice a day, and the action/program
    is set as "Powershell noprofile -noexit -executionpolicy bypass -file C:\PasswordNotification.ps1"
    THe scrip is as follows:
    # Version 1.1 May 2014
    # Robert Pearman (WSSMB MVP)
    # TitleRequired.com
    # Script to Automated Email Reminders when Users Passwords due to Expire.
    # Requires: Windows PowerShell Module for Active Directory
    # For assistance and ideas, visit the TechNet Gallery Q&A Page. http://gallery.technet.microsoft.com/Password-Expiry-Email-177c3e27/view/Discussions#content
    # Please Configure the following variables....
    $smtpServer="mail.forestriverinc.com.com"
    $expireindays = 14
    $from = "Password Notice <[email protected]>"
    $logging = "Disabled" # Set to Disabled to Disable Logging
    $logFile = "<D:\autoemail.csv>" # ie. c:\mylog.csv
    $testing = "Disabled" # Set to Disabled to Email Users
    $testRecipient = ""
    $date = Get-Date -format ddMMyyyy
    # Check Logging Settings
    if (($logging) -eq "Enabled")
        # Test Log File Path
        $logfilePath = (Test-Path $logFile)
        if (($logFilePath) -ne "True")
            # Create CSV File and Headers
            New-Item $logfile -ItemType File
            Add-Content $logfile "Date,Name,EmailAddress,DaystoExpire,ExpiresOn"
    } # End Logging Check
    # Get Users From AD who are Enabled, Passwords Expire and are Not Currently Expired
    Import-Module ActiveDirectory
    $users = get-aduser -filter * -properties Name, PasswordNeverExpires, PasswordExpired, PasswordLastSet, EmailAddress |where {$_.Enabled -eq "True"} | where { $_.PasswordNeverExpires -eq $false } | where { $_.passwordexpired -eq $false }
    $maxPasswordAge = (Get-ADDefaultDomainPasswordPolicy).MaxPasswordAge
    # Process Each User for Password Expiry
    foreach ($user in $users)
        $Name = (Get-ADUser $user | foreach { $_.Name})
        $emailaddress = $user.emailaddress
        $passwordSetDate = (get-aduser $user -properties * | foreach { $_.PasswordLastSet })
        $PasswordPol = (Get-AduserResultantPasswordPolicy $user)
        # Check for Fine Grained Password
        if (($PasswordPol) -ne $null)
            $maxPasswordAge = ($PasswordPol).MaxPasswordAge
        $expireson = $passwordsetdate + $maxPasswordAge
        $today = (get-date)
        $daystoexpire = (New-TimeSpan -Start $today -End $Expireson).Days
        # Set Greeting based on Number of Days to Expiry.
        # Check Number of Days to Expiry
        $messageDays = $daystoexpire
        if (($messageDays) -ge "1")
            $messageDays = "in " + "$daystoexpire" + " days."
        else
            $messageDays = "today."
        # Email Subject Set Here
        $subject="Your password will expire $messageDays"
        # Email Body Set Here, Note You can use HTML, including Images.
        $body ="
        **THIS IS AN AUTOMATICALLY GENERATED EMAIL, PLEASE DO NOT REPLY**<br>
        <br>
        Dear $name,
        <p> Your Password will expire $messageDays.<br>
        <p>To change your password on a FR owned computer connected to the company network press CTRL, ALT, Delete and chose Change Password.<br>
        After your password has been changed please LOG OUT of citrix and windows and log back in using the new password.
        <p>For outside users, log into mail.Forestriverinc.com, and in the upper right corner select Options,
        then Change Your Password in the drop down menu, when the page loads enter your old and new password. <br>
        <p>Thank you, <br>
        <p>Forest River IT Dept.<br>
        <p>**DO NOT REPLY TO THIS EMAIL, THIS IS AUTOMATICALLY GENERATED**
        </P>"
        # If Testing Is Enabled - Email Administrator
        if (($testing) -eq "Enabled")
            $emailaddress = $testRecipient
        } # End Testing
        # If a user has no email address listed
        if (($emailaddress) -eq $null)
            $emailaddress = $testRecipient    
        }# End No Valid Email
        # Send Email Message
        if (($daystoexpire -ge "0") -and ($daystoexpire -lt $expireindays))
             # If Logging is Enabled Log Details
            if (($logging) -eq "Enabled")
                Add-Content $logfile "$date,$Name,$emailaddress,$daystoExpire,$expireson"
            # Send Email Message
            Send-Mailmessage -smtpServer $smtpServer -from $from -to $emailaddress -subject $subject -body $body -bodyasHTML -priority High  
        } # End Send Message
    } # End User Processing
    # End

    Hi,
    Rather than picking through your code, I figured I'd just post what I use:
    Import-Module ActiveDirectory
    $users = Get-ADUser -Filter * -Properties PasswordLastSet,EmailAddress -SearchBase 'OU=Users,DC=domain,DC=com' | ForEach {
    If ($_.PasswordLastSet -and $_.EmailAddress -and $_.GivenName -and $_.Surname) {
    If ($_.DistinguishedName -notlike '*,OU=System,*' -and $_.DistinguishedName -notlike '*,OU=Administrator,*' -and $_.DistinguishedName -notlike '*,OU=Shared Resources,*' -and $_.SamAccountName -ne 'thebigboss') {
    $passwordAge = ((Get-Date) - $_.PasswordLastSet).Days
    If ($passwordAge -ge 106) {
    If (120 - $passwordAge -ge 0) {
    $props = @{
    Name = $_.Name
    GivenName = $_.GivenName
    Surname = $_.Surname
    Username = $_.SamAccountName
    EmailAddress = $_.EmailAddress
    PasswordLastSet = $_.PasswordLastSet
    PasswordExpiresOn = (Get-Date $_.PasswordLastSet).AddDays(120)
    DaysRemaining = 120 - $passwordAge
    New-Object PsObject -Property $props
    } | Sort Name
    foreach ($user in $users) {
    $daysLeft = $user.DaysRemaining
    $emailBody = @"
    Hello $($user.GivenName),
    IMPORTANT REMINDER: Your *company* password will be expiring in $daysLeft days ($($user.PasswordExpiresOn.DateTime)).
    Please change your password at your earliest convenience.
    Procedure:
    1 - Press Control+Alt+Delete on your keyboard (or Control+Alt+End if connected via VPN).
    2 - Select 'Change a password...'.
    3 - Type your current password and your new password twice.
    4 - Press Enter or click the arrow button.
    If you have any questions, please contact the helpdesk: [email protected]
    Thank you.
    *company* IT Department
    If ($daysLeft -eq 14 -or $daysLeft -eq 10 -or $daysLeft -le 7) {
    Send-MailMessage -To $user.EmailAddress -From [email protected] -Subject 'Password Expiration Notification' -Body $emailBody -SmtpServer smtp.domain.com -Bcc [email protected]
    Send-MailMessage -To [email protected] -From [email protected] -Subject 'Password Expiration Notification Script Complete' -Body 'Script completed' -SmtpServer smtp.domain.com
    Scheduled Task Action Properties:
    Program/Script: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
    Add arguments: -File C:\Archive\Scripts\PasswordExpirationNotification\PasswordExpirationNotification.ps1
    Don't retire TechNet! -
    (Don't give up yet - 12,950+ strong and growing)

  • ARD tasks never end

    Hi, all-
    I have 2 servers (10.6.8) with ARD. One uses 3.4 and one 3.5.1. All clients are 3.5.1. There are some tasks, thawing and freezing client machines for example, that sometimes don't stop. I can watch as all the clients restart after sending the command and show that they have changed states, but the task continues. This means, of course, that other tasks pile up until i realize what's happening and manually stop the task. It's not consistent- sometimes the task will end. It happens on both of my servers.
    Very irritating! Does anyone have any ideas?
    thanks,
    ann

    BTW Apple Remote Desktop dose have the ability to email you when tasks succeed or fail.
    ARD dose offer the ability to assign tasks to a "task server." basically you set up another computer with ARD, add all the computers to ARD on the 2nd computer. And then you can assign tasks to the 2nd Computer. The task server still performs one task at a time, but that dose mean your 1st computer is free to run other tasks. So you could have two tasks running at ones.
    Tasks server can get stuck on tasks, just like regular ARD. And you can of corse rig the task server to email when tasks complete / fail.
    And there no reason you can't setup a 3rd computer, but I and manually run tasks on that computer as well.
    I haven't tired using ARD in multiple accounts on the same computer, at the same time, but I'll have to try that tomorrow, and see if that works.

  • Firefox is very slow to respond when opening and nearly always stops responding altogether even refusing to react to Task Manager "End Program@ command. The "not responding@ error message also comes up during navigation on line.

    Firefox is very slow to respond when opening and nearly always stops responding altogether, even refusing to react to the Task Manager "End Program" command. The "not responding" error message also comes up during navigation on line. Several attempt have to be made to get on line. A loss of stability seems to be endemic at the moment.

    Try following the instructions here: [[Firefox hangs]]

  • Task does not end on completion event

    Hi,
    I have a workflow process made up of three tasks linked togheter with Exclusive Choices.
    If I open a workitem bound to a particular Task and then make the Web DynPro launch the event bound to signal the "Complete task" event, the Web Dynpro closes leaving the window only with the task header and the success message "Task succesfully completed".
    The problem is that sometimes the task is correctly terminated while other times the task is not ended at all! And every time the outcome is apparently random (i.e. task closed vs. task not closed).
    Do you have any idea of why this happens?
    Thank you,
    Pietro

    I've found the error that generates the problem: http://paste.lisp.org/+2OHA
    (TERMINATING_END_CONTROL_EVENT_Cancelled)
    Do someone has any idea of what this means?
    Thank you,
    Pietro

  • Firefox won't close without using Task Manager - end process; can't start in safe mode or disable add-ons

    I've been having a memory leak/hanging problem for weeks -- FF slowly increases memory usage until it's at almost 100% and then freezes and I have to shut it down via Task Manager/end process.
    Last week I updated to FF 12, and I also added the Web Developer 1.1.9 add-on. Now every time I open Firefox it tries to go to the "Web Developer installed" page, but the page never loads. Nothing else will load either.
    I can't start in Safe Mode because of the problem with having to close it in Task Manager. I select "restart with add-ons disabled" and it just never opens. The Add-On manager page won't load, so I can't disable Web Developer to see if that's the problem.
    I've uninstalled Firefox and reinstalled, and it still goes right back to the Web Developer page when I open the freshly installed copy.
    Help, please!

    Have you already tried clearing the browser cache, opening a blank tab, and trying to open some other website ?
    * [[how to clear the cache]]
    Instead of trying to open safe mode from within the User Interface menu have you tried alternative methods such as holding the shift key when you start Firefox. (After checking for running Firefox processes or plugincontainer and killing them if found )
    * see [[safe mode]]
    * [[firefox hangs]]
    If using safemode does not help first of all try creating and using a new profile.
    * [[Basic Troubleshooting#w_8-make-a-new-profile]]_8-make-a-new-profile
    If all the above fail then try a clean re-install of Firefox
    * [[Basic Troubleshooting#w_7-reinstall-firefox]]_7-reinstall-firefox

  • Excel process does not end properly

    Hello All.
    I am using excel in my program writing data into it an excel workbook and then later on reading data from it. I have written down the code of closing excel worlkbook and shutting down excel application hence releasing the handles for it. But when i do that i.e. when the code containing excel workbook closing and excel application shutting down executes, excel workbook is closed but excel process does not end properly and can be seen in the task manager. And when i repeatedly open the excel file through my front end interface and close the file, another excel process is added in the task manager which does not end and so on. What can be the problem and solution. Thanks in advance.
    Best Regards.
    Moshi.

    Interfacing to Excel via ActiveX may be tricky, ending in situations like the one you are facing now.
    The basic principle is that every single handle opened to an Excel object (workbook, worksheet, range, variant and so on) must be closed properly for the entire process to terminate gracefully. If a reference remains unhandled at program end you will find an instance of Excel remaining in the task list and you may suffer erratic behaviour in subsequent accesses to the product.
    You must double check all references and add approporiate dispose/close commands for every one of them.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Applescript to make task note part of task name

    If I have a task say
    Do this
    Task Note - @work
    Is it possible for me to dump the task note @work to task name and name becomes
    Do this @work
    Can this be done for all my tasks.

    Your request is a bit vague, but see the script below. I suggest that you backup your iCal before running this in case you don't like the result. Change the calendar to the one you want.
    -- John Maisey -- www.nhoj.co.uk -- 29 Mar 2010
    -- This script gets all todos in the specified calendar and moves their notes that contain the requires text into the title.
    set calendarName to "Home"
    set theText to "@work"
    tell application "iCal"
    set myTodos to (todos of calendar calendarName)
    repeat with myTodo in myTodos
    if (description of myTodo) contains theText then
    set (myTodo's summary) to (myTodo's summary) & " " & theText
    end if
    end repeat
    end tell
    Best wishes
    John M

  • Firefox sometimes does not end

    14.7.2014
    Firefox 30.0 (German version) under Win 8.1
    Hello,
    Sometimes Firefox does not end properly. When Firefox is re-started I get a message saying Firefox
    is still running although about 10 minutes has passed between end and the re-start.
    Only by killing Firefox in the Task Manager can cure this problem. I use firefox a lot and this occurs about 5 times a day.

    Firefox Keep running in background, that's why your getting this error
    *http://kb.mozillazine.org/Firefox.exe_always_open
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/viruses/disinfection/5350 Anti-Rootkit Utility - TDSSKiller]
    * [http://general-changelog-team.fr/en/downloads/viewdownload/20-outils-de-xplode/2-adwcleaner AdwCleaner] (for more info, see this [http://www.bleepingcomputer.com/download/adwcleaner/ alternate AdwCleaner download page])
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • IPad Safari Landscape innerHeight/outerHeight bug still not fixed in iOS 7.1.1

    iPad Safari Landscape innerHeight/outerHeight bug still not fixed in iOS 7.1.1
    No bug in Chrome or other third party browsers.
    When are Apple going to fix this bug? It's painful.
    more info here:
    http://stackoverflow.com/questions/19012135/ios-7-ipad-safari-landscape-innerhei ght-outerheight-layout-issue

    Tell Apple not other users.
    Use http://www.apple.com/feedback/ipad.html

  • Report to show all activities (ended and not ended)

    Hi,
    I would like to do a report to show all activities (not ended and ended), but when I do the report from "Activity" the only information shown is no ended activities.
    Is possible to show all activities? How can I do it?
    Thank you and regards.

    Monica - depending on the Subject Area, including certain "look-up" or reference fields to other tables automatically implies a join-relationship between the 2 tables.
    Case-in-point, the activities subject area. Whenever you include fields from other objects like (Account Name, Campaign Name, Contact job title, etc.) "Answers" will automatically assume that you only want those activities where those field-values are populating, consequently filtering the report. It seems to occur any time you're trying to include data across tables in a one to one relationship.
    A better example, and likely a common headache for CRM report builders is an Opportunity report, wherein you're including data from the Primary Contact associated to the opportunity. By the same limitations, you would wind up with only those opportunities that have a Primary Contact associated, versus all opportunities with contact-data if it's populated.
    It is my understanding that the only workaround is to use Combined Analyses to create an union of the 2 reports, one with all opportunities and another with primary contacts. Use a pivot table and max-aggregation rule on the contact name to remove dupes.

  • Getting error while reading Task Notes

    Hi,
    I have a problem while opening the task from UWL. It is about reading task notes. One LDAP User had written a note previous task but now this user is deleted from LDAP. So the task screen trying to read this user while getting notes and throws exception. I also got this exception in Manage Process
    Screen when press 'Show Related Tasks' button. (My system is SAP NW 7.31 SP 9)
    The exception message is :
    java.lang.NullPointerException: while trying to invoke the method com.sap.tc.webdynpro.services.sal.um.api.IWDClientUser.getSAPUser() of a null object returned from com.sap.tc.webdynpro.services.sal.um.api.WDClientUser.getClientUser(java.lang.String)
      at com.sap.tc.bpem.wdui.notes.Utils.notesToText(Utils.java:118)
      at com.sap.tc.bpem.wdui.notes.comp.Notes.reloadNotesHistory(Notes.java:352)
      at com.sap.tc.bpem.wdui.notes.comp.wdp.InternalNotes.reloadNotesHistory(InternalNotes.java:181)
      at com.sap.tc.bpem.wdui.notes.comp.NoteListView.wdDoModifyView(NoteListView.java:174)
      at com.sap.tc.bpem.wdui.notes.comp.wdp.InternalNoteListView.wdDoModifyView(InternalNoteListView.java:482)
    Kindly Helps,
    Thanks

    Hi Omer,
    This is a known issue. This error occurs because once the creator of the note is deleted from the portal, his user id cannot get displayed to the user who is trying to read the note as the Note Creator.
    You need to apply the patches mentioned in the SAP Note specified to add the 'Deleted User' text when the note is trying to be read by someone.
    Its not a long procedure. All the best.
    /Sid

  • BUG! Not system locale Filenames support for 32-bit applications error in Windows 8.1 x64 and other microssoft x64 OS-s.

    BUG! Not system locale Filenames support for 32-bit applications error in Windows 8.1 x64.        
    All Windows x64 (XP,2003,2007,Vista,7,8) have no support for not system locale filenames|foldernames for all 32-bit applications. I think it is BUG!
    For example,  it is possible to read files|folders with French or Chinese in English locale windows installed, rename it, but it is not possible open it, edit or delete. (ERRORS: File not found OR Unknown format)
    With using 64-bit programs no such problems. How does it works and how can I fix this? Is it problem with encoding in translating kernel instructions for 32-bit apps in x64 Windows OS's? Whether there are
    solutions to this problem OR some hacks|fixes? 

    Hi,
    Have you installed the language package for French or Chinese?
    If no, please download the language package and install them.
    To download language package, please click the link below,
    http://windows.microsoft.com/en-US/windows/language-packs#lptabs=win7
    Best Regards.
    Steven Lee
    TechNet Community Support

  • Execution does not end even after all records updated..

    Hi,
    I have plsql code like :
    declare
    begin
    for x in ( select .......) loop -- about 4000 times
    for y in ( select ............) loop -- about 50 times
    end loop;
    -- some code goes here to manipulate clob data
    -- like creating free temp clobs - use - then free them
    -- Update statement that update some table using clob values.
    insert into tablex values(sysdate);
    commit;
    end loop;
    end;
    Here I can monitor from other window howmany records are inserted into tablex and howmany updated in update statement by...
    select count(1) from tablex;
    After 50 mins i can see that all records are updated but...
    plsql code does not end its execution it continues even after all records are updated..untill i have to kill the session or let be run for long time.. :(
    I can not understand why this it is not ending execution..
    What could be the problem ...

    Hi,
    Here it is.....
    declare
    v_text_data TableA.text_data%type;
    v_clob clob;
    type dummyclob_t is table of clob index by binary_integer;
    dummyclob dummyclob_t;
    v_str varchar2(255) := 'ddfsajfdkeiueimnrmrrttrtr;trtkltwjkltjiu4i5u43iou43i5u4io54urnmlqwmreqwnrewmnrewmreqwnm,rewqnrewqrewqljlkj';
    begin
    select data bulk collect into dummyclob from sfdl_clob; -- five rows containing clob data upto 1MB
    for x in (select object_id
    from TableA
    where object_type = 'STDTEXT' ) loop
    dbms_lob.createtemporary(v_text_data,TRUE);
    for y in (select '<IMG "MFI_7579(@CONTROL=' || ref_id || ',REF_ID=' || ref_id || ').@UDV">' temp_data
    from TableB
    where object_id = x.object_id) loop
    v_text_data := v_text_data ||
    case
    when trunc(dbms_random.value(0,7)) = 0
    then chr(10)
    else v_str
    end ||
    y.temp_data;
    end loop;
    select text_data into v_clob from TableA where object_id = x.object_id for update;
    if v_text_data is not null then
    dbms_lob.append(v_clob,v_text_data);
    end if;
    dbms_lob.append(v_clob,dummyclob(trunc(dbms_random.value(1, 6))));
    dbms_lob.freetemporary(v_text_data);
    insert into xyz values (sysdate);
    commit;
    end loop;
    end;
    Thanks for your time..:)
    Rushang.

  • How to remove records in itab where its HKONT does not end in '0'...

    Hello Experts,
    I am getting records from BSIS and BSAS and I want to remove those records with
    their HKONT(GL account) does not end in '0'(zero). I do now want to do it via a loop.
    I tried using DELETE FROM ITAB statement but it seems it does not work.
    Here is what I did:
    IF NOT gt_bsis_bsas[] IS INITIAL.
       DELETE gt_bsis_bsas WHERE hkont+10(0) <> '0'.
    ENDIF.
    Hope you can help me guys. Thank you and take care!

    Hi Viray,
    '+' is a wildcard char which is used to represent one char
    where as '*' represents any number of char's.
    In this case  +++++++++0
    <b>means that the length of the field is 10 chars and first 9 can be anything</b>
    he didn't use '*0' since it could mean that the length of the data entered can be anything .
    Hope this clarifies
    Regards
    Nishant

Maybe you are looking for

  • My iPhone 4s is not detected by windows iTunes.

    After upgrading to Windows Ultimate, my iPhone 4s is not detected by Itunes (latest version) though my iPad 3 does and my old iPhone 3s are detected ok.

  • Help needed in seeing the material master.

    Hi all, How can i see the sales area info in a system. i.e. what material is assigned to what sales area, the mapping between the sales org., distr. channel, division and plants? I ask this because when I see some tabs/views in mm03, it asks me the s

  • Getwa_not_assigned in program SAPLFKV0

    Hello. When executing a SAP program i get the following error. Can someone tell me which SAP notes to implement. The details of the dump are as follows. GETWA_NOT_ASSIGNED Short text Field symbol has not yet been assigned. What happened? Error in the

  • VLAN Map

    Does anyone know if VLAN Maps are supported in CAT OS? I have found that they are supported in the 3550, 4500, and 6509 running IOS but would like to know ALL of the devices they are supported in. Thanks for the help, Brian

  • Inbuilt speakers, microphone & SD card reader slot is not working from day one

    Dear friend I bought my HP mini (model no. Hp Mini 110-3009TU; Sr. No. CNC02139GY) on 14th august 2010 from Home Comforts, MP Nagar Bhaopl, Madhya Pradesh, India. I bought it without any operating system and installed Linux [Ubuntu 10.04 (lucid)] on