Applescript Rules Don't Work in 10.8 Mail.app

Very simple thing Im trying to do here. Set up a rules to run a simple growl notification script when a new mail with a vertain subject arrives. This script works perfectly file in the editor and runs file outside of the mail.app.
Set to to run as a rule using the run actionscript option in mail.app - but it will never run.
Why would this script run fine outside of mail.app, but not as an actionscript rule?
tell application "System Events"
    set isRunning to (count of (every process whose bundle identifier is "com.Growl.GrowlHelperApp")) > 0
end tell
if isRunning then
    tell application id "com.Growl.GrowlHelperApp"
        -- Make a list of all the notification types
        -- that this script will ever send:
        set the allNotificationsList to ¬
            {"Payment Received"}
        -- Make a list of the notifications
        -- that will be enabled by default.     
        -- Those not enabled by default can be enabled later
        -- in the 'Applications' tab of the growl prefpane.
        set the enabledNotificationsList to ¬
            {"Payment Received"}
        -- Register our script with growl.
        -- You can optionally (as here) set a default icon
        -- for this script's notifications.
        register as application ¬
            "PayPal Alert" all notifications allNotificationsList ¬
            default notifications enabledNotificationsList ¬
        --       Send a Notification...
        notify with name ¬
            "Payment Received" title ¬
            "Payment Received" description ¬
            "You have received a payment." application name "PayPal Alert"
    end tell
end if

system preferences>keyboard>keyboard shortcuts doesn't give you anything?

