Help on compilig mars-nwe novell emulator

Hi, I am trying to compile mars-nwe on my archlinux box. But I got following error when compiling mars-nwe
make[1]: Entering directory `/home/b-qian/mars/mars-nwe-0.99.pl20.orig/obj'
rm -f Makefile.o
cp ../makefile.unx makefile.c
cc -E -DLINUX -DQTAINSYS -DUSE_GDBM -I.. makefile.c > Makefile.o
rm -f makefile.c
make -f Makefile.o n_all
make[2]: Entering directory `/home/b-qian/mars/mars-nwe-0.99.pl20.orig/obj'
Makefile.o:93: *** missing separator. Stop.
make[2]: Leaving directory `/home/b-qian/mars/mars-nwe-0.99.pl20.orig/obj'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/b-qian/mars/mars-nwe-0.99.pl20.orig/obj'
The errors are also reported in '/tmp/mars-nwe-0.99.pl20.orig.err'
=============================================================
make: *** [all] Error 1
I know that is the gcc4 problem, I try to install gcc3.3, and get same error.
make[1]: Entering directory `/home/b-qian/mars/mars-nwe-0.99.pl20.orig/mars-nwe-0.99.pl20.orig/obj'
make -f Makefile.o n_all
make[2]: Entering directory `/home/b-qian/mars/mars-nwe-0.99.pl20.orig/mars-nwe-0.99.pl20.orig/obj'
Makefile.o:93: *** missing separator (did you mean TAB instead of 8 spaces?). Stop.
make[2]: Leaving directory `/home/b-qian/mars/mars-nwe-0.99.pl20.orig/mars-nwe-0.99.pl20.orig/obj'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/b-qian/mars/mars-nwe-0.99.pl20.orig/mars-nwe-0.99.pl20.orig/obj'
The errors are also reported in '/tmp/mars-nwe-0.99.pl20.orig.err'
=============================================================
make: *** [all] Error 1
since I can compile it from debian woody, I decide to install gcc 2.95 to compile it,
But I got following error:
make[1]: Entering directory `/home/b-qian/mars/mars-nwe-0.99.pl20.orig/mars-nwe-0.99.pl20.orig/obj'
rm -f Makefile.o
cp ../makefile.unx makefile.c
cc -E -DLINUX -DQTAINSYS -DUSE_GDBM -I.. makefile.c > Makefile.o
rm -f makefile.c
make -f Makefile.o n_all
make[2]: Entering directory `/home/b-qian/mars/mars-nwe-0.99.pl20.orig/mars-nwe-0.99.pl20.orig/obj'
cc -c -pipe -Wall -D_GNU_SOURCE -DLINUX -DQTAINSYS -DUSE_GDBM -D_VERS_H_=0 -D_VERS_L_=99 -D_VERS_P_=20 ../nwserv.c
In file included from /usr/include/sys/types.h:270,
from /usr/include/stdlib.h:320,
from ../net.h:29,
from ../nwserv.c:21:
/usr/include/bits/pthreadtypes.h:69: warning: unnamed struct/union that defines no instances
cc -c -pipe -Wall -D_GNU_SOURCE -DLINUX -DQTAINSYS -DUSE_GDBM -D_VERS_H_=0 -D_VERS_L_=99 -D_VERS_P_=20 ../emutli.c
In file included from /usr/include/sys/types.h:270,
from /usr/include/stdlib.h:320,
from ../net.h:29,
from ../emutli.c:23:
/usr/include/bits/pthreadtypes.h:69: warning: unnamed struct/union that defines no instances
cc -c -pipe -Wall -D_GNU_SOURCE -DLINUX -DQTAINSYS -DUSE_GDBM -D_VERS_H_=0 -D_VERS_L_=99 -D_VERS_P_=20 ../net1.c
In file included from /usr/include/sys/types.h:270,
from /usr/include/stdlib.h:320,
from ../net.h:29,
from ../net1.c:20:
/usr/include/bits/pthreadtypes.h:69: warning: unnamed struct/union that defines no instances
cc -c -pipe -Wall -D_GNU_SOURCE -DLINUX -DQTAINSYS -DUSE_GDBM -D_VERS_H_=0 -D_VERS_L_=99 -D_VERS_P_=20 ../tools.c
In file included from /usr/include/sys/types.h:270,
from /usr/include/stdlib.h:320,
from ../net.h:29,
from ../tools.c:20:
/usr/include/bits/pthreadtypes.h:69: warning: unnamed struct/union that defines no instances
cc -c -pipe -Wall -D_GNU_SOURCE -DLINUX -DQTAINSYS -DUSE_GDBM -D_VERS_H_=0 -D_VERS_L_=99 -D_VERS_P_=20 ../emutli1.c
../emutli1.c:36: linux/config.h: No such file or directory
In file included from /usr/include/sys/types.h:270,
from /usr/include/stdlib.h:320,
from ../emutli1.c:31:
/usr/include/bits/pthreadtypes.h:69: warning: unnamed struct/union that defines no instances
../emutli1.c: In function `init_ipx':
../emutli1.c:343: `ipx_config_data' undeclared (first use in this function)
../emutli1.c:343: (Each undeclared identifier is reported only once
../emutli1.c:343: for each function it appears in.)
../emutli1.c:343: parse error before `cfgdata'
../emutli1.c:345: `cfgdata' undeclared (first use in this function)
make[2]: *** [emutli1.o] Error 1
make[2]: Leaving directory `/home/b-qian/mars/mars-nwe-0.99.pl20.orig/mars-nwe-0.99.pl20.orig/obj'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/b-qian/mars/mars-nwe-0.99.pl20.orig/mars-nwe-0.99.pl20.orig/obj'
I seems the header files are newer and something that gcc 2.95 didn't support.
I am a beginner and I cannot dig any further.
so, What can I do next ?
Last edited by bendany (2008-02-23 09:34:42)

those are makefile errors, it appears someone edited them with an editor that defaults to spaces
and or replaces tab with spaces,
make indentation is expected to be \t(TAB) spaces are not allowed
you can fix it by
sed -i /home/b-qian/mars/mars-nwe-0.99.pl20.orig/mars-nwe-0.99.pl20.orig/obj/Makefile.o -e "s/^ */\t/g"
as you said, you will need to try and compile this with an older version of gcc 4.2.3 will not compile this
it's full of errors, according to modern gcc and me. try it, it's kinda funny lol

Similar Messages

  • HELP! installed mara tick and documents to go deleted 'sheets'

    I installed mara tick and somehow it erased Documents to go, but only the excel part!  I really needed it it was half the reason I  bought the BB.  How do I bring sheets to go back.  Plase help!!
    Solved!
    Go to Solution.

    You actually don't have to delete the DocumentsToGo application first; just open WordToGo, and register the application again, and update to the latest version, which will get your SheetsToGo back installed.
    THEN, next time you get ready to use App Loader in DM again (to add an application or upgrade the OS), FIRST, search your PC for the DocumentsToGo.alx file, and delete it, any instances of that file.
    Then proceed with App loader.
    Message Edited by JSanders on 11-22-2008 11:47 PM
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Can anyone help decipher my etresoft report...please! mac slow as heck with yosemite!

    Macbook pro is so slow with yosemite (startup take 50 secs and programs lag/ spinning wheels, it's endless),
    Can anyone help with me decipher my etresoft report...please!
    I've tried all the resets and re-installs, nothing worked a bit!
    Much appreciated!
    C
    EtreCheck version: 2.1.8 (121)
    Report generated 7 March 2015 22:45:55 GMT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (15-inch, Mid 2012) (Technical Specifications)
        MacBook Pro - model: MacBookPro9,1
        1 2.6 GHz Intel Core i7 CPU: 4-core
        8 GB RAM Upgradeable
            BANK 0/DIMM0
                4 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                4 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 523
    Video Information: ℹ️
        Intel HD Graphics 4000
            Color LCD 1440 x 900
        NVIDIA GeForce GT 650M - VRAM: 1024 MB
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 0:3:26
    Disk Information: ℹ️
        APPLE HDD TOSHIBA MK7559GSXF disk0 : (750.16 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 748.93 GB (496.61 GB free)
                Encrypted AES-XTS Unlocked
                Core Storage: disk0s2 749.30 GB Online
        MATSHITADVD-R   UJ-8A8 
    USB Information: ℹ️
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Computer, Inc. IR Receiver
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. Apple Internal Keyboard / Trackpad
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/Toast 11 Titanium/Spin Doctor.app
        [not loaded]    com.hzsystems.terminus.driver (4) [Click for support]
            /Library/Application Support/HASP/kexts
        [not loaded]    com.aladdin.kext.aksfridge (1.0.2) [Click for support]
            /Library/Extensions
        [not loaded]    com.wacom.kext.ftdi (1 - SDK 10.10) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.roxio.BluRaySupport (1.1.6) [Click for support]
        [not loaded]    com.wacom.kext.wacomtablet (6.3.11 - SDK 10.10) [Click for support]
            /Users/[redacted]/Library/Services/ToastIt.service/Contents/MacOS
        [not loaded]    com.roxio.TDIXController (2.0) [Click for support]
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.divx.dms.agent.plist [Click for support]
        [loaded]    com.divx.update.agent.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [running]    com.wacom.wacomtablet.plist [Click for support]
        [loaded]    com.xrite.device.softwareupdate.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [loaded]    com.quark.quarkupdate.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [running]    com.c-command.SpamSieve.LaunchAgent.plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.spotify.webhelper.plist [Click for support]
    User Login Items: ℹ️
        Dropbox    Application  (/Applications/Dropbox.app)
    Internet Plug-ins: ℹ️
        JavaAppletPlugin: Version: Java 8 Update 40 Check version
        OVSHelper: Version: 1.1 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 3.3.3.1   - SDK 10.7 [Click for support]
        WacomTabletPlugin: Version: WacomTabletPlugin 2.1.0.6 - SDK 10.9 [Click for support]
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        DivX Web Player: Version: 3.2.4.1250 - SDK 10.6 [Click for support]
        LogMeIn: Version: 1.0.961 - SDK 10.7 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        LogMeInSafari32: Version: 1.0.961 - SDK 10.7 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        NP_2020Player_IKEA: Version: 5.0.94.1 - SDK 10.6 [Click for support]
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        SharePointBrowserPlugin: Version: 14.2.0 - SDK 10.6 [Click for support]
        Silverlight: Version: 5.1.20913.0 - SDK 10.6 [Click for support]
        MeetingJoinPlugin: Version: Unknown - SDK 10.6 [Click for support]
    Safari Extensions: ℹ️
        Pin It Button
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        Flip4Mac WMV  [Click for support]
        Java  [Click for support]
        Quark Update Preferences  [Click for support]
        WacomTablet  [Click for support]
    Time Machine: ℹ️
        Time Machine not configured!
    Top Processes by CPU: ℹ️
             8%    Dropbox
             4%    WindowServer
             1%    launchd
             0%    fontd
             0%    mds
    Top Processes by Memory: ℹ️
        155 MB    Safari
        103 MB    ocspd
        94 MB    Finder
        86 MB    Dropbox
        86 MB    com.apple.WebKit.WebContent
    Virtual Memory Information: ℹ️
        4.83 GB    Free RAM
        2.28 GB    Active RAM
        570 MB    Inactive RAM
        895 MB    Wired RAM
        1.19 GB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Mar 7, 2015, 10:37:14 PM    /Library/Logs/DiagnosticReports/WacomTabletDriver_2015-03-07-223714_[redacted]. crash
        Mar 7, 2015, 10:36:18 PM    Self test - passed
        Mar 7, 2015, 10:31:30 PM    /Library/Logs/DiagnosticReports/hasplmd_2015-03-07-223130_[redacted].crash
        Mar 7, 2015, 10:31:20 PM    /Library/Logs/DiagnosticReports/hasplmd_2015-03-07-223120_[redacted].crash
        Mar 7, 2015, 10:31:10 PM    /Library/Logs/DiagnosticReports/hasplmd_2015-03-07-223110_[redacted].crash
        Mar 7, 2015, 10:31:00 PM    /Library/Logs/DiagnosticReports/hasplmd_2015-03-07-223100_[redacted].crash
        Mar 7, 2015, 10:30:50 PM    /Library/Logs/DiagnosticReports/hasplmd_2015-03-07-223050_[redacted].crash
        Mar 7, 2015, 10:30:39 PM    /Library/Logs/DiagnosticReports/hasplmd_2015-03-07-223039_[redacted].crash
        Mar 7, 2015, 10:30:29 PM    /Library/Logs/DiagnosticReports/hasplmd_2015-03-07-223029_[redacted].crash
        Mar 7, 2015, 10:30:19 PM    /Library/Logs/DiagnosticReports/hasplmd_2015-03-07-223019_[redacted].crash
        Mar 7, 2015, 10:30:09 PM    /Library/Logs/DiagnosticReports/hasplmd_2015-03-07-223009_[redacted].crash
        Mar 7, 2015, 10:29:59 PM    /Library/Logs/DiagnosticReports/hasplmd_2015-03-07-222959_[redacted].crash
        Mar 7, 2015, 10:29:49 PM    /Library/Logs/DiagnosticReports/hasplmd_2015-03-07-222949_[redacted].crash
        Mar 7, 2015, 10:29:39 PM    /Library/Logs/DiagnosticReports/hasplmd_2015-03-07-222939_[redacted].crash
        Mar 7, 2015, 10:29:29 PM    /Library/Logs/DiagnosticReports/hasplmd_2015-03-07-222929_[redacted].crash
        Mar 7, 2015, 10:29:18 PM    /Library/Logs/DiagnosticReports/hasplmd_2015-03-07-222918_[redacted].crash
        Mar 7, 2015, 10:29:08 PM    /Library/Logs/DiagnosticReports/hasplmd_2015-03-07-222908_[redacted].crash
        Mar 7, 2015, 10:28:58 PM    /Library/Logs/DiagnosticReports/hasplmd_2015-03-07-222858_[redacted].crash
        Mar 7, 2015, 10:28:48 PM    /Library/Logs/DiagnosticReports/hasplmd_2015-03-07-222848_[redacted].crash
        Mar 7, 2015, 10:28:38 PM    /Library/Logs/DiagnosticReports/hasplmd_2015-03-07-222838_[redacted].crash
        Mar 7, 2015, 10:28:28 PM    /Library/Logs/DiagnosticReports/hasplmd_2015-03-07-222828_[redacted].crash
        Mar 7, 2015, 10:28:18 PM    /Library/Logs/DiagnosticReports/hasplmd_2015-03-07-222818_[redacted].crash
        Mar 7, 2015, 10:01:10 PM    /Library/Logs/DiagnosticReports/WacomTabletDriver_2015-03-07-220110_[redacted]. crash
        Mar 7, 2015, 09:49:54 PM    /Library/Logs/DiagnosticReports/WacomTabletDriver_2015-03-07-214954_[redacted]. crash
        Mar 7, 2015, 03:54:59 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/com.apple.WebKit.Plugin.64_201 5-03-07-155459_[redacted].crash
        Mar 7, 2015, 03:24:28 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_20 15-03-07-152428_[redacted].crash
        Mar 7, 2015, 03:23:36 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/NotificationCenter_2015-03-07- 152336_[redacted].crash
        Mar 5, 2015, 09:57:59 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/com.apple.WebKit.Plugin.64_201 5-03-05-215759_[redacted].crash
        Mar 5, 2015, 09:57:33 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/com.apple.WebKit.Plugin.64_201 5-03-05-215733_[redacted].crash
        Mar 5, 2015, 02:20:05 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/garcon_2015-03-05-142005_[reda cted].crash

    Start time: 20:36:24 03/08/15
    Revision: 1281
    Model Identifier: MacBookPro9,1
    System Version: OS X 10.10.2 (14C109)
    Kernel Version: Darwin 14.1.0
    Time since boot: 20 minutes
    UID: 501
    FileVault 2: On
    Energy (lifetime)
        kernel_task (UID 0): 7.41
    Trust settings: admin 1, user 4
    Firewall: On
    Diagnostic reports
        2015-02-17 quicklookd32 crash
        2015-02-18 com.apple.WebKit.Plugin.64 crash
        2015-02-19 quicklookd32 crash
        2015-02-23 com.apple.WebKit.Plugin.64 crash x2
        2015-02-23 quicklookd32 crash x2
        2015-02-24 com.apple.WebKit.Plugin.64 crash x3
        2015-02-25 com.apple.WebKit.Plugin.64 crash
        2015-02-27 com.apple.WebKit.Plugin.64 crash x2
        2015-02-28 com.apple.WebKit.Plugin.64 crash x2
        2015-03-02 garcon crash
        2015-03-03 Finder crash
        2015-03-03 garcon crash x2
        2015-03-03 quicklookd32 crash x7
        2015-03-04 Spotify Helper crash
        2015-03-04 com.apple.WebKit.Plugin.64 crash
        2015-03-04 garcon crash
        2015-03-05 com.apple.WebKit.Plugin.64 crash x2
        2015-03-05 garcon crash
        2015-03-07 NotificationCenter crash
        2015-03-07 WacomTabletDriver crash x3
        2015-03-07 com.apple.WebKit.Plugin.64 crash
        2015-03-07 com.apple.WebKit.WebContent crash
        2015-03-07 hasplmd crash x20
        2015-03-08 WacomTabletDriver crash x3
        2015-03-08 garcon crash
    HID errors: 5
    Kernel log
        Mar  8 14:24:17 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
        Mar  8 14:26:18 considerRebuildOfPrelinkedKernel com.huawei.driver.cdc_usb_bus triggered rebuild
        Mar  8 15:20:32 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
        Mar  8 15:20:32 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
        Mar  8 15:20:32 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
        Mar  8 15:20:32 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
        Mar  8 15:20:32 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
        Mar  8 15:22:25 Adobe Photoshop  (map: 0xffffff804ad57000) triggered DYLD shared region unnest for map: 0xffffff804ad57000, region 0x7fff95c00000->0x7fff95e00000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Mar  8 15:30:32 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
        Mar  8 15:30:32 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
        Mar  8 15:30:32 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
        Mar  8 15:30:32 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
        Mar  8 15:30:32 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
        Mar  8 16:53:39 usb_bus::rearm_notify: Failed to start notification pipe read - 0xe000404f (UNDEFINED)
        Mar  8 16:54:11 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
        Mar  8 16:54:11 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
        Mar  8 16:54:11 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
        Mar  8 16:54:11 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
        Mar  8 16:54:11 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
        Mar  8 18:07:32 **** [IOBluetoothHostControllerUSBTransport][BulkInReadHandler] -- Received kIOUSBHighSpeedSplitError error -- retrying: 1 -- 0x0000 ****
        Mar  8 18:07:32 **** [BroadcomBluetoothHostControllerUSBTransport][LMPLoggingBulkInReadHandler] -- Received kIOUSBHighSpeedSplitError error -- retrying: 1 -- 0x0000
        Mar  8 18:07:33 **** [IOBluetoothHostControllerUSBTransport][ClearFeatureBulkEndpointHalt] -- successfully post another read on Bulk pipe -- 0x0000 ****
        Mar  8 19:33:28 usb_bus::rearm_notify: Failed to start notification pipe read - 0xe000404f (UNDEFINED)
        Mar  8 19:45:42 Failed to load kCouldn't alloc class "IOFireWireIP"
        Mar  8 19:45:43 Can't load kext com.apple.driverCouldn't alloc class "AppleThunderboltIPService"
    System log
        Mar  8 17:39:12 Adobe Photoshop CS6: Unable to setup extension context - error: Couldn’t communicate with a helper application.
        Mar  8 18:30:10 sharingd: 18:30:10.309 : SDActivityAdvertiser::continuity:didFailToStartAdvertisingOfType:withError: Activity (The operation couldn’t be completed. (com.apple.identityservices.error error 200.))
        Mar  8 19:11:02 SpamSieveHelper: Error loading /Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QXPScript ingAdditions:  dlopen(/Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QX PScriptingAdditions, 262): no suitable image found.  Did find:
        /Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QXPScript ingAdditions: mach-o, but wrong architecture
        Mar  8 19:36:47 sharingd: 19:36:47.162 : SDConnectionManager:: XPC connection invalidated
        Mar  8 19:46:28 sharingd: 19:46:28.965 ERROR:     AQMEIO.cpp:400: _FindIOUnit: error -66680
        Mar  8 19:46:28 sharingd: 19:46:28.965 ERROR:     AQMEIO.cpp:400: _FindIOUnit: error -66680
        Mar  8 19:46:28 sharingd: 19:46:28.966 ERROR:     AQMEIO.cpp:400: _FindIOUnit: error -66680
        Mar  8 19:50:29 Adobe Photoshop CS6: Error loading /Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QXPScript ingAdditions:  dlopen(/Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QX PScriptingAdditions, 262): no suitable image found.  Did find:
        /Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QXPScript ingAdditions: mach-o, but wrong architecture
        Mar  8 20:10:02 Mail: CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Mar  8 20:10:02 Mail: CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Mar  8 20:10:09 Mail: CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Mar  8 20:10:09 Mail: CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Mar  8 20:10:14 Mail: CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Mar  8 20:10:14 Mail: CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Mar  8 20:10:27 Mail: 20:10:27.420 ERROR:     AQMEIO.cpp:400: _FindIOUnit: error -66680
        Mar  8 20:10:27 Mail: 20:10:27.421 ERROR:     AQMEIO.cpp:400: _FindIOUnit: error -66680
        Mar  8 20:10:27 Mail: 20:10:27.421 ERROR:     AQMEIO.cpp:400: _FindIOUnit: error -66680
        Mar  8 20:12:36 Adobe Photoshop CS6: Error loading /Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QXPScript ingAdditions:  dlopen(/Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QX PScriptingAdditions, 262): no suitable image found.  Did find:
        /Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QXPScript ingAdditions: mach-o, but wrong architecture
        Mar  8 20:18:55 SpamSieveHelper: Error loading /Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QXPScript ingAdditions:  dlopen(/Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QX PScriptingAdditions, 262): no suitable image found.  Did find:
        /Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QXPScript ingAdditions: mach-o, but wrong architecture
        Mar  8 20:18:57 Adobe Photoshop CS6: Error loading /Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QXPScript ingAdditions:  dlopen(/Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QX PScriptingAdditions, 262): no suitable image found.  Did find:
        /Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QXPScript ingAdditions: mach-o, but wrong architecture
    launchd log
        Mar  7 21:10:17 com.apple.xpc.launchd.domain.user.loginwindow.72.4294967295: Could not import service from caller: caller = WacomTabletDriv.210, service = com.wacom.WacomTouchDriver.103976, error = 134: Service cannot load in requested session
        Mar  7 21:10:57 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.233, service = com.evernote.EvernoteHelper, error = 119: Service is disabled
        Mar  7 21:10:57 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.233, service = com.hp.devicemonitor, error = 119: Service is disabled
        Mar  7 21:40:29 com.apple.xpc.launchd.user.501.100006.Aqua: Could not read path: path = //com.apple.ManagedClientAgent.enrollagent, error = 2: No such file or directory
        Mar  7 21:49:48 com.apple.xpc.launchd.domain.user.loginwindow.67.4294967295: Could not import service from caller: caller = WacomTabletDriv.177, service = com.wacom.WacomTouchDriver.103976, error = 134: Service cannot load in requested session
        Mar  7 21:49:56 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.205, service = com.evernote.EvernoteHelper, error = 119: Service is disabled
        Mar  7 21:49:56 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.205, service = com.hp.devicemonitor, error = 119: Service is disabled
        Mar  7 22:01:05 com.apple.xpc.launchd.domain.user.loginwindow.67.4294967295: Could not import service from caller: caller = WacomTabletDriv.175, service = com.wacom.WacomTouchDriver.103976, error = 134: Service cannot load in requested session
        Mar  7 22:01:12 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.195, service = com.evernote.EvernoteHelper, error = 119: Service is disabled
        Mar  7 22:01:12 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.195, service = com.hp.devicemonitor, error = 119: Service is disabled
        Mar  7 22:37:10 com.apple.xpc.launchd.domain.user.loginwindow.64.4294967295: Could not import service from caller: caller = WacomTabletDriv.172, service = com.wacom.WacomTouchDriver.103976, error = 134: Service cannot load in requested session
        Mar  7 22:37:15 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.190, service = com.evernote.EvernoteHelper, error = 119: Service is disabled
        Mar  7 22:37:15 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.190, service = com.hp.devicemonitor, error = 119: Service is disabled
        Mar  8 00:02:18 com.apple.xpc.launchd.domain.system: Could not read path: path = /Library/LaunchDaemons/com.aladdin.hasplmd.plist, error = 2: No such file or directory
        Mar  8 00:18:50 com.apple.xpc.launchd.domain.user.loginwindow.66.4294967295: Could not import service from caller: caller = WacomTabletDriv.177, service = com.wacom.WacomTouchDriver.103976, error = 134: Service cannot load in requested session
        Mar  8 00:19:02 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.195, service = com.evernote.EvernoteHelper, error = 119: Service is disabled
        Mar  8 00:19:02 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.195, service = com.hp.devicemonitor, error = 119: Service is disabled
    Console log
        Mar  7 22:17:56 osascript: Error loading /Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QXPScript ingAdditions:  dlopen(/Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QX PScriptingAdditions, 262): no suitable image found.  Did find:
        /Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QXPScript ingAdditions: mach-o, but wrong architecture
        Mar  7 22:27:53 osascript: Error loading /Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QXPScript ingAdditions:  dlopen(/Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QX PScriptingAdditions, 262): no suitable image found.  Did find:
        /Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QXPScript ingAdditions: mach-o, but wrong architecture
        Mar  7 22:44:43 osascript: Error loading /Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QXPScript ingAdditions:  dlopen(/Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QX PScriptingAdditions, 262): no suitable image found.  Did find:
        /Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QXPScript ingAdditions: mach-o, but wrong architecture
        Mar  7 22:59:46 osascript: Error loading /Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QXPScript ingAdditions:  dlopen(/Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QX PScriptingAdditions, 262): no suitable image found.  Did find:
        /Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QXPScript ingAdditions: mach-o, but wrong architecture
        Mar  7 23:56:23 osascript: Error loading /Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QXPScript ingAdditions:  dlopen(/Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QX PScriptingAdditions, 262): no suitable image found.  Did find:
        /Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents/MacOS/QXPScript ingAdditions: mach-o, but wrong architecture
        Mar  8 20:17:20 fontd: Failed to open read-only database, regenerating DB
    Loaded kernel extensions
        com.aladdin.kext.aksfridge (1.0.2)
    Daemons loaded
        com.adobe.fpsaud
        com.aladdin.aksusbd
        com.aladdin.hasplmd
        com.apple.watchdogd
        com.microsoft.office.licensing.helper
        com.oracle.java.Helper-Tool
        com.oracle.java.JavaUpdateHelper
        com.quark.quarkupdate
    Daemons disabled
        com.apple.mrt
    Login agents loaded
        com.apple.mrt.uiagent
        com.c-command.SpamSieve.LaunchAgent
        com.divx.dms.agent
        com.divx.update.agent
        com.google.keystone.user.agent
        com.oracle.java.Java-Updater
        com.skiptunes.skiptunes.Launcher
        com.spotify.webhelper
        com.wacom.wacomtablet
        com.xrite.device.softwareupdate.plist
    Login agents disabled
        com.adobe.AAM.Scheduler-1.0
    User agents disabled
        com.adobe.AAM.Scheduler-1.0
    Global login items
        /Library/CFMSupport/CNQL1213_ButtonManager.app
    Safari extensions
        Pin It Button
        - com.pinterest.extension
    Widgets
        Currency Converter
    iCloud errors
        bird 89
        cloudd 1
        CallHistorySyncHelper 1
    Continuity errors
        sharingd 12
        lsuseractivityd 9
    Restricted files: 223
    Lockfiles: 54
    Contents of /Library/LaunchAgents/com.divx.dms.agent.plist
        - mod date: Nov 17 08:11:48 2014
        - checksum: 637650676
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.divx.dms.agent</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/DivX/DivXMediaServer.app/Contents/MacOS/DivXMediaServer</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.divx.update.agent.plist
        - mod date: May 19 22:24:29 2014
        - checksum: 3867571547
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.divx.update.agent</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/DivX/DivXUpdate.app/Contents/MacOS/DivXUpdate</string>
        <string>/silent</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>10800</integer>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.oracle.java.Java-Updater.plist
        - mod date: Jul 26 02:57:15 2014
        - checksum: 832789739
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.oracle.java.Java-Updater</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Resources/Java Updater.app/Contents/MacOS/Java Updater</string>
        <string>-bgcheck</string>
        </array>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
        <key>StartCalendarInterval</key>
        <dict>
        <key>Hour</key>
        <integer>19</integer>
        <key>Minute</key>
        <integer>35</integer>
        <key>Weekday</key>
        <integer>4</integer>
        </dict>
        </dict>
        ...and 1 more line(s)
    Contents of /Library/LaunchAgents/com.wacom.wacomtablet.plist
        - mod date: Dec 22 21:04:59 2014
        - checksum: 2972905917
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>EnvironmentVariables</key>
        <dict>
        <key>RUN_WITH_LAUNCHD</key>
        <string>1</string>
        </dict>
        <key>KeepAlive</key>
        <dict>
        <key>SuccessfulExit</key>
        <true/>
        </dict>
        <key>Label</key>
        <string>com.wacom.wacomtablet</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>Aqua</string>
        <string>LoginWindow</string>
        </array>
        <key>Program</key>
        <string>/Library/Application Support/Tablet/WacomTabletSpringboard</string>
        <key>RunAtLoad</key>
        <true/>
        ...and 4 more line(s)
    Contents of /Library/LaunchAgents/com.xrite.device.softwareupdate.plist
        - mod date: Jun 23 20:26:30 2014
        - checksum: 3055576921
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.xrite.device.softwareupdate.plist</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/X-Rite/Frameworks/XRiteDevice.framework/Versions/B/Resources/XRD Software Update.app/Contents/MacOS/XRD Software Update</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>StartCalendarInterval</key>
        <dict>
        <key>Hour</key>
        <integer>9</integer>
        <key>Minute</key>
        <integer>0</integer>
        </dict>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.aladdin.aksusbd.plist
        - mod date: Mar  8 00:06:41 2015
        - checksum: 2687272378
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.aladdin.aksusbd</string>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/libexec/aksusbd</string>
        <string>-f</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>OnDemand</key>
        <false/>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.aladdin.hasplmd.plist
        - mod date: Mar  8 00:06:41 2015
        - checksum: 2803165656
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.aladdin.hasplmd</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/libexec/hasplmd</string>
        <string>-s</string>
        <string>-f</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.quark.quarkupdate.plist
        - mod date: Mar 18 23:38:19 2014
        - checksum: 920573843
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.quark.quarkupdate</string>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.quark.quarkupdate</string>
        </array>
        <key>ServiceIPC</key>
        <true/>
        <key>Sockets</key>
        <dict>
        <key>MasterSocket</key>
        <dict>
        <key>SockFamily</key>
        <string>Unix</string>
        <key>SockPathMode</key>
        <integer>438</integer>
        <key>SockPathName</key>
        ...and 7 more line(s)
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Nov  4 14:09:06 2014
        - checksum: 394026997
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        <string>semi-auto</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.c-command.SpamSieve.LaunchAgent.plist
        - mod date: Mar  8 20:19:07 2015
        - checksum: 2000492125
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>KeepAlive</key>
        <true/>
        <key>Label</key>
        <string>com.c-command.SpamSieve.LaunchAgent</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/SpamSieve.app/Contents/Frameworks/SpamSieveFramework.fram ework/Resources/SpamSieveLaunchAgent</string>
        <string>/Applications/SpamSieve.app</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.google.keystone.agent.plist
        - mod date: Oct  8 19:08:38 2014
        - checksum: 3830877756
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.google.keystone.user.agent</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>ProgramArguments</key>
        <array>
         <string>/Users/USER/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bu ndle/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftw areUpdateAgent</string>
         <string>-runMode</string>
         <string>ifneeded</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>3523</integer>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.spotify.webhelper.plist
        - mod date: Mar  8 18:11:08 2015
        - checksum: 819796354
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
         <key>Label</key>
         <string>com.spotify.webhelper</string>
         <key>KeepAlive</key>
         <dict>
          <key>NetworkState</key>
          <true/>
         </dict>
         <key>RunAtLoad</key>
         <true/>
         <key>Program</key>
         <string>/Users/USER/Library/Application Support/Spotify/SpotifyWebHelper</string>
         <key>SpotifyPath</key>
         <string>/Applications/Spotify.app</string></dict>
        </plist>
    Bad plists
        /Library/Preferences/com.epson.Inkjet Printer Driver.UnInstallList.plist
    Extensions
        /Library/Extensions/EPSONUSBPrintClass.kext
        - com.epson.print.kext.USBPrintClass
        /Library/Extensions/FTDIKext.kext
        - com.wacom.kext.ftdi
        /System/Library/Extensions/CNQL1213_ClassicNotSeize.kext
        - jp.co.canon.iokit.CNQL1213_ClassicNotSeize
        /System/Library/Extensions/EPSONUSBPrintClass.kext
        - com.epson.print.kext.USBPrintClass
        /System/Library/Extensions/HuaweiDataCardDriver.kext/Contents/PlugIns/HuaweiDat aCardACMControl.kext
        - com.huawei.driver.HuaweiDataCardACMControl
        /System/Library/Extensions/HuaweiDataCardDriver.kext/Contents/PlugIns/HuaweiDat aCardACMData.kext
        - com.huawei.driver.HuaweiDataCardACMData
        /System/Library/Extensions/HuaweiDataCardDriver.kext/Contents/PlugIns/HuaweiDat aCardActivateDriver.kext
        - com.huawei.driver.HuaweiDataCardActivateDriver
        /System/Library/Extensions/HuaweiDataCardDriver.kext/Contents/PlugIns/HuaweiDat aCardDMM.kext
        - com.huawei.driver.HuaweiDataCardDMM
        /System/Library/Extensions/HuaweiDataCardDriver.kext/Contents/PlugIns/HuaweiDat aCardECMControl.kext
        - com.huawei.driver.HuaweiDataCardECMControl
        /System/Library/Extensions/HuaweiDataCardDriver.kext/Contents/PlugIns/HuaweiDat aCardECMData.kext
        - com.huawei.driver.HuaweiDataCardECMData
        /System/Library/Extensions/HuaweiDataCardDriver.kext/Contents/PlugIns/HuaweiDat aCardHidPort.kext
        - com.huawei.driver.HuaweiDataCardHiPortDriver
        /System/Library/Extensions/HuaweiDataCardDriver.kext/Contents/PlugIns/HuaweiDat aCardJUBusDriver.kext
        - com.huawei.driver.cdc_usb_bus
        /System/Library/Extensions/HuaweiDataCardDriver.kext/Contents/PlugIns/HuaweiDat aCardJUCDCACM.kext
        - com.huawei.driver.cdc_acm
        /System/Library/Extensions/HuaweiDataCardDriver.kext/Contents/PlugIns/HuaweiDat aCardJUCDCECM.kext
        - com.huawei.driver.cdc_ecm
        /System/Library/Extensions/HuaweiDataCardDriver.kext/Contents/PlugIns/HuaweiDat aCardJUCDCNCM.kext
        - com.huawei.driver.cdc_ncm
        /System/Library/Extensions/HuaweiDataCardDriver.kext/Contents/PlugIns/HuaweiDat aCardJUNetwork.kext
        - com.huawei.driver.dc_net
        /System/Library/Extensions/HuaweiDataCardDriver.kext/Contents/PlugIns/HuaweiLog Level.kext
        - com.huawei.driver.HuaweiLogLevle
        /System/Library/Extensions/HuaweiDataCardDriver.kext
        - com.huawei.driver.HuaweiDataCardDriver
        /System/Library/Extensions/JMicronATA.kext
        - com.jmicron.JMicronATA
        /System/Library/Extensions/RoxioBluRaySupport.kext
        - com.roxio.BluRaySupport
        /System/Library/Extensions/SiLabsUSBDriver.kext
        - com.silabs.driver.CP210xVCPDriver
        /System/Library/Extensions/SiLabsUSBDriver64.kext
        - com.silabs.driver.CP210xVCPDriver64
        /System/Library/Extensions/USBExpressCardCantWake_Huawei.kext
        - com.apple.dts.driver.USBExpressCardCantWake
        /System/Library/Extensions/Wacom Tablet.kext
        - com.wacom.kext.wacomtablet
    Applications
        /Applications/3MobileWiFi.app
        - N/A
        /Applications/Adobe After Effects CS6/Plug-ins/Effects/Synthetic Aperture/(CF3 Support)/SA Color Finesse 3 UI.app
        - com.synthetic-ap.SA Color Finesse 3 UI
        /Applications/Adobe After Effects CS6/Plug-ins/Effects/mochaAE/(Mocha Support)/mocha AE CS6.app
        - com.imagineersystems.mocha4ae_adobe
        /Applications/Adobe Flash Builder 4.6/eclipse/Eclipse.app
        - org.eclipse.eclipse
        /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/nai/lib/naib.app
        - APP_ID
        /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/runtimes/air/mac/Adobe AIR.framework/Versions/1.0/Resources/Template.app
        - com.adobe.air.NativeTemplate
        /Applications/Adobe Flash CS6/AIR3.2/lib/nai/lib/naib.app
        - APP_ID
        /Applications/Adobe Flash CS6/AIR3.2/runtimes/air/mac/Adobe AIR.framework/Versions/1.0/Resources/Template.app
        - com.adobe.air.NativeTemplate
        /Applications/Adobe Flash CS6/Common/Configuration/Simulator/SimController.app
        - SimController
        /Applications/Adobe/Adobe Help.app
        - chc.UUID.1
        /Applications/AppZapper.app
        - com.appzapper.AppZapper
        /Applications/CanoScan Toolbox 4.9/CanoScan Toolbox X.app
        - com.canon.CanoScan Toolbox 4.9
        /Applications/DivX/DivX Preferences.app
        - com.divx.divxprefs
        /Applications/DivX/Uninstall DivX for Mac.app
        - com.divxinc.uninstalldivxformac
        /Applications/Epson Registration.app
        - com.epson.IJPrinter.OnlineRegistration.1
        /Applications/HandBrake.app
        - fr.handbrake.HandBrake
        /Applications/Microsoft Office 2011/Office/Add-Ins/Solver.app
        - com.apple.ASApplication
        /Applications/Microsoft Office 2011/Office/Equation Editor.app
        - com.microsoft.EquationEditor
        /Applications/Microsoft Office 2011/Office/Microsoft Office Setup Assistant.app
        - com.microsoft.office.setupassistant
        /Applications/Microsoft Office 2011/Office/Microsoft Query.app
        - N/A
        /Applications/PANTONE Color Manager.app
        - com.xrite.pantonecolormanager
        /Applications/QuarkXPress 10/Help/QXP Activation.app
        - com.quark.QuarkXPress8.5
        /Applications/QuarkXPress 10/Help/QXP Help.app
        - com.quark.QuarkXPress10.0
        /Applications/QuarkXPress 10/QuarkXPress.app
        - com.quark.QuarkXPress
        /Applications/QuarkXPress 10/XTensions/ErrorReportingUI.xnt/Contents/Frameworks/ILCrashReporter.framework /Versions/A/Resources/CrashReporter.app
        - com.quark.crashreporter
        /Applications/Toast 11 Titanium/Disc Cover 3 RE.app
        - com.belightsoft.DiscCover3.re
        /Applications/Toast 11 Titanium/DiskCatalogMaker.app
        - com.mac.fujisoft.DiskCatalogMaker
        /Applications/Toast 11 Titanium/Get Backup 2 RE.app
        - com.belightsoft.GetBackup2RE
        /Applications/Toast 11 Titanium/Mac2Tivo.app
        - com.roxio.Mac2Tivo
        /Applications/Toast 11 Titanium/Spin Doctor.app
        - com.roxio.spindoctorx
        /Applications/Toast 11 Titanium/TiVo Transfer.app
        - com.tivo.desktop
        /Applications/UnRarX.app
        - com.peternoriega.unrarx
        /Applications/Utilities/Adobe AIR Application Installer.app
        - com.adobe.air.ApplicationInstaller
        /Applications/Utilities/Adobe AIR Uninstaller.app
        - com.adobe.air.Installer
        /Applications/Wacom Tablet.localized/Wacom Help.app
        - com.intel.nw
        /Applications/Wordify.app
        - com.tgxmedia.macwordify
        /Library/Application Support/Adobe/Installers/AdobeInDesign8AppBase/ExtraFiles/INSTALLDIR_EXE/Adobe InDesign CS6.app
        - N/A
        /Library/Application Support/Adobe/SwitchBoard/SwitchBoard.app
        - com.adobe.switchboard-2.0
        /Library/Application Support/DivX/DivXTransferWizard.app
        - com.divx.TransferWizard
        /Library/Application Support/DivX/DivXUpdate.app
        - com.divx.DivXUpdate
        /Library/Application Support/DivX/DivXUpdater.app
        - com.divx.DivXUpdater
        /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
        - com.microsoft.autoupdate2
        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
        - com.microsoft.silverlight.sllauncher
        /Library/Application Support/Quark/AutoUpdate/QuarkUpdate.app
        - com.quark.quarkupdate
        /Library/Application Support/X-Rite/Frameworks/XRiteDevice.framework/Versions/B/Resources/X-Rite Device Services.app
        - com.xrite.device.X-Rite-Device-Services
        /Library/CFMSupport/CNQL1213_ButtonManager.app
        - jp.co.canon.scanner.CNQL2410_ButtonManager
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app
        - com.adobe.air.ApplicationInstaller
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Adobe AIR Updater.app
        - com.adobe.air.Installer
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Template.app
        - com.adobe.air.Template
        /Library/Image Capture/TWAIN Data Sources/CanoScan LiDE 25.ds
        - com.twainds.scangear1100.canon
        /Library/PDF Services/Save as Adobe PDF.app
        - com.apple.automator.SaveasAdobePDF
        /Library/Printers/EPSON/InkjetPrinter2/Utility/UT4/EpsonSuppliesTool4.app
        - com.epson.ijprinter.EpsonSuppliesTool4
        /Library/Printers/hp/Fax/fax.backend
        - com.hp.fax
        /Library/Printers/hp/Fax/rastertofax.filter
        - com.hp.rastertofax
        /Library/Printers/hp/cups/filters/pdftopdf.filter
        - com.hp.print.cups.filter.pdftopdf
        /Users/USER/Dropbox/Work in progress 5:10:12/zip 1/Using Zip Disks
        - N/A
        /Users/USER/Dropbox/Work in progress 5:10:12/zip 2/post script/b/Barnbrook Gothic T1 &TT/•Read ME-BarnbrookGothic:•Read ME-BarnbrookGothic:
        - N/A
        /Users/USER/Library/Services/ToastIt.service
        - com.roxio.ToastItService
    Frameworks
        /Library/Frameworks/Adobe AIR.framework
        - com.adobe.AIR
        /Library/Frameworks/DivX Toolkit.framework
        - com.divx.divxtoolkit
        /Library/Frameworks/DivXInstallerUtilities.framework
        - com.yourcompany.DivXInstallerUtilities
        /Library/Frameworks/QuarkUpdateInterface.framework
        - com.quark.QuarkUpdateInterface
        /Library/Frameworks/SGCS110.framework
        - com.frameworks.scangear1100.canon
        /Library/Frameworks/TSLicense.framework
        - net.telestream.license
        /Library/Frameworks/WacomMultiTouch.framework
        - com.wacom.WacomMultiTouch
        /Library/Frameworks/XRiteDevice.framework
        - com.xrite.xritedevice
        /Users/USER/Library/Frameworks/EWSMac-GC.framework
        - com.eSellerate.EWSMac83886082
    PrefPane
        /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/deploy/JavaControlPanel.pref Pane
        - com.oracle.java.JavaControlPanel
        /Library/PreferencePanes/Flash Player.prefPane
        - com.adobe.flashplayerpreferences
        /Library/PreferencePanes/Flip4Mac WMV.prefPane
        - net.telestream.wmv.prefpane
        /Library/PreferencePanes/QUPreferencePane.prefPane
        - com.quark.QUPreferencePane
        /Library/PreferencePanes/WacomTablet.prefPane
        - com.wacom.settingsPrefPane
    Bundles
        /Library/Application Support/Adobe/APE/3.201/adbeapecore.framework/Versions/A/Frameworks/Adobe AIR.framework/Versions/1.0/Libraries/Flash Player.plugin
        - com.macromedia.FlashPlayer-10.6.plugin
        /Library/Application Support/Adobe/APE/3.3/adbeapecore.framework/Versions/A/Libraries/Flash Player.plugin
        - com.macromedia.FlashPlayer-10.4-10.5.plugin
        /Library/Application Support/Adobe/Plug-Ins/CS6/File Formats/Camera Raw.plugin
        - com.adobe.CameraRaw
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/AdobeCP15.plugin
        - com.adobe.adobecp
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Flash Player.plugin
        - com.macromedia.FlashPlayer-10.6.plugin
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/adobecp.plugin
        - com.adobe.adobecp20
        /Library/Image Capture/TWAIN Data Sources/CanoScan LiDE 25.ds/Contents/PlugIns/CNQL1213_Library.plugin
        - jp.co.canon.scanner.CNQL1213_Library
        /Library/Internet Plug-Ins/AdobePDFViewer.plugin
        - com.adobe.acrobat.pdfviewer
        /Library/Internet Plug-Ins/AdobePDFViewerNPAPI.plugin
        - com.adobe.acrobat.pdfviewerNPAPI
        /Library/Internet Plug-Ins/DivX Web Player.plugin
        - com.divx.DivXWebPlayer
        /Library/Internet Plug-Ins/Flash Player.plugin
        - com.macromedia.Flash Player.plugin
        /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.plugin
        - net.telestream.wmv.plugin
        /Library/Internet Plug-Ins/JavaAppletPlugin.plugin
        - com.oracle.java.JavaAppletPlugin
        /Library/Internet Plug-Ins/LogMeIn.plugin
        - com.logmein.remctrlplugin
        /Library/Internet Plug-Ins/LogMeInSafari32.plugin
        - com.logmein.remctrlplugin
        /Library/Internet Plug-Ins/MeetingJoinPlugin.plugin
        - com.microsoft.communicator.meetingjoinplugin
        /Library/Internet Plug-Ins/NP_2020Player_IKEA.plugin
        - com.2020technologies.2020Player-IKEA.NP
        /Library/Internet Plug-Ins/OVSHelper.plugin
        - com.divx.OVSHelper
        /Library/Internet Plug-Ins/SharePointBrowserPlugin.plugin
        - com.microsoft.sharepoint.browserplugin
        /Library/Internet Plug-Ins/Silverlight.plugin
        - com.microsoft.SilverlightPlugin
        /Library/Internet Plug-Ins/WacomTabletPlugin.plugin
        - com.WacomTabletPluginLib.WacomTabletPlugin
        /Library/QuickLook/QuarkXPress.qlgenerator
        - com.quark.xpress
        /Library/Spotlight/QuarkXPress.mdimporter
        - com.quark.xpress.v6
        /Users/USER/Library/Address Book Plug-Ins/SkypeABDialer.bundle
        - com.skype.skypeabdialer
        /Users/USER/Library/Address Book Plug-Ins/SkypeABSMS.bundle
        - com.skype.skypeabsms
        /Users/USER/Library/Widgets/Currency Converter.wdgt
        - net.palple.widget.currencyconverter
    Bundles (new)
        /Applications/Adobe Reader.app
        - com.adobe.Reader
        /Applications/App Store.app
        - com.apple.appstore
        /Applications/AppZapper.app
        - com.appzapper.AppZapper
        /Applications/Automator.app
        - com.apple.Automator
        /Applications/Calculator.app
        - com.apple.calculator
        /Applications/Calendar.app
        - com.apple.iCal
        /Applications/Chess.app
        - com.apple.Chess
        /Applications/Contacts.app
        - com.apple.AddressBook
        /Applications/DVD Player.app
        - com.apple.DVDPlayer
        /Applications/Dashboard.app
        - com.apple.dashboardlauncher
        /Applications/Dictionary.app
        - com.apple.Dictionary
        /Applications/DivX Converter.app
        - com.divx.DivXConverterX
        /Applications/DivX Player.app
        - com.divx.DivX_Player
        /Applications/Dropbox.app
        - com.getdropbox.dropbox
        /Applications/Epson Registration.app
        - com.epson.IJPrinter.OnlineRegistration.1
        /Applications/EtreCheck.app
        - com.etresoft.EtreCheck
        /Applications/Evernote.app
        - com.evernote.Evernote
        /Applications/FaceTime.app
        - com.apple.FaceTime
        /Applications/Firefox.app
        - org.mozilla.firefox
        /Applications/Flip4Mac/Flip Player.app
        - net.telestream.Flip-Player
        /Applications/Font Book.app
        - com.apple.FontBook
        /Applications/Game Center.app
        - com.apple.gamecenter
        /Applications/GarageBand.app
        - com.apple.garageband
        /Applications/Google Chrome.app
        - com.google.Chrome
        /Applications/HandBrake.app
        - fr.handbrake.HandBrake
        /Applications/Image Capture.app
        - com.apple.Image_Capture
        /Applications/Launchpad.app
        - com.apple.launchpad.launcher
        /Applications/LogMeIn Client.app
        - com.logmein.LogMeInClient
        /Applications/Mail.app
        - com.apple.mail
        /Applications/Maps.app
        - com.apple.Maps
        /Applications/Messages.app
        - com.apple.iChat
        /Applications/Mission Control.app
        - com.apple.exposelauncher
        /Applications/Notes.app
        - com.apple.Notes
        /Applications/PANTONE Color Manager.app
        - com.xrite.pantonecolormanager
        /Applications/Photo Booth.app
        - com.apple.PhotoBooth
        /Applications/Preview.app
        - com.apple.Preview
        /Applications/QuickTime Player.app
        - com.apple.QuickTimePlayerX
        /Applications/Reminders.app
        - com.apple.reminders
        /Applications/Safari.app
        - com.apple.Safari
        /Applications/Skip Tunes.app
        - com.skiptunes.skiptunes
        /Applications/Skype.app
        - com.skype.skype
        /Applications/SpamSieve.app
        - com.c-command.SpamSieve
        /Applications/Spotify.app
        - com.spotify.client
        /Applications/Stickies.app
        - com.apple.Stickies
        /Applications/StuffIt Expander.app
        - com.stuffit.StuffIt-Expander
        /Applications/System Preferences.app
        - com.apple.systempreferences
        /Applications/TextEdit.app
        - com.apple.TextEdit
        /Applications/Time Machine.app
        - com.apple.backup.launcher
        /Applications/Transmission.app
        - org.m0k.transmission
        /Applications/UnRarX.app
        - com.peternoriega.unrarx
        /Applications/Utilities/Activity Monitor.app
        - com.apple.ActivityMonitor
        /Applications/Utilities/Adobe AIR Application Installer.app
        - com.adobe.air.ApplicationInstaller
        /Applications/Utilities/Adobe AIR Uninstaller.app
        - com.adobe.air.Installer
        /Applications/Utilities/Adobe Flash Player Install Manager.app
        - com.adobe.flashplayer.installmanager
        /Applications/Utilities/AirPort Utility.app
        - com.apple.airport.airportutility
        /Applications/Utilities/Audio MIDI Setup.app
        - com.apple.audio.AudioMIDISetup
        /Applications/Utilities/Bluetooth File Exchange.app
        - com.apple.BluetoothFileExchange
        /Applications/Utilities/Boot Camp Assistant.app
        - com.apple.bootcampassistant
        /Applications/Utilities/ColorSync Utility.app
        - com.apple.ColorSyncUtility
        /Applications/Utilities/Console.app
        - com.apple.Console
        /Applications/Utilities/Digital Color Meter.app
        - com.apple.DigitalColorMeter
        /Applications/Utilities/Disk Utility.app
        - com.apple.DiskUtility
        /Applications/Utilities/Grab.app
        - com.apple.Grab
        /Applications/Utilities/Grapher.app
        - com.apple.grapher
        /Applications/Utilities/Keychain Access.app
        - com.apple.keychainaccess
        /Applications/Utilities/Migration Assistant.app
        - com.apple.MigrateAssistant
        /Applications/Utilities/Script Editor.app
        - com.apple.ScriptEditor2
        /Applications/Utilities/System Information.app
        - com.apple.SystemProfiler
        /Applications/Utilities/Terminal.app
        - com.apple.Terminal
        /Applications/Utilities/VoiceOver Utility.app
        - com.apple.VoiceOverUtility
        /Applications/Utilities/X11.app
        - com.apple.X11redirect
        /Applications/VLC.app
        - org.videolan.vlc
        /Applications/Wacom Tablet.localized/Wacom Desktop Center.app
        - com.wacom.Wacom-Desktop-Center
        /Applications/Wacom Tablet.localized/Wacom Display Settings.app
        - com.wacom.Wacom-Display-Settings
        /Applications/Wacom Tablet.localized/Wacom Tablet Utility.app
        - com.wacom.RemoveWacomTablet
        /Applications/Wordify.app
        - com.tgxmedia.macwordify
        /Applications/iBooks.app
        - com.apple.iBooksX
        /Applications/iMovie.app
        - com.apple.iMovieApp
        /Applications/iPhoto.app
        - com.apple.iPhoto
        /Applications/iTunes.app
        - com.apple.iTunes
        /Library/Application Support/Apple/BezelServices/AppleBluetoothHIDKeyboard.plugin
        - com.apple.BezelServices.AppleBluetoothHIDKeyboard
        /Library/Application Support/Apple/BezelServices/AppleBluetoothHIDMouse.plugin
        - com.apple.AppleBluetoothHIDMouse
        /Library/Application Support/Apple/BezelServices/AppleBluetoothMultitouch.plugin
        - com.apple.BezelServices.AppleBluetoothMultitouch
        /Library/Application Support/Apple/BezelServices/AppleHIDMouse.plugin
        - com.apple.AppleHIDMouse
        /Library/Application Support/Apple/BezelServices/AppleIRController.plugin

  • Visual Studio's Emulator for Android is not working or either showing in Hyper-V

    I installed the VS 2015 CTP with Cordova tools and Have already installed the Xamarin .... But the Android emulator is not showing in the Hyper-v or dosn't start up. But i just check the Programmes i have installed its there in the list. I have enabled the
    Hyper-v and other specs are also available ... VS als dosnt shows the Emulator is there .... Please help me to up the Android Emulator for Visual Studio ...
    -------------------------------------------------- Hyper - V -----------------------------------------------
    ------------------------------------------------------------------- Control Panel -------------------------------------------------------------
    Dileepa S. Rajapaksa
    Trainee Developer
    Microsoft, Sri Lanka
    Twitter : @dsrajapaksa
    Blog : http://www.dileepatech.net

    The Microsoft Visual Studio emulator for Android can be identified by "VS Emulator Kitkat..." and "VS Emulator Lollipop ...". You should see the virtual machine in the Hyper-V manager once it's created.
    Here's a
    MSDN article that talks about the Visual studio Emulator for Android.
    Abdulwahab Suleiman

  • Attachments help - C# using Obect API

    I'm in my first attempt at integrating GW functionality into a C# application. I am not an expert C# programmer either. Thus far I've been successful at getting logged into GW, creating a new mail message and sending it successfully. However adding code to attach a file to my message returns an exception from the GroupwareTypeLibrary with the unhelpful error message "Unknown Error". Below is my code. If I comment out the line:
    objMessage.Attachments.Add("c:\reg.log",1,"reg.log ");
    the program runs successfully, happily sending my mail to the recipent mailbox. I know the c:\reg.log file exists and I have permissions to it.
    Any advice as to what I'm doing wrong would be of tremendous help, as I've already search and cruised all the forums on GW API I can find to no avail. Running GW 7.03 I think on client and server side.
    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.IO;
    using GroupwareTypeLibrary;
    namespace GWEmailTest
    class Program
    public static void Main()
    GroupwareTypeLibrary.Application objApplication = new GroupwareTypeLibrary.Application();
    GroupwareTypeLibrary.Account objAccount;
    GroupwareTypeLibrary.Messages objMessages;
    GroupwareTypeLibrary.Message objMessage;
    GroupwareTypeLibrary.Folder objMailBox;
    GroupwareTypeLibrary.Recipients objRecipients;
    GroupwareTypeLibrary.Recipient objRecipient;
    objAccount = objApplication.Login("dpuls", "", "password", "", "");
    objMailBox = objAccount.MailBox;
    objMessages = objMailBox.Messages;
    objMessage = objMessages.Add("GroupwareTypeLibrary.Message",4," ");
    objRecipients = objMessage.Recipients;
    objRecipient = objRecipients.Add("dpuls","","");
    objMessage.Subject.PlainText = "Here's the message from C#!.";
    objMessage.BodyText.PlainText = "Here's the report you wanted.";
    objMessage.Attachments.Add("c:\reg.log",1,"reg.log ");
    objMessage.Send();

    Markus,
    Thanks so much for your quick reply. I appreciate your willingness to help me overcome my ignorance. Here's what I found:
    objMessage = objMessages.Add("GW.MESSAGE.MAIL", 4);
    results in a C# compiler error "no overload method for 'add' requires '2' arguments". This tells me the third paramater is required for the GroupwareTypeLibary COM object, so I added the third null parameter back in, eliminating the compiler error. Then I still got the same "unknown error" exception back from the COM library as before.
    So I went back to my shotgun approach of trying variations on parameter passing (instance variables instead of literals, etc). I noticed at one point when I tried another test file that I got a compiler error on a string literal of the path\filename "c:\csharptest.txt". Aha, says I ......
    To make a long story short, by happenstance, my "c:\reg.log" parameter gets read in C# as containing an escape sequence reference, i.e. "\r" and when I changed to another test file it read "c:\csharptest.txt" as an INVALID escape sequence "\c". The fix then was to correct the problem of the reading of escape sequences in my string literal by changing my line of code to :
    objMessage.Attachments.Add(@"c:\reg.log","1","");
    Problem solved! Thanks again for your help.
    dennis puls
    Originally Posted by Markus Colorado
    I suppose the way you're adding a draft message to the collection is false.
    >> objMessages = objMailBox.Messages;
    >> objMessage = objMessages.Add("GroupwareTypeLibrary.Message",4," ");
    The function "Add()" takes only 2 parameters, 'ClassName' + 'ObjType'.
    'ClassName' stands for the sort/subtype of message you'd like to create.
    'ObjType' stands for 'draft' or 'personal'
    Try the following:
    objMessages = objMailBox.Messages;
    objMessage = objMessages.Add("GW.MESSAGE.MAIL", 4);
    The rest should be fine; the code for adding the attachment seems OK.
    Markus
    "dpuls" <[email protected]> schrieb im Newsbeitrag
    news:[email protected]...
    >
    > I'm in my first attempt at integrating GW functionality into a C#
    > application. I am not an expert C# programmer either. Thus far I've
    > been successful at getting logged into GW, creating a new mail message
    > and sending it successfully. However adding code to attach a file to my
    > message returns an exception from the GroupwareTypeLibrary with the
    > unhelpful error message "Unknown Error". Below is my code. If I
    > comment out the line:
    > objMessage.Attachments.Add("c:\reg.log",1,"reg.log ");
    >
    > the program runs successfully, happily sending my mail to the recipent
    > mailbox. I know the c:\reg.log file exists and I have permissions to
    > it.
    >
    > Any advice as to what I'm doing wrong would be of tremendous help, as
    > I've already search and cruised all the forums on GW API I can find to
    > no avail. Running GW 7.03 I think on client and server side.
    >
    > ****************************
    > using System;
    > using System.Collections.Generic;
    > using System.Text;
    > using System.IO;
    > using GroupwareTypeLibrary;
    >
    > namespace GWEmailTest
    > {
    > class Program
    > {
    > public static void Main()
    > {
    > GroupwareTypeLibrary.Application objApplication = new
    > GroupwareTypeLibrary.Application();
    > GroupwareTypeLibrary.Account objAccount;
    > GroupwareTypeLibrary.Messages objMessages;
    > GroupwareTypeLibrary.Message objMessage;
    > GroupwareTypeLibrary.Folder objMailBox;
    > GroupwareTypeLibrary.Recipients objRecipients;
    > GroupwareTypeLibrary.Recipient objRecipient;
    >
    > objAccount = objApplication.Login("dpuls", "", "password", "",
    > "");
    > objMailBox = objAccount.MailBox;
    > objMessages = objMailBox.Messages;
    > objMessage = objMessages.Add("GroupwareTypeLibrary.Message",4," ");
    > objRecipients = objMessage.Recipients;
    > objRecipient = objRecipients.Add("dpuls","","");
    > objMessage.Subject.PlainText = "Here's the message from C#!.";
    > objMessage.BodyText.PlainText = "Here's the report you wanted.";
    > objMessage.Attachments.Add("c:\reg.log",1,"reg.log ");
    > objMessage.Send();
    > }
    > }
    > }
    > ****************************
    >
    >
    > --
    > dpuls
    > ------------------------------------------------------------------------
    > dpuls's Profile: NOVELL FORUMS - View Profile: dpuls
    > View this thread: Attachments help - C# using Obect API - NOVELL FORUMS
    >

  • How does RFC adapter with EO/EOIO work? Kindly help!

    Hi Experts,
            How does a sender or receiver RFC adapter works when QOS is EO or EOIO (Async)? In other words, for EOIO, are the messages are queued? How does this queueing work? Does it use FIFO logic? where do we specify the max limit of messages that can be queued?
    Also what is the significance of 'Initial connection' and 'maximum connections' in communication channel? I have given the default value 1 for both. What should be the ideal value and why?
    In my Async RFC - XI scenario sometimes XI is able to receive the messages but sometimes it doesnot even though the sender system is UP and running.
    I cannot see any messages in SXMB_MONI even though the sender has sent the messade.
    Why RFC adapter is behaving like this? What could be the issue?
    Kindly help!

    EOIO: How does this queueing work? Does it use FIFO logic?
    >> yes it uses FIFO logic in EOIO.
    Also what is the significance of 'Initial connection' and 'maximum connections' in communication channel? I have given the default value 1 for both. What should be the ideal value and why?
    >>>noof rfc connections we are using for connecting to XI to RFC minmum is 1 maximum is 50 bydefault. you increase this value by changing the default setting.
    How does RFC adapter with EO/EOIO work? Kindly help!
    Posted: Mar 21, 2007 4:15 AM 
    Hi Experts,
    How does a sender or receiver RFC adapter works when QOS is EO or EOIO (Async)? In other words, for EOIO, are the messages are queued? How does this queueing work? Does it use FIFO logic? where do we specify the max limit of messages that can be queued?
    Also what is the significance of 'Initial connection' and 'maximum connections' in communication channel? I have given the default value 1 for both. What should be the ideal value and why?
    Why RFC adapter is behaving like this? What could be the issue?
    >>check ur sender RFC adapter. chekc whether data is sent from RFC . see logs in R/3.

  • Search Help values to Internal table

    Dear Friends,
    Is it possible to export Search Help values to Internal table?
    On screen, when user click on Search button, the SAP standard search help will call (Customer Search). After entering values, some result get displayed and this result need to export to the internal table.
    Thanks in stack
    Nilesh

    Hi:
    try this:
    DATA : wa_shlp TYPE shlp_descr,
               it_records LIKE ddshretval OCCURS 0 WITH HEADER LINE.
    wa_shlp-SHLPNAME = 'MAT0M'.   "one of elementary search help name from mara-matnr.
    wa_shlp-SHLPTYPE = 'SH'.
    CALL FUNCTION 'F4IF_SELECT_VALUES'
         EXPORTING
           shlp                   = wa_shlp
      MAXROWS                = 0
      SORT                   = ' '
      CALL_SHLP_EXIT         = ' '
    IMPORTING
      MAXROWS_EXCEEDED       =
        TABLES
      RECORD_TAB             =
      RECDESCR_TAB           =
          return_tab            = it_records
    LOOP AT it_records.
      WRITE:/ it_records.
    ENDLOOP.
    Follows is how to get the search help name:
    CALL FUNCTION 'DD_SHLP_GET_HELPMETHOD'
      EXPORTING
        tabname                 = 'MARA'
        fieldname               = 'MATNR'
        langu                   = sy-langu
      NO_CHKTAB_MAPPING       =
      GET_ENTITYTAB           = ' '
       CHANGING
         shlp                    = wa_shlp
      callcontrol             = callcontrol
      EXCEPTIONS
        field_not_found         = 1
        no_help_for_field       = 2
        OTHERS                  = 3
    CALL FUNCTION 'F4IF_EXPAND_SEARCHHELP'
       EXPORTING
         shlp_top = wa_shlp
       IMPORTING
         shlp_tab = shlps.
    好运,
    启明星

  • Does emulator of  wireless toolkit WTK2.5.1 support RTSP protocol

    Hi everybody,
    I am working on developing streaming player in J2ME. I want to use RTSP protocol in it but the emulator is
    displaying the following output for the supported protocols.
    OUTPUT:
    http
    file
    device
    capture
    when i am using the following code------->>>>>>.
    CODE:
    Display display;
    Form formProtocol;
    public void startApp()
    display=Display.getDisplay(this);
    display.setCurrent(formProtocol);
    String strProtocols[] =Manager.getSupportedProtocols(null);
    for(int i=0; i<strProtocols.length; i++)
    System.out.println(strProtocols);
    plz help me that {color:#ff0000}*whether emulator supports RTSP protocol or not If YES than how ?.*{color}
    OR {color:#ff0000}*Is there any other emulator that supports the RTSP protocol ?.*{color}

    that output does, in fact, mean rtsp is not a supported protocol in the WTK emulator. I don't know of any emulators that do support it, but enough phones support it. Shouldn't be too hard to try it out on device

  • HELP HELP HELP HELP HELP HELP PLEEEEEEEEEEEEEEEEE...

    HI >> my N95 8GB GOT BRICKED >> I've tried to change the phones original font with another font (arabic font) .. when I've restarted the phone .. everything is written in squars .. i mean there is no actual letters .. only squars .. after i enter my pin code .. it'll give me a message (in squars ofcorse) and then it stops working >> I've tried to formatt the phone by pressign *,3 and the call (green) button while powering it up >> but nothing happens >> and i still get the squars ! .. so what can i do now ?? pleeeeeeeeeease help !

    22-Mar-2008 08:01 PM
    sqiscool wrote:
    HI >> my N95 8GB GOT BRICKED >> I've tried to change the phones original font with another font (arabic font) .. when I've restarted the phone .. everything is written in squars .. i mean there is no actual letters .. only squars .. after i enter my pin code .. it'll give me a message (in squars ofcorse) and then it stops working >> I've tried to formatt the phone by pressign *,3 and the call (green) button while powering it up >> but nothing happens >> and i still get the squars ! .. so what can i do now ?? pleeeeeeeeeease help !
    22-Mar-2008 08:01 PM
    sqiscool wrote:
    HI >> my N95 8GB GOT BRICKED >> I've tried to change the phones original font with another font (arabic font) .. when I've restarted the phone .. everything is written in squars .. i mean there is no actual letters .. only squars .. after i enter my pin code .. it'll give me a message (in squars ofcorse) and then it stops working >> I've tried to formatt the phone by pressign *,3 and the call (green) button while powering it up >> but nothing happens >> and i still get the squars ! .. so what can i do now ?? pleeeeeeeeeease help !
    press *#7370# r *#7780#

  • I have three programs I would like to uninstall from my apple pro ,   also I am trying to install skype but having great problems with this to  Marie

    Hello, I have three programs I would like to delete and uninstall from my apple pro , plus I cant seem to install skype for some reason,as we are going to be traveling around Australia soon I would like to keep in touch with family and friends. I would be most thankfull for your help
                                             Regards  Marie

    Hi Marie
    Can you please describe what happens when you try to install Skype? I've found one common issue people have is that they don't actually fully install it - a lot of people download it, open the downloaded image, and run it from there - and dont actually ever copy it to their Applications folder, so next time they look for it, it can't be opened. Try again from scratch - go to the Skype website, download the file, if it doesn't automatically display the Skype disk image on your Desktop, go to your Downloads folder, locate the Skype download and double-click it to open, then, open a new Finder window and drag the Skype application from inside the disk image to your Applications folder. Once that's done you can trash the disk image. Go to your Applications folder, find Skype and launch it. Let me know if you get stuck.
    As John says, it would be very helpful to know exactly which Mac you have. If its a laptop, you probably have a MacBook Pro, not a Mac Pro, which is a very large, heavy silver box and not amenable to being dragged around Australia!
    Matt

  • Xmlbeans ant task help

    I'm trying to integrate the ant task to my existing build file in my project.
    However the ant task don't have any way to compile more than one .xsd in a different .jar
    (i.e.: destdir attr is not supported).
    For example, I have two schemas : mySchema.xsd and anotherSchema.xsd
    What I need is to generate two different .jars : mySchema.jar and anotherSchema.jar
    (The jar names must match with the xsd names, that's how our structure goes).
    I don't know if it is possible, or if It would be better to compile everything inside a single .jar
    Any suggestions will be much appreciated !!!
    Thanks !!

    Ah, I found it: the documentation has an error and I copied the supplied example.
    http://help.eclipse.org/mars/index.jsp?topic=%2Forg.eclipse.mylyn.wikitext.help.ui%2Fhelp%2FMylyn+WikiText+User+Guide.html says that one has to declare
    <taskdef classpathref="wikitext.classpath" resource="org/eclipse/mylyn/wikitext/core/ant/tasks.properties"/>
    but should be
    <taskdef classpathref="wikitext.tasks.classpath" resource="org/eclipse/mylyn/internal/wikitext/mediawiki/core/tasks/tasks.properties" />
    Filed https://bugs.eclipse.org/bugs/show_bug.cgi?id=471965
    regards,
    Vlad

  • Help with large file copy to WKS

    I need to copy a folder and all of it's contents from
    \apps\reallybigfolder to each workstation at c:\putithere.
    Because of the size of the file copy, I chose to create an app object
    with logic that says if xxx.exe exists then do not push. Basically, I
    don't want this thing to just run constantly. I need it to run one time
    to each workstation on the network when the users log in.
    I have tried pointing the app object to \public\ncopy.exe and then
    setting the parameters the way I want them, but I keep getting an
    error: "Cannot load VDM IPX/SPX Support". The two files in the folder
    are copied, but the subfolders are not. I have tried using the /s/e
    switches, but it does not help.
    I have also tried writing a .bat file, to test it - but I get the same
    results as above. So next I tried using copy instead of ncopy. I do not
    get the error message, but it still does not copy any of the subfolders.
    Is there another way? An easier way? I really appreciate the help.
    Tony

    What you are doing should work.
    It sounds as if there are some other workstation issues going on.
    I don't think I seen or could make the error "Cannot load VDM IPX/SPX
    Support" happen if I tried. Perhaps this would happen w/o a Novell
    Client installed. In such a case you could use XCOPY or ROBOCOPY.
    (Robocopy is way cooler than XPCOPY and is free from MS.)
    You can also use the "Distribution Tab" and the "Files" section to copy
    entire directories. Just use *.* as the source.
    [email protected] wrote:
    > I need to copy a folder and all of it's contents from
    > \apps\reallybigfolder to each workstation at c:\putithere.
    >
    > Because of the size of the file copy, I chose to create an app object
    > with logic that says if xxx.exe exists then do not push. Basically, I
    > don't want this thing to just run constantly. I need it to run one time
    > to each workstation on the network when the users log in.
    >
    > I have tried pointing the app object to \public\ncopy.exe and then
    > setting the parameters the way I want them, but I keep getting an
    > error: "Cannot load VDM IPX/SPX Support". The two files in the folder
    > are copied, but the subfolders are not. I have tried using the /s/e
    > switches, but it does not help.
    >
    > I have also tried writing a .bat file, to test it - but I get the same
    > results as above. So next I tried using copy instead of ncopy. I do not
    > get the error message, but it still does not copy any of the subfolders.
    >
    > Is there another way? An easier way? I really appreciate the help.
    >
    > Tony
    Craig Wilson
    Novell Product Support Forum Sysop
    Master CNE, MCSE 2003, CCN

  • Enhance search help MAT1_TREX_SIMPLE

    Hello.
    i want to enhance the SES F4 standard search help MAT1_TREX_SIMPLE by MARA-MSTAE and MARC -MMSTA.
    These 2 fields should show up in the result list of F4 help MAT1_TREX_SIMPLE.
    I had read the sap ses documentation and several blogs and tutorials.
    But i don't know where to start and if this requirement is possible.
    Do you have any ideas ?
    Thanks in advance.
    Sebastian

    The difference is that the test program COM_SE_SEARCH_IIF_TEST uses the official SES search interface method CL_COM_SE_SEARCH_IIF=>SEARCH_OBJECTS, whereas the test program COM_SE_SEARCH_TEST directly accesses the native TREX search interface, function module TREX_EXT_SEARCH_DOCUMENTS (which you are not allowed to use in customer development).
    Therefore COM_SE_SEARCH_TEST does not include the authorization check, whereas
    CL_COM_SE_SEARCH_IIF=>SEARCH_OBJECTS passes the raw search result from TREX to the object-specific authorization check routine. This check routine has to be implemented by the responsible application using interface method IF_COM_SE_BUSOBJ~CHECK_AUTHORIZATION.
    The implementing class can be found/set in customizing:
    Transaction SES_ADMIN, menu path: Goto -> Customizing -> Business Objects and Indexes
    On the screen "Display View ..." double-click in the tree to the left on: Settings for Business Objects
    So I guess:
    - either the obect-specific implementation of ~CHECK_AUTHORIZATION is erroneous
    - or the logon user is just not authorized
    For more and general information you should check the SAP notes
    1254901 - SES for customer projects on TREX search
    1345777 - FAQs Search Engine Service (SES)
    Enjoy! - Klaus

  • Switch Interface for MARS

    I'm a newby. I have a doubt about connecting the device to the network. By what I understand I need to use a crossover cable to connect MARS to the switch. Do I need to configure the switchport to be a trunk port. Or is any other configuration I need to make.
    Please help.
    Thanks

    Hi,
    MARS is a special application built on standard server hardware. The Network Interface Cards (NIC) on your MARS server are standard pieces of hardware that should only need a stright through cable connected to any switch.
    There are probably two interfaces, one is supposed to be used for management, one is used for data collection.
    There is no need that I'm aware of to configure the switch port as a trunk, since all the devices you are monitoring will be reporting back to the MARS device.
    Erric

  • Trying to Remove NOVELL

    HELP! HELP! HELP! PLEASE HELP ME!
    I downloaded Novell (ZENWORKS DESKTOP MANAGEMENT AGETN) from my school
    and now i want to remove it from my system. Theres is an error message
    comes and tell me i can't remove novell. ERROR 1722: There is a problem
    with this Windows Installer package. A program run as part of the setup
    did not finish as expected. Contact you support personnel or package
    vendor. When I contacted Novell they couldn't help because I did not
    purchase the software.

    http://support.microsoft.com/kb/290301/
    Regards
    Rolf Lidvall
    Swedish Radio (Ltd)

Maybe you are looking for

  • Itunes opening twice

    When I open itunes, it opens two pages each time. The normal music page, and the app page. Closing either closes both.

  • Leopard 10.5.2, Blender, and MacBook

    I had been eagerly waiting for Leopard to be updated to 10.5.2 to see if the bug that Blender is suffering from on the MacBook that causes horrible UI performance was fixed on Apple's end. Unfortunately it looks like it is still there. The Blender de

  • ADF- Pop-up and ADF Page Flow Runtime library

    Hi: Why doesn't pop-up work if the project has ADF Page Flow Runtime? Thanks in advance

  • Replicating names to three different tables

    Hi Hoping someone can help I have a table with names. I then have three other tables (for terms 1, 2 and 3 at school). The term tables cross ref to the names table to obtain student names. In each term table, I have school marks going horizontally fo

  • App initializing at start-up

    I have written a small web server in J2SE. Is there some way for me to either register it as a service or by some other means adding itself to the boot-up process of the computer using only Java, so no installer or native calls are needed? So far, I