Collection Data Form Invisible Mode for Autofill Only

I am trying to use the Collection Data Form to get information from the registry. The following entry worked for a little bit and then stopped working: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Curr entVersion\Authentication\LogonUI\LastLoggedOnUser . Is this syntax correct? If not, what is the correct way to enter the registry key information?

Originally Posted by cmtallyadmin
I am trying to use the Collection Data Form to get information from the registry. The following entry worked for a little bit and then stopped working: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Curr entVersion\Authentication\LogonUI\LastLoggedOnUser . Is this syntax correct? If not, what is the correct way to enter the registry key information?
According to the docs that is the correct syntax, but you could also try HKLM instead of HKEY_LOCAL_MACHINE to see if it makes any difference...
Have you verified on the workstation that the LastLoggedOnUser key is not empty? Since you say that this have worked but suddenly stopped working then could it be that you have enable Interactive Logono not display last user name in the GPO for your workstations?
Thomas

Similar Messages

  • Collection Data Form in invisible mode.

    Hi,
    We are using zcm 10.3 installed on SLES 11. Our clients are XP SP3. I have configured a collection data form with autofill and checked "Invisible mode for autofill only" In the autofill settings I have entered a environment variable. I have configured a Collection data form schedule to run "When a device is refreshed". The collection data form never pick up the environment variable value when running a refresh. When I right click on the ZenWorks notify icon and choose "Collection data form" the environment variable value configured in autofill is picked up.
    Autofill worked well when refreshing a device in zcm 10.2.2.
    Does anybody know if this is a known "bug"?
    /John

    hajo68,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Is a 3845 G0/0 slot in SFP mode for HIMI only?

    This was brought up in a meeting when we were debating on how to terminate an optical WAN handoff.  I guess I just assumed that the G0/0 slot in the 3845 would act as any other gig port with an SFP, but someone stated they thought it might be for HIMI only.  I haven't found any documentation to say one way or another, so I thought I'd throw it out to the community:  Is the G0/0 slot in SFP mode for HIMI only? 
    By the by, we have no etherswitch modules in this router.
    Thanks!
    Justin

    From http://www.cisco.com/en/US/docs/ios/12_4/12_4_mainline/srdescn1.html
    The HIMI feature provides the capability to establish a connection between two enhanced network modules (NME) or between the onboard small-form-factor pluggable (SFP) Gigabit Ethernet module and an NME on the Cisco 3825 and Cisco 3845 routers. Currently, Cisco EtherSwitch service modules are the only NMEs that support HIMI.
    Ah yeah that's what I figured.  Just wanted to confirm since the seed of doubt was planted.  Thanks!

  • HT201365 Does Find My iPhone collect data on user whereabouts for Apple or any other third party?

    Does Find My iPhone collect data on user whereabouts for Apple or any other third party?

    Google search produced this article: http://support.apple.com/kb/HT4865

  • How can i collect data form diff. Internal Tables to single main table

    hi
       i am using 3 diffrent internal tables for fatching & store data , but when i want to put it on report for display it come in APPENDING MANNER i.e. data from 1 table get displayed , all otther fields remain blank, then data from 2 table appended at bottom , similar for 3 table ,
         but i want the data together.
    is there any way by which i can insert data to final table's particular field without effecting all others fields data . ?
    please give answer it's urgent

    <b>see how data is brought into I_OUT.</b>
    REPORT  Y_RK_REPORT_TASK2 LINE-SIZE 180
                              LINE-COUNT 25(8)
                              NO STANDARD PAGE HEADING.
    *&                      TABLE DECLARATION                              *
    TABLES: MARA,              "GENERAL MASTER DATA
            MARC,              "PLANT DATA FOR MATERIAL
            MARD,              "STORAGE LOCATION DATA FOR MATERIAL
            MBEW,              "MATERIAL VALUATION
            MVKE,              "SALES DATA FOR MATERIAL
            MAKT.              "MATERIAL DESCRIPTION
    *&                      INTERNAL TABLE DECLARATION                     *
    DATA: BEGIN OF I_MARC OCCURS 0,
              MATNR LIKE MARC-MATNR,
              WERKS LIKE MARC-WERKS,
              LVORM LIKE MARC-LVORM,
              PSTAT LIKE MARC-PSTAT,
          END OF I_MARC.
    DATA: BEGIN OF I_MARA OCCURS 0,
               MATNR LIKE MARA-MATNR,
               MBRSH LIKE MARA-MBRSH,
               MEINS LIKE MARA-MEINS,
          END OF I_MARA.
    DATA: BEGIN OF I_MAKT OCCURS 0,
               MATNR LIKE MAKT-MATNR,
               MAKTX LIKE MAKT-MAKTX,
          END OF I_MAKT.
    DATA: BEGIN OF I_MBEW OCCURS 0,
               MATNR LIKE MBEW-MATNR,
               BWKEY LIKE MBEW-BWKEY,
               BWTAR LIKE MBEW-BWTAR,
               LBKUM LIKE MBEW-LBKUM,
          END OF I_MBEW.
    DATA: BEGIN OF I_MVKE OCCURS 0,
               MATNR LIKE MVKE-MATNR,
               VKORG LIKE MVKE-VKORG,
               VTWEG LIKE MVKE-VTWEG,
          END OF I_MVKE.
    DATA: BEGIN OF I_MARD OCCURS 0,
               MATNR LIKE MARD-MATNR,
               WERKS LIKE MARD-WERKS,
               LGORT LIKE MARD-LGORT,
               LABST LIKE MARD-LABST,
          END OF I_MARD.
    DATA: BEGIN OF I_OUT OCCURS 0,
            MATNR LIKE MARC-MATNR,
            WERKS LIKE MARC-WERKS,
            LVORM LIKE MARC-LVORM,
            PSTAT LIKE MARC-PSTAT,
            MBRSH LIKE MARA-MBRSH,
            MEINS LIKE MARA-MEINS,
            MAKTX LIKE MAKT-MAKTX,
            BWKEY LIKE MBEW-BWKEY,
            BWTAR LIKE MBEW-BWTAR,
            LBKUM LIKE MBEW-LBKUM,
            VKORG LIKE MVKE-VKORG,
            VTWEG LIKE MVKE-VTWEG,
            LGORT LIKE MARD-LGORT,
            LABST LIKE MARD-LABST,
          END OF I_OUT.
    *&             A T - S E L E C T I O N - S C R E E N                   *
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-101.
    PARAMETERS: P_WERKS LIKE MARC-WERKS.
    SELECTION-SCREEN END OF BLOCK B1.
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-102.
    SELECT-OPTIONS: S_MATNR FOR MARC-MATNR,
                    S_LGORT FOR MARD-LGORT.
    SELECTION-SCREEN END OF BLOCK B2.
    *&                             INITIALIZATION.
    INITIALIZATION.
      P_WERKS = '3000'.
      S_MATNR-SIGN = 'I'.
      S_MATNR-OPTION = 'EQ'.
      S_MATNR-LOW = '1'.
      S_MATNR-HIGH = '995'.
      S_LGORT-SIGN = 'I'.
      S_LGORT-OPTION = 'EQ'.
      S_LGORT-LOW = '0001'.
      S_LGORT-HIGH = '0007'.
      APPEND S_LGORT.
      APPEND S_MATNR.
      CLEAR S_MATNR.
      CLEAR S_LGORT.
    *&             S T A R T - O F - S E L E C T I O N                     *
    START-OF-SELECTION.
         SELECT MATNR WERKS LVORM FROM MARC
                             INTO TABLE I_MARC
                             WHERE WERKS = P_WERKS
                             AND MATNR IN S_MATNR.
        SELECT MATNR MBRSH MEINS FROM MARA
                              INTO TABLE I_MARA
                              FOR ALL ENTRIES IN I_MARC
                              WHERE MATNR = I_MARC-MATNR.
        SELECT MATNR  MAKTX FROM MAKT
                             INTO TABLE I_MAKT
                             FOR ALL ENTRIES IN I_MARA
                             WHERE MATNR = I_MARA-MATNR
                             AND SPRAS = SY-LANGU.
        SELECT MATNR BWKEY BWTAR FROM MBEW
                            INTO TABLE I_MBEW
                            FOR ALL ENTRIES IN I_MARA
                            WHERE MATNR = I_MARA-MATNR.
        SELECT MATNR VKORG VTWEG FROM MVKE
                            INTO TABLE I_MVKE
                            FOR ALL ENTRIES IN I_MARA
                            WHERE MATNR = I_MARA-MATNR.
        SELECT MATNR WERKS LGORT LABST FROM MARD
                            INTO TABLE  I_MARD
                            FOR ALL ENTRIES IN I_MARC
                            WHERE MATNR = I_MARC-MATNR
                            AND WERKS = P_WERKS
                            AND LGORT IN S_LGORT..
    *&             MOVING DATA TO I-OUT                                    *
    LOOP AT I_MARC.
      MOVE I_MARC-MATNR TO I_OUT-MATNR.
      MOVE I_MARC-WERKS TO I_OUT-WERKS.
      MOVE I_MARC-LVORM TO I_OUT-LVORM.
      READ TABLE I_MARA WITH KEY MATNR = I_MARD-MATNR.
      MOVE I_MARA-MBRSH TO I_OUT-MBRSH.
      MOVE I_MARA-MEINS TO I_OUT-MEINS.
      READ TABLE I_MAKT WITH KEY MATNR = I_MARD-MATNR.
      MOVE I_MAKT-MAKTX TO I_OUT-MAKTX.
      READ TABLE I_MBEW WITH KEY MATNR = I_MARD-MATNR.
      MOVE I_MBEW-BWKEY TO I_OUT-BWKEY.
      MOVE I_MBEW-BWTAR TO I_OUT-BWTAR.
      READ TABLE I_MVKE WITH KEY MATNR = I_MARD-MATNR.
      MOVE I_MVKE-VKORG TO I_OUT-VKORG.
      MOVE I_MVKE-VTWEG TO I_OUT-VTWEG.
        LOOP AT I_MARD WHERE MATNR = I_MARC-MATNR
                         AND WERKS = I_MARC-WERKS.
            MOVE I_MARD-LGORT TO I_OUT-LGORT.
            MOVE I_MARD-LABST TO I_OUT-LABST.
            APPEND I_OUT.
        ENDLOOP.
    CLEAR I_OUT.
    ENDLOOP.
    *&             DISPLAYIING FROM I-OUT                                  *
    LOOP AT I_OUT.
    *FORMAT HOTSPOT ON.
    WRITE: /5 I_OUT-MATNR,
            22 I_OUT-WERKS,
            29 I_OUT-LGORT,
            33 I_OUT-LABST,
            56 I_OUT-LVORM,
            61 I_OUT-MBRSH,
            71 I_OUT-MEINS,
            82 I_OUT-VTWEG,
            93 I_OUT-BWKEY,
            104 I_OUT-BWTAR,
            118 I_OUT-VKORG,
            130 I_OUT-MAKTX.
    *FORMAT HOTSPOT OFF.
    ENDLOOP.
    *&        E N D -- O F --  S E L E C T I O N                           *
      END-OF-SELECTION.
    *&                  T O P - O F - P A G E                              *
    TOP-OF-PAGE.
    WRITE 60 'MATERIAL MASTER REPORT -- BASIC LIST'
            COLOR COL_GROUP.
    WRITE: SY-ULINE.
    WRITE: /2 'MATERIAL_NO',
            22 'PLANT',
            28 'STORGE_LOC',
            45 'STOCK',
            54 'FLAG',
            60 'INDUSTRY',
            70 'UNIT',
            76 'DISTR_CHANNEL',
            91 'VALU_AREA',
            102 'VALU_TYPE',
            114 'SALES_ORG',
            128 'DESCRIPTION'.
    *&                  E N D - O F - P A G E                              *
    END-OF-PAGE.
      WRITE: / SY-ULINE.
      WRITE: /85 'PAGNO: ',SY-PAGNO,
               SY-ULINE.
    regards,
    srinivas
    <b>*reward for useful answers*</b>

  • Collection Data Form Schedule

    We did have our form set to appear on every refresh as we were silently trying to gather some data. I've gone back and change the schedule type back to "No Schedule" but the devices are still showing the form each refresh, like it's not pushing out the setting to clients.
    Anyone else experiencing this?

    mmoshcs,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Invisible Mode for Jabber?

    I'm using iChat and I want to know if there's any way to be "invisible" on my jabber (google talk) account.

    See http://discussions.apple.com/thread.jspa?threadID=1725172&tstart=0

  • SPD 2010 Workflow "Collect Data From User" activity + Multi User selection

    Creating a SPD 2010 workflow. Trying to do something that I think should be simple.
    Use a “Collect Data From a User” activity to collect 0 to many “people” that should be affiliated with a piece of content (Discussion).
    After the assigned user completes the task (and after ensuring that there have actually been people associated from the task) I want to take the “people” from the Task list item and move them over to a field on the core Discussion item,
    that is also setup as a Person/Group field (allowing multiple).
    I have tried using both the “Set Field in Current Item” and “Update List Item” activities to map the data over (pulling from the Task item) and in both cases tried using every combination of “Return field as”
    values to do the mapping (i.e. ‘String’, ‘Display Names, Semicolon Delimited’, ‘User Ids, Semicolon Delimited’, etc). In some cases I get vague errors about not being able to do mapping (I get it), in others, it sets the
    data, but only to the first user entered in the Task’s instance of the field.
    After researching a bit, I find that the task from which I am pulling the data only contains one value, eventhough when I submitted the InfoPath form for the task, it accepted my data entry of two
    different users. So I think somewhere between the data entry into the custom task's infopath form, and the update of the same data field in the Task list, the value is being lost.
    I am sure this would be trivial with a custom activity, but we are exploring OOB ways of doing things and I have to imagine this is possible.
    Am I missing something here? This seems “buggy”…
    I am able to repro this in two different environments, using an out-of-box Discussion Board on an out-of-box Team Site.  If it matters Claims Based Auth against Windows only...
    TIA!
    Brian McCullough

    Hi brianpmccullough,
    Collect Data from a user action can only use to collect data from one user, and if you need to collect data from one than one user, please use “Assign
    a Form to a Group” instead, then it will create separate task for each user.
    And if we need to update a user and group field which with multiple selections enabled, we can only use lookup field to get only the one user. And
    to add multiple users to this field, we can only use String Builder, type the user account directly or get information from multiple fields.
    Best regards
    Emir Liu
    TechNet Community Support

  • Link to Data Form in Data Forms folder

    Hi,
    I need to call a Data Form that appears in one folder in a different folder as well.
    the idea is to have the same Data Form in 2 folders but only to maintain once,
    Do you guys know how to do it?
    Thanks,
    Orit
    Edited by: orit911 on 01:05 15/03/2009

    hey guys,
    I know that I can copy the form again (with different name, of course).
    But what I need is to load the form in one folder and in another folder to "call" that form,
    so that I will have the same form in one physical location but the user will see it twice.
    I was thinking about a link or something similar, is that an option?
    Again, the main idea is to maintain once because we have too many forms and we will never remember to update both forms if a change is needed.
    (if i will find a solution it will be used way more than one time)
    Thanks for your help,
    hope to find a solution soon,
    Orit

  • How do I change Oracle Forms access mode?

    Hi,
    I am configuring two separate Oracle servers - one is running Oracle Applications 11i and the other is running Oracle Applications r12. For each server, I need to be able to change the access mode (Native/socket, HTTP, HTTPS) of the Oracle Forms server. Where can I find documentation on how to do this?
    - Kyle

    Hi,
    For 11i, refer to:
    Note: 123718.1 - 11i: A Guide to Understanding and Implementing SSL for Oracle Applications
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=123718.1
    Note: 300969.1 - Troubleshooting SSL with Oracle Applications 11i
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=300969.1
    Note: 417216.1 - Tip for Checking If The Forms Server Is Configured In Servlet or Socket Mode
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=417216.1
    Note: 201340.1 - Using Forms Listener Servlet with Oracle Applications 11i
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=201340.1
    For R12, refer to:
    Note: 376700.1 - Enabling SSL in Release 12
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=376700.1
    Note: 560947.1 - How To Start R12 In Forms Socket Mode For Testing?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=560947.1
    Note: 564066.1 - Oracle Application Object Library SSL Test Transaction Data Test
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=564066.1
    Note: 732282.1 - Oracle Application Object Library SSL Test Transaction Data Test
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=732282.1
    Regards,
    Hussein

  • I have a problem during the collect data and save it in file with the HP8753C

    Hello,
    I'm using the "HP8753 collect and display data.vi" with the functionnality "save" in file (.txt or xls).
    When I'm using it to collect and save data one time to time, I have no problem. But when I would like to use it to collect and save several data with a structure "For", the HP8753 status will become blocked and the collect and save data in file is disable.
    The only function "collect data" with a structure "for" is Ok but will become not OK with the option "save" in file. Why, please ?

    Hello,
    Thank you for contacting National Instruments.
    It sounds like your instrument is "hanging" or "freezing" when you try to read and save data from it in LabVIEW.
    I took a look at the context help for that particular VI. It appears that if you attempt to read data from the HP8753 while it is also taking measurements, it can cause the instrument to hang. This may be the problem you are experiencing.
    Look over your program and ensure that the instrument is not trying to take new measurements as you read data from it in LabVIEW. Sequence structures may be useful in this regard. If you are still experiencing problems, however, let me know.
    Matthew C
    Applications Engineer
    National Instruments

  • How do I disable review mode for open assessments in Adobe Connect?

    I'm running a curriculum to over 400 learners in a call centre.
    All learners are already enrolled in the curriculum.
    The curriculum has a future end date.
    Learners are told by their managers when they are able to access the curriculum.
    Learners are accessing the curriculum in small groups.
    Learners are allowed one attempt at the assessment.
    We are finding that learners are accessing the assessment again - purly because the can do so in review mode - and assuming that this is a second attempt.
    Is there a way to disable the review mode for assessments only in Adobe Connect?

    A solution was given a few years ago, but it involves editing the HTML file used to launch the assessment. The explanation can be found here: http://www.connectusers.com/forums/post/14012/#p14012

  • Difference between "change auth data " and "expert mode" in pfcg

    Gurus ,
    i need to know , what is the difference between
    "change  authorization data "
    and
    "expert mode for profile generation" in PFCG .
    and what is the significance of the three options that we get when we choose expert mode ?

    Hi Susin,
    To change the authorization data for the transactions assigned to the role, choose Change Authorization Data or Expert Mode for Profile Generation.
    If you are generating the profile for the first time, there is no difference between the two modes.
    When you change a role, you must regenerate the authorization profile. In this case, the status of the profile generation is displayed red or yellow at the top of the Authorizations tab page.
    If the status display is red, you must perform an authorization data comparison, since the menu was changed since the last profile generation or no authorization data exists.
    If the display is yellow, the authorization data for the role was changed and saved after the last generation. The generated profile is no longer current. You need to regenerate it.
    The significance of the three options that we get when we choose expert mode is as follows:
    Choose one of the options to maintain the authorization values (in normal mode, the correct option is automatically set):
    1> Delete and recreate profile and authorizations
    All authorizations are recreated. Values which had previously been maintained, changed or entered manually are lost. Only the maintained values for organizational levels remain.
    2> Edit old status
    The last saved authorization data for the role is displayed. This is not useful, if transactions in the role menu have been changed.
    3> Read old status and compare with new data
    If you change transactions in the role menu, this option is the preconfigured. The profile generator compares the existing authorization data with the authorization default values for the menu transactions. If new authorizations are added during this process, they receive the status New. Authorizations that already existed receive the status Old.
    Note the following during the comparison:
    Values for organizational levels that are no longer required are deleted, all others are retained. If new organizational levels are added, you need to maintain them.
    The standard authorization for the object S_TCODE is always automatically filled with the current transactions from the role menu. It cannot be copied or manually changed, only deactivated.
    Thanks,
    Saby..

  • Data Grid vs Data Form

    Hi,
    I can't remeber the followings:
    When we should use a Data Grid instead of a Data Form?
    what are the different features?

    Data forms are meant for Data input. Though data can also be inputted in the Data grid. We use Data grid for running the consolidations. Further, in data forms the user has restricted POV while in case of Data Grid the user can select any members from the dimension heirarchy.
    These are some of the differences..
    Regards,
    Madhavi

  • LMS 4.2.4 Error RICS0001:Internal Error,unable to process the collected data from the device.

    Hi
    LMS 4.2.4 inventory collection fails with Error RICS0001:Internal Error,unable to process the collected data from the device for few devices.
    Can anyone help me out.
    Regards
    Laxmi

    They are definately supported. However such issues are usually due to device packages, if unavailable or not installed.
    Please do following :
    1. Check Admin > software centre > device updates and check any devices packages available in Cisco.com and install it and recheck.
    2. Please do a snmpwalk on problematic device on sysObjectID and share result. Following is the way to do snmpwalk :
    GUI - Open the device in Device Centre (Inventory > Tools > Device Center) and open the device with IP and from tools select snmpwalk and do it for sysObjectID (1.3.6.1.2.1.1.2)
    CLI : CD to NMSROOT/objects/jt/bin from command prompt. run command as per following syntax:
    snmpwalk -v2c -c <snmp_community_string> 1.3.6.1.2.1.1.2
    Example :
    community string = test123
    IP = 10.1.1.1
    snmpwalk -v2c -c test123 10.1.1.1 1.3.6.1.2.1.1.2
    3. Please check your device package, by clicking on the number of packages in front of Inventory, conifg and image management from :
    Admin > System > Software Center > Device Update
    Also, check device identity under edit identity option from :
    Inventory > Device Administration > Add / Import / Manage Devices
    Check my screenshots for details :
    Please check and share results.
    -Thanks
    Vinod
    **Rating Encourages contributors, and its really free. **

Maybe you are looking for

  • Licensing for this product has stopped working Error: 5

    OK. Totally frustrated here. Trying to start InDesign (installed with Master Collection CS4) on Powerbook Pro running 10.5.7 and consistently get the error above: "Licensing for this product has stopped working" and with error: 5. I have attached a d

  • Frontpanel opened by Invoke Node blocks other FP

    Hello, In a project I am working on I would like to open and close a frontpanel displaying a few plots from a different VI. I have managed to create the Visualisation VI and am passing references to the Indicators and the VI itself on to the next blo

  • How to make system backups

    I've had an S10-3 for a couple of weeks.  I just realized that there weren't any DVDs shipped with the system, so I wanted to create backups of the partition.  Any suggestions on how to do this?  I know there is the OneKey Recovery software included

  • System Disks

    Hello, I have broken my system disks. is there anything I can do to download disks or reboot my system? i purchased macbook in US a year ago but am currently based in china - i took it to local mac/cpmputer stores they tried re-installing with newer

  • Regrettably, another disk permissions issue

    Hi all, thanks for taking the time to help me out here; I'm hoping this last resort will resolve my problem as I've exhausted all my own (modest) efforts. *The Problem:* After changing power sources on my MBP (battery to AC), the permissions on all m