Similar Messages

  • Exchange 2013: Inbox rules don't work on Journal Mailbox

    Hello,
    I've Exchange 2013 server with 2 databases:
    * First database has all user mailboxes & is journaled to second database
    * Second database has only 1 mailbox: Journal which collects all messages send / received  from / to first database.
    I made Inbox Rules on Journal Mailbox  to delete unnecessary messages e.g. :
    * HealthMailbox messages with Subject: Client submission probe
    * [email protected] messages with Subject: Inbound proxy probe.
    I noticed that these rules don't work. Why ?
    best regards Janusz Such

    Hi,
    How do you create these Inbox Rules on journal Mailbox? Please share the detailed rule content here and we can check whether the rule was created correctly or not.
    Instead of journaling all mailboxes residing on a mailbox database, I suggest we can configure journal rules to match your organization's needs by journaling individual recipients or members of distribution groups. For more information about
    journal rules, please refer to:
    https://technet.microsoft.com/en-us/library/jj651670%28v=exchg.150%29.aspx?f=255&MSPPError=-2147217396
    Regards,
    Winnie Liang
    TechNet Community Support

  • Hotmail account not working on Yosemite's Mail app

    I've tried everything I've found on the internet so far trying to get my hotmail account to work the way it was before my update to Yosemite, with no success. A few days ago it stopped syncing messages properly, and now it just shows them as downloading but it never finishes the syncing.
    I even left it working overnight with the mail app open, nothing else, prevented from going to sleep mode or shutting down, and it kind of worked, downloading some of the messages that were pending, but others just won't do it no matter what. I've tried Deleting the Account, restarting and Adding it again, also tried changing the imap server information to different options I've found, no difference.
    I also tried Outlook for Mac with all my accounts, and the hotmail account seemed to work better which means the problem is between Mac Mail and the Hotmail account itself. The problem is I don't want to use Outlook for Mac because showed other problems with my Gmail accounts, which renders it unsuitable to handle all my mail accounts. Apple Mail was flawless until my update to Yosemite, not cool.
    Does anybody have the same issue?
    Thanks!

    Same here.  I, too, have tried everything, including removing and re-adding the Hotmail account and SMTP servers, rebooting, you name it.  Some folders seem to sync sometimes, but some do not ever.  The main inbox does not sync at all.  In addition, the problem seems to be strictly with Apple Mail on my iMac and MacBook Pro.  The issue does not occur on my iPhone 6 or iPad Mini.  I was very pleased with Apple Mail until now.

  • TS3899 Hotmail account not working in iPhone 5 mail app

    At first I thought it was a COS, College of the Sequoias,  as in the college I'm going to,  Hotmail situation BUT  it turns out it's a Hotmail in general situation because my other Hotmail account doesn't show my inbox or sent mail at all. I sent up my Hotmail account properly, go to it on the mail app, click on it and the inbox is empty. So is the sent box. Go to hotmail on the browser..there's all my mail! Just not in my Hotmail account in the mail app! I tried to set  my Hotmail account on Jennifer's iPhone 4S.. No luck. Same thing happened when I tried on mum's iPad!
    The strange thing is my COS hotmail account WAS set up on their BEFORE then iOS6 update just flawlessly. I get my iPhone 5 and decide to delete my email accounts from the iPad now that I have my phone. When hotmail decided to go all wonky I tried resynchronize my COS hotmail on the iPad again because I know it worked there. But I had updated the software since then. Thus it not working now!
    My gmail and yahoo accounts  are working flawlessly on my mail app however the Hotmail..not so much! I've been doing some research on the net..could the update be the problem?? If so, I can't wait for the iOS 7 software update!

    Same here.  I, too, have tried everything, including removing and re-adding the Hotmail account and SMTP servers, rebooting, you name it.  Some folders seem to sync sometimes, but some do not ever.  The main inbox does not sync at all.  In addition, the problem seems to be strictly with Apple Mail on my iMac and MacBook Pro.  The issue does not occur on my iPhone 6 or iPad Mini.  I was very pleased with Apple Mail until now.

  • Mail Rules don't work in Mavericks

    It seems with the update to 10.9 Mavericks Mail rules no longer work. My email address was harvested by spamers and I have been using rules to weed throught the 100's of emails that I receive each day.
    Russian Brides, Vigra, Learn a new language get moved into the trash when delievered. Now nothing happens.
    I just tried to write a new rule and when I clicked the Prefs pannel I got the spinning cursor. After waiting for some time I did a force quit only to find that Mail was not responding.
    Anyone have any ideas? I did not see any major changes with Mail and Mavericks so I'm not sure why it's been effected.
    MD

    You might condider using an Applescript with Mail Rules.
    Here's one that I use (Use whitelist to not move to spam):
    (Just edit to your junk or whitelist)
    Note:  The Applescripit must be saved to: ~/Library/Application Scripts/com.apple.mail/
    The rule:
    The AppleScript:
    using terms from application "Mail"
              on perform mail action with messages theMessages
                        tell application "Mail"
                                  repeat with theMessage in theMessages
                                            set theSender to (sender of theMessage)
                                            set theReplyto to (reply to of theMessage)
                                            set theSubject to (subject of theMessage)
                                            set theHeader to (all headers of theMessage)
                                            set theContent to (source of theMessage as string)
                                            set theAccount to (account of mailbox of theMessage)
                                            if my blacklist(theSender, theReplyto, theSubject, theHeader, theContent) ¬
                                                      and not my whitelist(theSender, theHeader) then
                                                      my moveToJunkFolder(theMessage, theAccount)
                                            end if
                                  end repeat
                        end tell
              end perform mail action with messages
    end using terms from
    on blacklist(f, r, s, h, c)
              if h contains "X-YahooFilteredBulk" or ¬
                        h contains "Received-SPF: fail" or ¬
                        h contains "Received-SPF: softfail" or ¬
                        h contains "Received-SPF: error" or ¬
                        h contains "Received-SPF: permerror" or ¬
                        h contains "Received-SPF: temperror" or ¬
                        h contains "streamsendbouncer@" or ¬
                        s contains "[Bulk]" or ¬
                        f contains "Vigra.candianmeds.com" or ¬
                        f contains "[email protected]" or ¬
                        f contains ".cz" or ¬
                        r contains ".ma" then
                        return true
         end if
    end blacklist
    on whitelist(f, h)
              if f contains "aicpa" or ¬
              f contains "eWeek.com" or ¬
                        h contains "from macbook-air.local" then
                        return true
              else
                        return false
              end if
    end whitelist
    on moveToJunkFolder(m, a)
              tell application "Mail"
                        try
                                  set the read status of m to true
                                  set the junk mail status of m to true
                                  set theAccount to (account of mailbox of m)
                                  set mailbox of m to (mailbox "Junk" of a) --  Move to "Junk"
                        end try
              end tell
    end moveToJunkFolder

  • Interface names get swapped, but udev rules don't work

    I'm using the (apparently nightmarish) broadcom_wl module.
    This:
    https://wiki.archlinux.org/index.php/Br … every_time
    and this:
    https://wiki.archlinux.org/index.php/Co … es_varying
    don't work.  the 10-network.rules file I create is just completely ignored.
    Any ideas?
    Arch is my distro of choice for my desktop, but it is turning out to be an enormous PITA on my laptop.

    hmmm,
    NAME
               The name, a network interface should be renamed to. Or as a
               temporary workaraound, the name a device node should be named.
               Usually the kernel provides the defined node name, or even creates
               and removes the node before udev even receives any event. Changing
               the node name from the kernel's default creates inconsistencies and
               is not supported. If the kernel and NAME specify different names,
               an error will be logged. Udev is only expected to handle device
               node permissions and to create additional symlinks, not to change
               kernel-provided device node names. Instead of renaming a device
               node, SYMLINK should be used. Symlink names must never conflict
               with device node names, it will result in unpredictable behavior.
    try creating symlinks instead.

  • RV180W - Access Rules Don't Work

    Hi,
    We have a RV180W and the Access Rules will not work.  I'm trying to block HTTP and HTTPS services for a specific workstation on our LAN, but the access rules don't seem to be working.  I've also tried blocking different services as well as ANY service, but it's not working.  I've tried rebooting the router after adjusting settings; I've tried adjusting services from the Port Forwarding menu first; and a couple weeks ago, I upgraded the firmware to version 1.0.2.6 and repeated all the previous steps.  Nothing seems to be working.  So far the only solution I could come up with is to block the workstation's MAC address altogether, but I don't want that because I still need it to hit the internet for other services.
    Thank you,
    Ryan

    These are the Access Rules I've tried (firmware v1.0.2.6):
    Outbound:
    Inbound along with the auto added Port Forwarding setting:

  • Udev rules don't work

    I am on my laptop, where I am trying to write some udev rules.
    Firstly, as a test I tried to make a symlink when connecting my ext hd.
    $ udevadm info /dev/sdb
    E: ID_PART_TABLE_UUID=ea04843c-526e-45bf-9d45-beba1b180285
    $ cat /etc/udev/rules.d/61-rules.rules
    ENV{ID_PART_TABLE}=="ea04843c-526e-45bf-9d45-beba1b180285" NAME="lilalum"
    And well, nothing happens (there is no lilalum in /dev) when I plug in my ext hd.
    Secondly, my low bat rule doesn't work.
    $ cat /etc/udev/rules.d/99-lowbat.rules
    SUBSYSTEM=="power_supply", ATTR{status}=="Discharging", ATTR{capacity}=="10", RUN+="/usr/bin/systemctl suspend"
    SUBSYSTEM=="power_supply", ATTR{status}=="Discharging", ATTR{capacity}=="9", RUN+="/usr/bin/systemctl suspend"
    SUBSYSTEM=="power_supply", ATTR{status}=="Discharging", ATTR{capacity}=="8", RUN+="/usr/bin/systemctl suspend"
    It just doesn't do anything when the battery gets that low, and no the battery did not skip both 10, 9 and 8 percent.
    Last edited by Ploppz (2014-05-03 12:41:02)

    Ah... thanks, it works now!
    One more small issue... I tried writing a test to detect when the charger of my laptop gets plugged in or out, I put it in 61-rules.rules
    SUBSYSTEM=="power_supply", RUN+="/usr/bin/touch /home/ploppz/charger"
    The battery does send signals to udev:
    $ udevadm monitor
    monitor will print the received events for:
    UDEV - the event which udev sends out after rule processing
    KERNEL - the kernel uevent
    # Plugging out:
    KERNEL[944.333548] change /devices/platform/ACPI0003:00/power_supply/AC (power_supply)
    UDEV [944.340228] change /devices/platform/ACPI0003:00/power_supply/AC (power_supply)
    KERNEL[944.426599] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    UDEV [944.428599] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    KERNEL[944.470830] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    UDEV [944.472781] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    # Plugging in:
    KERNEL[950.317263] change /devices/platform/ACPI0003:00/power_supply/AC (power_supply)
    KERNEL[950.331752] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    UDEV [950.332023] change /devices/platform/ACPI0003:00/power_supply/AC (power_supply)
    KERNEL[950.332576] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    UDEV [950.333609] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    UDEV [950.334891] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    I also tried putting it in 99-lowbat.rules, stilll no luck. I'm also wondering whether udev reads all the rules every time an event happens, or if it caches them such that when I write a rule, I'll have to either wait a bit or do some action to update the rules cache?

  • AI CS6 Ruler don't work

    Dear Madam or Sir,
     I work with AI CS6. Now the ruler does't work at all.
    If I pull the ruler on the page it disappears. or if it is there I cant mark it and put it aside.
    I look forward to hearing from you!
    Morteza Ariana

    You need to provide system information. In any case, this question is best asked in teh AI forum.
    Mylenium

  • Rules not working any more in mail.app

    Hello,
    in my MBP yosemite ( Exchange mail ), I configured some rules. They used to work fine . But since this morning, I noticed that my rules are not working any more.
    I checked on console log and noticed the Assertion Failure when applying manually the rules :
    Dec 19 10:35:42 Ph3NyX Mail[1382]: *** Assertion failure in -[MFEWSStore _copyMessagesByID:toStore:settingFlags:newMessages:error:], /SourceCache/Mail/Mail-1993/MailFramework/EWS/MFEWSStore.m:337
    Dec 19 10:35:42 Ph3NyX Mail[1382]: exception raised in routeMessages: Destination store does not have a folder ID
    Can you please help me to fix this ?
    Thanks a lot.
    Best regards,
    Omega BK

    I don't know if its connected but I also just noticed a problem. In my case all the rules I had set have changed so that they apply after 7days (rather than the 30 days I had originally set). I can't get them to change back no matter how may times I try.

  • Creative Audigy 2 ZS - ASIO don't work in Vista 64 bit APPs

    ;C Hello. I have the Creative Audigy 2 ZS card and Vista 64 bit OS. My problem: don't work ASIO in 64 bit applications, such as?cakewalk sonar 8 (64bit), Guitar Rig (64bit) etc. In options of these applications ASIO not available, but in 32 bit version of applications Creative ASIO is visible. I used all drivers from Creative Download Page for Audigy 2 ZS, even beta, but problem still actually. How it is possible to solve the given problem? Sorry for my english.

    ?I was having the same problem like your having, I have the X-Fi XtrememMusic soundcard, Vista 64-Bit OS and SONAR Home Studio 64-Bit. I could not get the Creative ASIO to load and activate. I now use the Cakewalk Driver Mode (below)?to switch between mode easy now without any problems.
    This may or not work, Below is a separate program by cakewalk ?"Cakewalk Driver Mode" that forces?when selected the ASIO, ?WDM/KS and MME 32-Bit modes.
    Just install and before going into your SONAR software, use the "Cakewalk Driver Mode" to see if your software is listed. Select that software your using and then select ASIO, click apply and go into your SONAR software.
    If your software is NOT listed, this software will not work, But, try it out to see if this works.
    Cakewalk Driver Mode :
    http://www.cakewalk.com/support/sonar/drivermode.zip
    Message Edited by freesky on 03-7-2009 0:4 AMMessage Edited by freesky on 03-7-2009 0:2 [email protected]

  • Can't setup hotmail to work with the default mail app

    just got a G2 to replace an old droid phone and I cannot get Hotmail to work. It complains about invalid login information, even though the user name and pswd are correct. has anyone gotten this to work? I don't want to use the Hotmail app as I have multiple email accounts that work just fine and want a single app to read them all. never had any problems with this on several prior phones.

    yes, that fixed it. thanks.
    please note that this change is made to outlook.com via web site, and not as part of adding the account to the phone.
    Mike
    >> Personal information removed to comply with the Verizon Wireless Terms of Service <<
    Edited by:  Verizon Moderator

  • Rules don't work in email

    Hello,
    I have applied rules in Mail, to delete mail that contains certain words, but they only work when I manually click apply rules.  Shouldn't it happen automatically?  I want  junk mail to be deleted as soon as it arrives.  Don't want to view it at all.  Just want it to go away.  This is with AOL mail, no .me mail.  Any help would be greatly appreciated.
    thanks,
    donald

    Hello,
    I have applied rules in Mail, to delete mail that contains certain words, but they only work when I manually click apply rules.  Shouldn't it happen automatically?  I want  junk mail to be deleted as soon as it arrives.  Don't want to view it at all.  Just want it to go away.  This is with AOL mail, no .me mail.  Any help would be greatly appreciated.
    thanks,
    donald

  • Hardware Rules don't work - failed to return a task

    I am trying to make some post-imaging changes and though I'd give the Hardware Rules a go ( which I haven't used for a long, long time .. not in ZCM at least ). I am not getting an error similar to :
    http://forums.novell.com/novell/nove...rror-91-a.html
    Except for mine doesn't have an error code, it just says "Error: Failed to return a task" when I check for work to do manually ( F9 when running img on the device ). This device has been factory imaged using the image supplied with Zenworks agent installed and zac fsg -d was done before hutdown. I am not sure if that matters or not as I belive h/w rules are supposed to apply to both registered and non-registered devices ?
    Anyway, here is a pbserv.log:
    Mon Jan 9 18:49:12 2012 -- [LicenseCheck] Checking Imaging License
    Mon Jan 9 18:49:12 2012 -- [RNT] Server GUID is: 96cbb868c5389a6370fa25cae0053449
    Mon Jan 9 18:49:12 2012 -- [RNT] Imaging License Info: 1
    Mon Jan 9 18:49:12 2012 -- [LC] open connection, 10.129.50.10
    Mon Jan 9 18:49:12 2012 -- [PCV] received PROXY_CMD_VERSION
    Mon Jan 9 18:49:12 2012 -- [HC] versions: 10, 10, 103305
    Mon Jan 9 18:49:12 2012 -- [PCV] done PROXY_CMD_VERSION
    Mon Jan 9 18:49:12 2012 -- [PCGNT] received PROXY_CMD_GET_NEXT_STEP
    Mon Jan 9 18:49:12 2012 -- [RNT] WS GUID = "db6f55286cb56c4f8b4ce1267104188e"
    Mon Jan 9 18:49:12 2012 -- [RNT] GWIL = 5176
    Mon Jan 9 18:49:12 2012 -- [RNT] Received Workstation Information:
    Dumping Workstation Information:
    WorkstationInformation.signature ............ ZENWSINF
    WorkstationInformation.version .............. 6
    WorkstationInformation.length ............... 5176
    WorkstationInformation.Chipset .............. Intel(R) Corporation 1204 Mhz
    WorkstationInformation.Video ................ Intel Corporation Unknown device 0x0046
    WorkstationInformation.Network .............. Intel Corporation Unknown device 0x0082
    WorkstationInformation.Soundcard ............ Intel Corporation Unknown device 0x3B56
    WorkstationInformation.Diskcontroller ....... IDE
    WorkstationInformation.MACAddress............ 20:6a:8a:64:ff:8a
    WorkstationInformation.ipAddress ............ 10.129.50.10
    WorkstationInformation.BiosAssetTag ......... Base Board Asset Tag
    WorkstationInformation.BiosSerialnumber ..... 14704211
    WorkstationInformation.BiosVersion .......... INSYDE V1.24 05/06/2011
    WorkstationInformation.SystemManufacturer ... Acer
    WorkstationInformation.ProductName .......... Aspire One 753
    WorkstationInformation.HarddriveSizeMB ...... 305245
    WorkstationInformation.RAM .................. 4096
    WorkstationInformation.BootMedia ............ 3
    WorkstationInformation.zenPartitionType...... 0x00
    Mon Jan 9 18:49:12 2012 -- [RNT] PSI size = 164
    Mon Jan 9 18:49:12 2012 -- [RNT] Received PrebootState Information:
    Dumping PrebootStateInformation:
    PrebootStateInformation.signature ............ ZENPBINF
    Structure Version ... 3
    Structure Length ... 164
    Version ............... 0
    Flags ................. 0
    State ................. 4
    Tree ID ................
    Job ID ................
    Task ID ................ 0
    Task Completion Code ... 0
    Mon Jan 9 18:49:12 2012 -- [RNT] Error String:Err Fie ortr ak
    Mon Jan 9 18:49:12 2012 -- [RNT] Server GUID is: 96cbb868c5389a6370fa25cae0053449
    Mon Jan 9 18:49:12 2012 -- [RNT] Error SGNT: 2003
    Mon Jan 9 18:49:12 2012 -- [RNT] GNT returned 2003
    Mon Jan 9 18:49:12 2012 -- [RNT] Sending PrebootState Information:
    Dumping PrebootStateInformation:
    PrebootStateInformation.signature ............ ZENPBINF
    Structure Version ... 3
    Structure Length ... 164
    Version ............... 0
    Flags ................. 0
    State ................. 4
    Tree ID ................
    Job ID ................
    Task ID ................ 0
    Task Completion Code ... 0
    Mon Jan 9 18:49:12 2012 -- [PCGNT] done PROXY_CMD_GET_NEXT_STEP
    Mon Jan 9 18:49:12 2012 -- [PCC] received PROXY_CMD_CLOSE
    Mon Jan 9 18:49:12 2012 -- [PCC] done PROXY_CMD_CLOSE
    Mon Jan 9 18:49:12 2012 -- [LC] close connection, 10.129.50.10
    Mon Jan 9 18:49:12 2012 -- [ECC] CS
    Now I wonder what that Error SGNT might mean ..
    Originally I wanted to push just a linked application bundle ( a batch script to run ) but eventually tried adding our standard base image to no avail.
    When I try to apply the same imaging bundle to a different notebook ( using a different h/w rule ) - clearly using the right ProductName or BiosSerialnumber - it simply returns "No work to do". Which is better than failing to return a task but still .. doesn't do any work, really. Here it is:
    Mon Jan 9 19:00:37 2012 -- [LicenseCheck] Checking Imaging License
    Mon Jan 9 19:00:37 2012 -- [RNT] Server GUID is: 96cbb868c5389a6370fa25cae0053449
    Mon Jan 9 19:00:37 2012 -- [RNT] Imaging License Info: 1
    Mon Jan 9 19:00:37 2012 -- [LC] open connection, 10.129.50.11
    Mon Jan 9 19:00:37 2012 -- [PCV] received PROXY_CMD_VERSION
    Mon Jan 9 19:00:37 2012 -- [HC] versions: 10, 10, 103305
    Mon Jan 9 19:00:37 2012 -- [PCV] done PROXY_CMD_VERSION
    Mon Jan 9 19:00:37 2012 -- [PCGNT] received PROXY_CMD_GET_NEXT_STEP
    Mon Jan 9 19:00:37 2012 -- [RNT] WS GUID = "44398adf69915a4c8de5a15589ffd679"
    Mon Jan 9 19:00:37 2012 -- [RNT] GWIL = 5176
    Mon Jan 9 19:00:37 2012 -- [RNT] Received Workstation Information:
    Dumping Workstation Information:
    WorkstationInformation.signature ............ ZENWSINF
    WorkstationInformation.version .............. 6
    WorkstationInformation.length ............... 5176
    WorkstationInformation.Chipset .............. Intel(R) Corporation Pentium M processor 1200 Mhz
    WorkstationInformation.Video ................ Intel Corporation Unknown device 0x2A43
    WorkstationInformation.Network .............. Intel Corporation Unknown device 0x422C
    WorkstationInformation.Soundcard ............ Intel Corporation HD Audio Controller
    WorkstationInformation.Diskcontroller ....... IDE
    WorkstationInformation.MACAddress............ 60:eb:69:35:5d:2d
    WorkstationInformation.ipAddress ............ 10.129.50.11
    WorkstationInformation.BiosAssetTag ......... Base Board Asset Tag
    WorkstationInformation.BiosSerialnumber ..... 10102849
    WorkstationInformation.BiosVersion .......... INSYDE v1.3310 03/25/2010
    WorkstationInformation.SystemManufacturer ... Acer
    WorkstationInformation.ProductName .......... AO752
    WorkstationInformation.HarddriveSizeMB ...... 238475
    WorkstationInformation.RAM .................. 2048
    WorkstationInformation.BootMedia ............ 3
    WorkstationInformation.zenPartitionType...... 0x00
    Mon Jan 9 19:00:37 2012 -- [RNT] PSI size = 164
    Mon Jan 9 19:00:37 2012 -- [RNT] Received PrebootState Information:
    Dumping PrebootStateInformation:
    PrebootStateInformation.signature ............ ZENPBINF
    Structure Version ... 3
    Structure Length ... 164
    Version ............... 0
    Flags ................. 0
    State ................. 0
    Tree ID ................ c7ebeac25e25b763ad08e6c18bd67b44
    Job ID ................
    Task ID ................ 0
    Task Completion Code ... 0
    Mon Jan 9 19:00:37 2012 -- [RNT] Error String:N okt o
    Mon Jan 9 19:00:37 2012 -- [RNT] Server GUID is: 96cbb868c5389a6370fa25cae0053449
    Mon Jan 9 19:00:37 2012 -- [RNT] GNT returned 0
    Mon Jan 9 19:00:37 2012 -- [RNT] Sending PrebootState Information:
    Dumping PrebootStateInformation:
    PrebootStateInformation.signature ............ ZENPBINF
    Structure Version ... 3
    Structure Length ... 164
    Version ............... 0
    Flags ................. 0
    State ................. 0
    Tree ID ................ c7ebeac25e25b763ad08e6c18bd67b44
    Job ID ................
    Task ID ................ 0
    Task Completion Code ... 0
    Mon Jan 9 19:00:37 2012 -- [RNT] XML Size = 85
    Mon Jan 9 19:00:37 2012 -- [RNT] XML is = <ZENworks-Imaging><Type>Reboot-Command</Type><ErrCode>0</ErrCode></ZENworks-Imaging>
    Mon Jan 9 19:00:37 2012 -- [PCGNT] done PROXY_CMD_GET_NEXT_STEP
    Mon Jan 9 19:00:37 2012 -- [PCC] received PROXY_CMD_CLOSE
    Mon Jan 9 19:00:37 2012 -- [PCC] done PROXY_CMD_CLOSE
    Mon Jan 9 19:00:37 2012 -- [LC] close connection, 10.129.50.11
    Mon Jan 9 19:00:37 2012 -- [ECC] CS
    Am I missing something here ?

    Try Clearing the ZISD on the device and see if it follows the rules.
    If so, we can go from there..............
    On 1/9/2012 2:16 AM, atrofimov wrote:
    >
    > I am trying to make some post-imaging changes and though I'd give the
    > Hardware Rules a go ( which I haven't used for a long, long time .. not
    > in ZCM at least ). I am not getting an error similar to :
    >
    > http://forums.novell.com/novell/nove...rror-91-a.html
    >
    > Except for mine doesn't have an error code, it just says "Error: Failed
    > to return a task" when I check for work to do manually ( F9 when running
    > img on the device ). This device has been factory imaged using the image
    > supplied with Zenworks agent installed and zac fsg -d was done before
    > hutdown. I am not sure if that matters or not as I belive h/w rules are
    > supposed to apply to both registered and non-registered devices ?
    >
    > Anyway, here is a pbserv.log:
    >> Mon Jan 9 18:49:12 2012 -- [LicenseCheck] Checking Imaging License
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Server GUID is:
    >> 96cbb868c5389a6370fa25cae0053449
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Imaging License Info: 1
    >> Mon Jan 9 18:49:12 2012 -- [LC] open connection, 10.129.50.10
    >> Mon Jan 9 18:49:12 2012 -- [PCV] received PROXY_CMD_VERSION
    >> Mon Jan 9 18:49:12 2012 -- [HC] versions: 10, 10, 103305
    >> Mon Jan 9 18:49:12 2012 -- [PCV] done PROXY_CMD_VERSION
    >> Mon Jan 9 18:49:12 2012 -- [PCGNT] received PROXY_CMD_GET_NEXT_STEP
    >> Mon Jan 9 18:49:12 2012 -- [RNT] WS GUID =
    >> "db6f55286cb56c4f8b4ce1267104188e"
    >> Mon Jan 9 18:49:12 2012 -- [RNT] GWIL = 5176
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Received Workstation Information:
    >> Dumping Workstation Information:
    >> WorkstationInformation.signature ............ ZENWSINF
    >> WorkstationInformation.version .............. 6
    >> WorkstationInformation.length ............... 5176
    >> WorkstationInformation.Chipset .............. Intel(R) Corporation
    >> 1204 Mhz
    >> WorkstationInformation.Video ................ Intel Corporation
    >> Unknown device 0x0046
    >> WorkstationInformation.Network .............. Intel Corporation
    >> Unknown device 0x0082
    >> WorkstationInformation.Soundcard ............ Intel Corporation
    >> Unknown device 0x3B56
    >> WorkstationInformation.Diskcontroller ....... IDE
    >> WorkstationInformation.MACAddress............ 20:6a:8a:64:ff:8a
    >> WorkstationInformation.ipAddress ............ 10.129.50.10
    >> WorkstationInformation.BiosAssetTag ......... Base Board Asset Tag
    >> WorkstationInformation.BiosSerialnumber ..... 14704211
    >> WorkstationInformation.BiosVersion .......... INSYDE V1.24
    >> 05/06/2011
    >> WorkstationInformation.SystemManufacturer ... Acer
    >> WorkstationInformation.ProductName .......... Aspire One 753
    >> WorkstationInformation.HarddriveSizeMB ...... 305245
    >> WorkstationInformation.RAM .................. 4096
    >> WorkstationInformation.BootMedia ............ 3
    >> WorkstationInformation.zenPartitionType...... 0x00
    >> Mon Jan 9 18:49:12 2012 -- [RNT] PSI size = 164
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Received PrebootState Information:
    >> Dumping PrebootStateInformation:
    >> PrebootStateInformation.signature ............ ZENPBINF
    >> Structure Version ... 3
    >> Structure Length ... 164
    >> Version ............... 0
    >> Flags ................. 0
    >> State ................. 4
    >> Tree ID ................
    >> Job ID ................
    >> Task ID ................ 0
    >> Task Completion Code ... 0
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Error String:Err Fie ortr ak
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Server GUID is:
    >> 96cbb868c5389a6370fa25cae0053449
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Error SGNT: 2003
    >> Mon Jan 9 18:49:12 2012 -- [RNT] GNT returned 2003
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Sending PrebootState Information:
    >> Dumping PrebootStateInformation:
    >> PrebootStateInformation.signature ............ ZENPBINF
    >> Structure Version ... 3
    >> Structure Length ... 164
    >> Version ............... 0
    >> Flags ................. 0
    >> State ................. 4
    >> Tree ID ................
    >> Job ID ................
    >> Task ID ................ 0
    >> Task Completion Code ... 0
    >> Mon Jan 9 18:49:12 2012 -- [PCGNT] done PROXY_CMD_GET_NEXT_STEP
    >> Mon Jan 9 18:49:12 2012 -- [PCC] received PROXY_CMD_CLOSE
    >> Mon Jan 9 18:49:12 2012 -- [PCC] done PROXY_CMD_CLOSE
    >> Mon Jan 9 18:49:12 2012 -- [LC] close connection, 10.129.50.10
    >> Mon Jan 9 18:49:12 2012 -- [ECC] CS
    > Now I wonder what that Error SGNT might mean ..
    >
    > Originally I wanted to push just a linked application bundle ( a batch
    > script to run ) but eventually tried adding our standard base image to
    > no avail.
    >
    > When I try to apply the same imaging bundle to a different notebook (
    > using a different h/w rule ) - clearly using the right ProductName or
    > BiosSerialnumber - it simply returns "No work to do". Which is better
    > than failing to return a task but still .. doesn't do any work, really.
    > Here it is:
    >> Mon Jan 9 19:00:37 2012 -- [LicenseCheck] Checking Imaging License
    >> Mon Jan 9 19:00:37 2012 -- [RNT] Server GUID is:
    >> 96cbb868c5389a6370fa25cae0053449
    >> Mon Jan 9 19:00:37 2012 -- [RNT] Imaging License Info: 1
    >> Mon Jan 9 19:00:37 2012 -- [LC] open connection, 10.129.50.11
    >> Mon Jan 9 19:00:37 2012 -- [PCV] received PROXY_CMD_VERSION
    >> Mon Jan 9 19:00:37 2012 -- [HC] versions: 10, 10, 103305
    >> Mon Jan 9 19:00:37 2012 -- [PCV] done PROXY_CMD_VERSION
    >> Mon Jan 9 19:00:37 2012 -- [PCGNT] received PROXY_CMD_GET_NEXT_STEP
    >> Mon Jan 9 19:00:37 2012 -- [RNT] WS GUID =
    >> "44398adf69915a4c8de5a15589ffd679"
    >> Mon Jan 9 19:00:37 2012 -- [RNT] GWIL = 5176
    >> Mon Jan 9 19:00:37 2012 -- [RNT] Received Workstation Information:
    >> Dumping Workstation Information:
    >> WorkstationInformation.signature ............ ZENWSINF
    >> WorkstationInformation.version .............. 6
    >> WorkstationInformation.length ............... 5176
    >> WorkstationInformation.Chipset .............. Intel(R) Corporation
    >> Pentium M processor 1200 Mhz
    >> WorkstationInformation.Video ................ Intel Corporation
    >> Unknown device 0x2A43
    >> WorkstationInformation.Network .............. Intel Corporation
    >> Unknown device 0x422C
    >> WorkstationInformation.Soundcard ............ Intel Corporation HD
    >> Audio Controller
    >> WorkstationInformation.Diskcontroller ....... IDE
    >> WorkstationInformation.MACAddress............ 60:eb:69:35:5d:2d
    >> WorkstationInformation.ipAddress ............ 10.129.50.11
    >> WorkstationInformation.BiosAssetTag ......... Base Board Asset Tag
    >> WorkstationInformation.BiosSerialnumber ..... 10102849
    >> WorkstationInformation.BiosVersion .......... INSYDE v1.3310
    >> 03/25/2010
    >> WorkstationInformation.SystemManufacturer ... Acer
    >> WorkstationInformation.ProductName .......... AO752
    >> WorkstationInformation.HarddriveSizeMB ...... 238475
    >> WorkstationInformation.RAM .................. 2048
    >> WorkstationInformation.BootMedia ............ 3
    >> WorkstationInformation.zenPartitionType...... 0x00
    >> Mon Jan 9 19:00:37 2012 -- [RNT] PSI size = 164
    >> Mon Jan 9 19:00:37 2012 -- [RNT] Received PrebootState Information:
    >> Dumping PrebootStateInformation:
    >> PrebootStateInformation.signature ............ ZENPBINF
    >> Structure Version ... 3
    >> Structure Length ... 164
    >> Version ............... 0
    >> Flags ................. 0
    >> State ................. 0
    >> Tree ID ................ c7ebeac25e25b763ad08e6c18bd67b44
    >> Job ID ................
    >> Task ID ................ 0
    >> Task Completion Code ... 0
    >> Mon Jan 9 19:00:37 2012 -- [RNT] Error String:N okt o
    >> Mon Jan 9 19:00:37 2012 -- [RNT] Server GUID is:
    >> 96cbb868c5389a6370fa25cae0053449
    >> Mon Jan 9 19:00:37 2012 -- [RNT] GNT returned 0
    >> Mon Jan 9 19:00:37 2012 -- [RNT] Sending PrebootState Information:
    >> Dumping PrebootStateInformation:
    >> PrebootStateInformation.signature ............ ZENPBINF
    >> Structure Version ... 3
    >> Structure Length ... 164
    >> Version ............... 0
    >> Flags ................. 0
    >> State ................. 0
    >> Tree ID ................ c7ebeac25e25b763ad08e6c18bd67b44
    >> Job ID ................
    >> Task ID ................ 0
    >> Task Completion Code ... 0
    >> Mon Jan 9 19:00:37 2012 -- [RNT] XML Size = 85
    >> Mon Jan 9 19:00:37 2012 -- [RNT] XML is =
    >> <ZENworks-Imaging><Type>Reboot-Command</Type><ErrCode>0</ErrCode></ZENworks-Imaging>
    >> Mon Jan 9 19:00:37 2012 -- [PCGNT] done PROXY_CMD_GET_NEXT_STEP
    >> Mon Jan 9 19:00:37 2012 -- [PCC] received PROXY_CMD_CLOSE
    >> Mon Jan 9 19:00:37 2012 -- [PCC] done PROXY_CMD_CLOSE
    >> Mon Jan 9 19:00:37 2012 -- [LC] close connection, 10.129.50.11
    >> Mon Jan 9 19:00:37 2012 -- [ECC] CS
    >>
    >
    > Am I missing something here ?
    >
    >
    Craig Wilson - MCNE, MCSE, CCNA
    Novell Knowledge Partner
    Novell does not officially monitor these forums.
    Suggestions/Opinions/Statements made by me are solely my own.
    These thoughts may not be shared by either Novell or any rational human.

  • Rules don't work

    I am receiving lots of spam where the content of the message is an attachment. Each attachment is named differently, however, the content of the attachment always begin with the same words regarding new stock hitting the market. The attachments are ".gif". I have tried to tell "Rules" to look at all "content" and find those words and if found "delete" the e-mail. Nothing works. The auto function does nothing and manual does nothing. Below is the way each attachment begins. Any suggestions or advice on how to use Apple script??
    Best New Stock For Year 2006
    EXPLOSIVE PICK FOR OUR MEMBERS
    TRADING ALERT!!!

    Bruce, the mail you've forwarded me confirms what I told you before. There is no real text there, it's all just a pattern of bits that Mail cannot do anything with. It's like a FAX, you would need an OCR application to extract any text from it. Actually, I'm pretty sure the spammer did it on purpose precisely to avoid the junk filters.
    Save the attachment and open it with Preview or any other application capable of viewing it, and you'll see that you are unable to select any text, simply because there is no text there. It's just an image that your brain decodes as text, but the computer cannot do the same without the aid of OCR software.
    BTW, I have no idea why the first attempt to send you an email failed. Maybe we should start yet another "cannot send" or "mail I send does not arrive at the destination" thread about that...

Maybe you are looking for

  • Creating panels in different files and adding to main frame

    I'm trying to write panels in separate files so program is more modular and the files shorter. The panels don't appear in the main window at all. All I get appearing is the title bar. This is the basics of the code I've written: GuiMain.java // in ma

  • Inserted HTML does NOT push content when resized

    Hi, we are building a website for a hotel and are bound to include their channel manager module into the site. In order to do that, you have to follow these steps: 1. Paste JavaScript code into the head section to load the module. 2. Place a short li

  • Why does google chrome freeze and crash after installing mavericks?

    I use google chrome and after installing mavericks my chrome started moving slower and slower until it eventually froze.  The keyboard becomes locked and the mouse is just a pinwheel.  Cannot click on anything or force quit.  I end up powering it dow

  • Making quicktimes un-downloadable

    Is it possible, using compressor, to export quicktimes that are disabled for download? If not, how can I accomplish this?

  • How can I disable the new built-in PDF-viewer?

    Hi Folks, I recently got a strange problem with Nightly 15.0a1. All PDF documents are opened with the new built-in PDF viewer and it does not matter if it´s enabled or disabled - it just always opens and renders/loads the PDF file. But I want it to b