Command r issue

what is my next option when trying to restore a drive and Command R does not work on an older macbook?

Sometimes another Mac, a FireWire cable, and Target Disk Mode, could be used to access the failed Mac if it can boot into TDM, and the disk utility may be able to repair the failed computer.
However more unlikely, it would be nice if the optical drive in the attached healthy computer could use a proper version of disk utility, though unlikely would using one from the other's correct installer disc, be.
Some MacBooks did not have a FireWire port. Later ones with Thunderbolt require an adapter, too.
Not sure if this helps at all...
Good luck & happy computing!

Similar Messages

  • Tidal Scheduler Command line issue

    I am unable to pass command parameters with quotes (I need quotes also to be stored in command parameters). The SACmd.exe is not displaying any quotes when Command parameters are passed. I need quotes because I am calling FTP script in Command and source and destination in command parameters. Example is below:
    Command : frppro.exe
    Command parameters should be:  -s "Shared Path!Source" -d "C:\program files\".
    But i am unable to get quotes in command string. Is this a command line issue or let me know is there anyway to get quotes too from command line.

    Try the "fix" I documented at
    http://blog.configmgrftw.com/two-osd-application-install-issues/
    Jason | http://blog.configmgrftw.com

  • WLSE SQL1032N No start database manager command was issued

    Hello,
    i have a problem with my WLSE device.
    it seens like db2 database fails to start.
    2004@WLSE:diag all
    DIAG: IMAGE
    *** PASS: Software image verification passed. ***
    DIAG: BIOS
    *** Drive model does not require BIOS patch. ***
    DIAG: DMA
    Checking disk for DMA errors *** PASS: NO DMA IO errors found. ***
    Checking disk sectors for errors ...*** PASS: NO disk sector errors found. ***
    DIAG: DB2CLEAN *** PASS: No dump files found. ***
    DIAG: DB2VERIFY *** FAIL: Cannot connect to DB2. Integrity verification failed. ***
    DIAG: SERIALNO *** Serial Number -???????? ***
    2004@WLSE:service status
    Process= TFTP
    State = Program started - No mgt msgs received
    Info = Application started by administrator request.
    Process= WirelessSvcMgr
    State = Program started - No mgt msgs received
    Info = Application started by administrator request.
    Process= WLSEjobvm
    State = Running but busy flag set
    Info = WLSEjobvm started.
    Process= WLSEFaults
    State = Running normally
    Info = WLSEFaults is ready.
    Process= CDPbrdcast
    State = Program started - No mgt msgs received
    Info = Application started by administrator request.
    Process= WLSEIdleServer
    State = Program started - No mgt msgs received
    Info = Application started by administrator request.
    Process= WLSERepository
    State = Program started - No mgt msgs received
    Info = Application started by administrator request.
    Process= HaMibDaemon
    State = Program started - No mgt msgs received
    Info = Application started by administrator request.
    Process= WebServer
    State = Program started - No mgt msgs received
    Info = Application started by administrator request.
    Process= Tomcat
    State = Program started - No mgt msgs received
    Info = Application started by administrator request.
    Process= ExcepReporter
    State = Program started - No mgt msgs received
    Info = Application started by administrator request.
    Process= PerfMon
    State = Program started - No mgt msgs received
    Info = Application started by administrator request.
    snmpd (pid 1854) is running...
    Database test failed
    FAIL Version and product query result was:
    SQL1032N No start database manager command was issued. SQLSTATE=57019
    Any idea??? is it possible to start the database manager without restoring the database?
    Thank you in advanced.

    This happens when the database of WLSE is corrupted. Use " reinitdb " command to reinitialize the database. Then try to stop the service for 5 mins and start again.

  • Command prompt issue from VBscript

    So I have this script that works perfectly for parsing out a COM number and then sending data to said COM port via the command line (things like 'ipconfig > //./COM15'). The issue is that it only works when I use the /K modifier which tells the command
    windows to stay open.  I don't want them to stay open, but whenever I remove the /K, it doesn't work. Nothing gets copied to the COM port. I suspect the cause of this is the command prompt closing before things like systeminfo can finish running. So is
    there a way to have the command prompt window stay open for a short amount of time and then close?
    'Part 1: FindCOM port
    fileName = "C:\rtlstuff\COM.txt"
    Set regex = New RegExp
    regex.Pattern = "COM(\d+)"
    regex.IgnoreCase = True
    regex.Global = True
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set file = fso.OpenTextFile(fileName)
    text = file.ReadAll()
    file.Close
    Dim ComPort
    Set matches = regex.Execute(text)
    For Each m In matches
    ComPort = m.SubMatches(0)
    Next
    'Part 2: Set file dictionary
    set oDic = CreateObject("Scripting.Dictionary")
    oDic.Add 0, "ECHO %DATE% %TIME% > //./COM"
    oDic.Add 1, "ipconfig > //./COM"
    oDic.Add 2, "systeminfo > //./COM"
    v = 3
    'Part 3: Set COM Variables
    Set oShell = WScript.CreateObject ("WScript.Shell")
    MODE = "MODE COM" & ComPort & " 9600,N,8,1,P"
    oShell.run "cmd.exe /C" & MODE
    'Part 4: Data transmission
    Dim Command
    x=0
    do while x < v
    Command = oDic.Item(x) & Comport
    msgbox Command
    oShell.run "cmd.exe " & Command
    x=x+1
    wscript.sleep 10000
    loop

    Can you help me with syntax? I'm still not hugely familiar with VB and I'm not sure how to set this up. This current iteration does not work.
    'Part 1: FindCOM port
    fileName = "C:\rtlstuff\COM.txt"
    Set regex = New RegExp
    regex.Pattern = "COM(\d+)"
    regex.IgnoreCase = True
    regex.Global = True
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set file = fso.OpenTextFile(fileName)
    text = file.ReadAll()
    file.Close
    Dim ComPort
    Set matches = regex.Execute(text)
    For Each m In matches
    ComPort = m.SubMatches(0)
    Next
    'Part 2: Set file dictionary
    set oDic = CreateObject("Scripting.Dictionary")
    oDic.Add 0, "ECHO %DATE% %TIME% > //./COM"
    oDic.Add 1, "ipconfig > //./COM"
    oDic.Add 2, "systeminfo > //./COM"
    v = 3
    'Part 3: Set COM Variables\par
    Set oShell = WScript.CreateObject ("WScript.Shell")
    MODE = "MODE COM" & ComPort & " 9600,N,8,1,P"
    oShell.run "cmd.exe /C" & MODE
    'Part 4: Data transmission
    Dim Command
    i = True
    x=0
    do while x < v
    Command = oDic.Item(x) & Comport
    msgbox Command
    oShell.run "cmd.exe " & Command , ,True
    x=x+1
    wscript.sleep 10000
    loop

  • Command Link Issue

    Hi,
    I am using Jdevloper 11g.
    I am facing issue with the following code.
    In brief - I am taking Value from session and want to display those values as Command link on jspx, in af:forEach.
    When I bind that Command Link with Managed Bean that time it displays Last Element only (Code given below).
    When I removed Binding ( binding="#{ManagedBean.schemeName}") at that time it displays all the values on page as Command Link.
    Binding is required for my app to find Link text. Is there any alternative?
      <af:forEach var="item"    items="#{sessionScope.SchemeList}">
    <af:commandLink text="#{item.schemeName}"
                                                    id="cb14" immediate="true"  partialSubmit="true"
                                                    binding="#{ManagedBean.schemeName}"
                                                     inlineStyle="#{item.eligibilStatus eq 'Y' ? 'color:black' : 'color:Red'}"
                                                  actionListener="#{ManagedBean.schemeChangeListener}"/>
    </af:forEach>Thank You,
    Regards,
    Dilkhush

    Hello,
    Thank you,
    The solution you had given that is working.
    Now my issue is I have created Programmatically VO.
    I refereed following link to create Programmatically VO
    http://adfpractice-fedor.blogspot.com/2011/01/adf-bc-programmatically-populated-vo.html
    but My issue is how to set VOs Bind Variable Value.
    Because have to send that value from the bean.
    In above link they took two inputText to set Bind Variable value but in my condition I cannot take InputText.
    I am setting that value in my Managed bean as shown below.
    public void schemeChangeListener(ActionEvent actionEvent) {
          OperationBinding opBinding =
              CommonUtil.getOperationBinding("#{bindings}",
                                             "initParamValues");
          opBinding.getParamsMap().put("custID", customerID.getValue().toString());
          opBinding.getParamsMap().put("accountType", (CommonUtil.evaluateEL("#{bindings.ADAccountType.attributeValue}")).toString());
          opBinding.getParamsMap().put("productID", (CommonUtil.evaluateEL("#{bindings.DMAProductId.attributeValue}")).toString());
          opBinding.getParamsMap().put("entityID", homeEntityID);
          opBinding.getParamsMap().put("schemeCode", linkText);
          opBinding.execute();
    }and I have taken that VO as Table on jspx page.
    Issue is before going to bean method it goes to View object and show NullPointerException because the values never get set.
    The above code is called when the commandLink is clicked code given below.
    <af:commandLink text="#{item.schemeName}"
                                                  id="sName" immediate="true"  partialSubmit="true"
                                                  inlineStyle="#{item.eligibilStatus eq 'Y' ? 'color:black' : 'color:Red'}"
                                                  actionListener="#{MakBean.schemeChangeListener}"/>is there any solution how can I set the Bind Variable value from bean and get Expected result in table.
    Thank you
    Regards,
    Dilkhush

  • Acroread command line issue nUp and a custom page size

    When I use the dialog box with the settings I need - It works fine..
    Using acroread 9.5.5 on a Linux box.
    Does not work in command line with -toPostScript -nUp 6 4 0 -size=1296x1440 -pairs <file_name>.pdf <out_file_name>.ps
    If I choose size=legal or size=tabloid the resulting ps has reduced size pages and does flow correctly but
    I want to use Large Paper 18"x20" and not downsize the original PDF input files.
    Basically placing the images side by side

    Were you ever able to get it to print on large paper?  I'm facing a similar issue.  A pdf with page size 11x17 but when I run it thru acroread it changes the page size to 8.5x11. 

  • Command Line Issue

    Hey All,
    This batch file works:
    d:\oracle\BIToolsHome_4\bin\dis51usr.exe /connect userid/password@database /opendb BatchTest /sheet 2010 /batch /export HTML d:\batchtest
    but this one does not:
    d:\oracle\BIToolsHome_4\bin\dis51usr.exe /connect userid/password@database /opendb "00000 Workbook Analysis Begininng 01 Jan 2009" /sheet ALL /batch /export HTML d:\batchall
    The first batch file executes only ONE worksheet and exports the output to a file successfully. The second batch file executes ALL sheets in the workbook but does not produce the output file. Its execution does not produce any error messages but no output is generated. Removing the '/batch /export HTML d:\batchall' commands opens Discoverer Desktop and executes all worksheets successfully.
    I guess I am just being a silly goose but I cannot find the problem. Any help towards solving the problem will be appreciated.
    Thanks,
    Jerre

    Hi Jerre
    Interesting indeed. The export command, taken from my book, is as follows:
    /export <format><export-file-name> This exports the results of executing a worksheet to the file named, in the format specified. If you do not specify a worksheet on the command line, Discoverer exports the results from the active worksheet. If you nominate /sheet ALL on the command line, Discoverer exports all of the worksheets in the workbook and names the output files as <file><sheet-name>.<ext>, identically to the behavior of the Export Data command.
    First of all, because you are using the ALL sheets switch the file name has to be unique and cannot be named the same as a folder. Do you happen to have a folder named batchall? That would cause a problem.
    Next, I am wondering if there is something with the sheet names that could be causing the issue. Can you take a look at the sheet names and see if there are any characters that might cause an issue? As a test, try renaming the sheets to all one word with underscores.
    Best wishes
    Michael

  • Smartform - Command Node Issue

    Hi Super-Techies,
    I am facing a strange issue in smartform. When I am using a command node to trigger a page, in the main window 1 table needs to get triggered (but it si not triggering). When I try to print the same table without any command node (i.e. in the same page) its working fine and the table data is being displayed.  
    But when I make use of command node to trigger to new page, All other windows are getting executed except the main window table.
    Note; I have made use of 2 tables in main window. Normally 1st table should print, once new page is triggered, 2nd table should print and not the 1st one.
    Can anyone help me out of this strange issue.
    Thanks in Advance,
    Vinit

    Hi Vinit ,
       In order to print data you require upon using command node , you need to display it on a secondary window.
    Steps :
    1) create secondary window .
    2) provide table n related details .
    3) u need not have a main window (optional) ;as data in main window won't be displayed.
    This is the way I resolved the same issue .Hope it helps .
    Thanks & regards,
    Prakrita .

  • Command key issues with some apps after highlighting with trackpad

    When I attempt to use command-c to copy from Microsoft Office or Lotus Notes I often get nothing. I've gotten in the habit of pressing command-c 2 or 3 times to make sure I got it. Its not physical keyboard issue since I do not have this problem with other apps and I tested a BT keyboard as well. I've noticed that other command key sequences also get dropped, e.g. command-u for underline. I've also had the delete key get dropped. It feels like Office and Notes are just to slow to respond and somehow lose the key, this frequently happens after I highlight something and quickly press command-something.
    I used tap to touch. If I tap tap drag tap then command-whatever it appears to work. But tap tap drag command-whatever does not appear to terminate the drag. Is there a way to make Office/Notes react faster? Or tune the touch pad? Hack OS/X?
    Thanks.

    And after all is said and done, you may very well need to restore the device as new and start from the beginning again, especially if the glitch is contained in your previous backup. Restoring from that backup (if it contains the glitch) will also restore the glitch. This is the reason for possibly restoring as new.
    Make note of all your Settings (write them all down, preferably using a PC/notepad type program), backup all your music & apps and any other important information you will lose by restoring as new. As far as text messages go, you may not be able to back those up manually (I believe you can but you'd need to purchase additional software for the PC/Mac) and will likely lose them.

  • Setup a printer from command line issues

    I have been trying to figure out why my arguments are not working. I was originally creating a .bat file with the PrinterUIEntry commands, but I was getting an "Invalid Argument" error. I switched to the cscript method and I am still not understanding
    why it get errors on the driver install and printer install. The user of the created batch file will be non-IT users. I want to send a package with them with the unzipped printer drivers and install using the .inf file. I can't seem to get it
    working properly and don't want to waste more time trying to figure out what is wrong. Any help would be appreciated. Thanks!
    ====First method attempted====
    rundll32 printui.dll,PrintUIEntry /ia /c\\L638 /l "C:\Temp\NC Print Drivers\dellopd_A06\dellopd.inf"
    ----Error read "Invalid Arguments"
    rundll32 printui.dll,PrintUIEntry /if /c\\L638 /f "C:\Temp\dellopd_A06\dellopd.inf" /b"Dell 5210n" /u /r "IP_192.168.10.157"
    ----Error read "Invalid Arguments"
    =====Current method====
    cscript C:\Windows\System32\Printing_Admin_Scripts\en-US\prnport.vbs -a -r IP_192.168.10.157 -h 192.168.10.157
    ----This creates the port just fine, no errors
    cscript C:\Windows\System32\Printing_Admin_Scripts\en-US\prndrvr.vbs -a -i "C:\Temp\dellopd_A06\dellopd.inf" -h "C:\Temp\dellopd_A06"
    ----Error reads "Unable to add printer driver Error 0x80041008"
    cscript C:\Windows\System32\Printing_Admin_Scripts\en-US\prnmngr.vbs -a -p "Dell 5210n" -r "192.168.10.157"
    ----Error reads "Unable to add printer Dell 5210n Error 0x80041008 invalid parameter
                              Operation PutInstance
                              Provider CIMWin32
                              Description
                              Win32 Error Code"

    Hi,
    Would you please try following commands?
    Please don't add quotes on the inf file path: change the driver folder name NC Print Drivers as NCPrintDrivers.
    rundll32 printui.dll PrintUIEntry /if /f C:\Temp\NCPrintDrivers\dellopd_A06\dellopd.inf /r "192.168.10.157"
    Make sure to run the command as admin.
    Let me know if it can work fine.
    Kate Li
    TechNet Community Support

  • At line-selection & at user-command event issue

    hi
    i am working on a interactive report,with at line & at user command event,on list 3 i have used a pf status,to trigger the at user command event,till that i was working with at line selection,which are working fine,but on list 3,i am able to see my pf status,but at user command event is not working properly,its still working like at line selection event,if i clk on record,it take to for nxt action,which i want to do through the action button of pf status.
    In debugging i checked that it coming to at user command,but the action in sy-user is 'PICK' & its doing the operation.
    WHEN '3'.
          IF itab4[] IS NOT INITIAL.
            SET PF-STATUS 'Z203'.
            LOOP AT itab4.
              AT FIRST.
                WRITE:/1 'Material' ,18 'Name'.
              ENDAT.
              WRITE:/1 itab4-matnr,8 itab4-maktx.
              HIDE:itab4-matnr.
            ENDLOOP.
          ELSE.
            WRITE:/ 'No Data Found'.
          ENDIF.
      ENDCASE.
      BREAK-POINT.
    AT USER-COMMAND.
      CASE sy-ucomm.
        WHEN 'CALL'.
          PERFORM bdc_mm02.
      ENDCASE.
    pls tel me how to use at line selection & at user command in same report to make both events working efficiently.
    regds
    vipin

    Check whether you have assigned Function Key F2 to your function code 'CALL'. If so change that function key. The function key F2 is always linked to function code 'PICK'.
    Regards
    Sathar

  • Command authorization issue.

    Hello.
    I'm using commands authorization with Cisco Secure ACS 4.1. This morning I'm going to set the MOTD and entries fail because my banner starts with a blank.
    The shell command set that I'm using is a "permit unmatched commands".
    Any idea?
    Thanks.
    Andrea

    What you're experiencing is a known defect:
    CSCtg38468    cat4k/IOS: banner exec failed with blank characters
    Symptom:
    %PARSE_RC-4-PRC_NON_COMPLIANCE:
    The above parser error can be seen together with traceback, when configuring a banner containing a blank character at the begining of line.
    Conditions:
    Problem happens, when AAA authorization is used together with TACACS+
    Workaround:
    Make sure there is no blank character at the begining of line in the banner message.
    Problem Details: trying to configure banner exec with blank character at beginning of line failed.
    This happens when configuring the banner exec via telnet/ssh !
    When configuring the same banner exec via console-port, everything is fine.
    Note the blank characters at beginning of each line. When removing those, banner exec works fine.
    Again, this was working till IOS version 12.2(46)SG.
    Beginning with 12.2(50)SG1 and up, the behaviour has changed.
    ~BR
    Jatin Katyal
    **Do rate helpful posts**

  • Command Prompt Issue

    Hi everybody,
    I've dloaded the latest JDK, and have been using JCreator to compile and run programs. I do need to, however, use the command prompt to compile/execute programs as well. (e.g. javac myProgram.java) Java commands are not recognized as internal or external commands for some reason. I'm running windows XP pro, btw. Is there any way to manually fix this problem? Any help is appreciated.

    ok I think I got it to work, but I've got a noob question. To comile you type: javac filename.java, but I forgot how to run the program. I thought it was: java filename. Sorry this is such a dumb question, but I just started java.

  • Command+backspace issue

    Hi there,
    I've been trying to send files to the trash through the command+backspace shortcut, but from some days 'till now, it only says to me that the file will be deleted immediately (with a confirmation dialog box), instead.
    I've defaulted all of the shortcut options in the prefs panel, and can't find anything else on the web to solve this. I'd like the shortcut as it was!
    Thanks in advance!

  • Command-tab issue

    I'm not sure if it's a feature, but sometimes I press Command+Tab and only the icons for apps in that space show. If I let go and try it again, I get the whole list of apps open system-wide.
    I've done some searching but can't find any answers. I sthis a feature?

    guitar4542 - My question wasn't how to get the app switcher up, thanks.
    Carolyn - I can't see anything in there for switching with command-tab at all. The basic feature I know, but this whole switching between apps that are only in that space is something that seems to be new, since Leopard has Spaces and previous releases of OS X didn't.

Maybe you are looking for

  • ITunes trying to start, then gives an error and closes.

    Hello When I click on iTunes, I get: "+iTunes has encountered a problem and needs to close. We are sorry for the inconvenience+" When I click on Don't Send, I get: "iTunes.exe has generated errors and will be closed by Windows. You will need to resta

  • Flash plugin created not working in flash player 10.1 (release - not beta)

    Hello, i wrote a plugin using flash (you can click on the preview button to see it): http://activeden.net/item/shiny-plugin/94112 It worked perfectly on all the previous flash player versions and in the new flash player 10.1 you can see the effect. A

  • Iphone 5 not working properly

    Hi, Recently my iphone 5 has been acting up a lot. first it started to lag a lot, then battery icon will tell me it's fully charged, but it's not. Now the screen will turn green (sometimes it will have lines appear) turn off and turn back on. not sur

  • Approval Preview

    Hi Friends, I want to display the approval preview for shopping carts and the follow on documents as a table by default. Can you please let me know where to make the changes? Regards, Kumar Edited by: Kumar on Apr 10, 2008 9:45 AM

  • New Scenario.

    Hai all MM gurus, The client is procuring Excisable  Bulk raw materials on contract basis from Vendor & also have a contract with transporter also to carry the material. 1.The stock should be updated with receipt weight - weighbridge weight. 2.He wan