Want to run synonym script where schema should be passed parameter as once

HI,
I Want to run creation of synonym script where schema should be entered only once.
My synonym script is as follows.I Should enter user or schema only once for all the synonyms.
CREATE SYNONYM EMP FOR & user .EMP ;
CREATE SYNONYM DEPT FOR & user .DEPT ;
CREATE SYNONYM EMPDEPT FOR & user .EMPDEPT ;
and so on
pls anyone help ne out
thanks

srinivas wrote:
HI,
I Want to run creation of synonym script where schema should be entered only once.
My synonym script is as follows.I Should enter user or schema only once for all the synonyms.
CREATE SYNONYM EMP FOR & user .EMP ;
CREATE SYNONYM DEPT FOR & user .DEPT ;
CREATE SYNONYM EMPDEPT FOR & user .EMPDEPT ;
and so on
pls anyone help ne out
thanksRun the result of the following query
SELECT      'create synonym '
         || table_name
         || ' for '
         || owner
         || '.'
         || table_name
         || ';'
  FROM   all_tablesKamran Agayev A.
Oracle ACE
My Oracle Video Tutorials - http://kamranagayev.wordpress.com/oracle-video-tutorials/

Similar Messages

  • Do you want to run the script? Yes.

    I'd like to be able to run a script without having to confirim that I want to run the script.
    "You are about to run a script in Adobe InDesign CS5. You should only run scripts from a trusted source.
    Do you want to run the script?"
    Is there a way to execute the script without having to click this?

    I should have clarified that I want to execute the file externally, through a BAT file. I'm trying to eliminate all GUI steps. Essentially I have a set of routines I'd like run once a day, it would be ideal to run them outside of office hours as I'm dealing with the files and InDesign in other ways throughout my workday.
    However as you pointed out if you run the script through the Script Panel there is no dialog asking for confirmation, so it must be possible to execute a script without the dialog.

  • Why am I being asked if I want to run a script?

    I have a script application set to run daily via Ical. For some reason, now when the script begins running at the assigned time a window comes up asking me to "Press run to run this script". I don't recall this coming up previously, and (I'm new to scripting) I'm not sure how to script this away. I just want the script to go ahead and run, without a go ahead from me. Any thoughts?
    Thanks.

    When you save a script as an application, there are some check boxes near the bottom of the file dialog, one of which turns off that cover.

  • ITunes won't run - invisible window where iTunes should be, but it never launches.

    I'm running Windows Vista 32 (I know, I should upgrade) and over the last few weeks, I noticed that my podcast wasn't downloading new eps.   Now, iTunes won't run at all.
    I've done a full scan of the PC and there are no viruses found.   I'm using Kaspersky.
    I've un-installed all Apple apps and rebooted before trying to reload iTunes and it never runs.
    Anyone have any idea what might be preventing iTunes from running?
    I have a Windows 7 PC on the other desk, connected through the same switch and Cable Modem and iTunes is running fine on it, so it's not network / internet related, as far as I can tell.
    Thank you,
    J

    "The feature that you are trying to use is on a network resource that is unavailable. Click OK to try again or enter an alternate path to another folder containing the installation package iTunes.msi in the box below"
    Let's just run through the standard procedures for that one again, just to be sure.
    first, head into your Add/Remove programs and uninstall your QuickTime. if it goes, good. if it doesn't, we'll just attend to it when we attend to itunes.
    next, download and install the Windows Installer CleanUp utility. Then use it to clear any existing itunes and/or QuickTime installation configuration information from the PC. (Launch CleanUp, find any iTunes and/or QuickTime entries in the list of programs in CleanUp, and remove those entries.)
    Description of the Windows Installer CleanUp Utility
    next, use the the following document as a guide for manual removal of leftover itunes and quicktime program files:
    Removing iTunes and QuickTime for Windows
    now try another itunes install. does it go through properly this time?
    (If any step of this procedure failed to work, explain to us as best you can what the problem was.)

  • Script Alert "You should only run scripts from a trusted source."

    I created a small javascript which opens Photoshop and resizes some images.
    I want to be able to double-click the .JSX file from Windows Explorer, and have Photoshop execute the script. Likewise, I want to be able to run the .JSX file from the command line.
    The script runs perfectly. However, the problem is that I don't want any user interaction. I want to be able to run the script from the command line without the user having to click anything. What happens now when I try to run the file from Windows Explorer of the command line is, I get a Script Alert with the following text:
    You are about to run a script in Adobe Photoshop CS3. You should only run scripts from a trusted source. Do you want to run the script? Yes/No
    Is there any possible way to bypass this message or to answer in the affirmative?
    Thanks,
    Jamie L.

    Hi... Sorry to revive such an old thread,
        Does anyone know the "trusted source" folder for MAC CS4.
    EDIT!
    My bad.  "The /users/<user_name>/documents/Adobe Scripts" folder is working for this purpose for me.  I needed a path to it and forgot that the ~ resolves to the current user.  Sweet.
    -Bill

  • How to run Open scripts on Mozilla Firefox?

    Hi,
    My open scripts are working fine on IE7. I want to run same scripts on Firefox 5.0.
    Can you please tell me the steps?
    Regards,
    Deepti

    Hi,
    Not all the firefox versions are supported. Let me point you to Error  while recording with fire fox (4.0)  browser. So, you'll end up getting errors like that.
    As far as using firefox goes (i.e. once you have the right version),
    Go to "View" menu in openscript and under
    Openscript>Preferences>General>Browsers select firefox.
    Thank you,
    Narayan
    Edited by: nryn on Aug 9, 2011 10:12 PM (link insert went wrong)

  • ORA-06502: PL/SQL: numeric or value error : Not able to run a script

    Hi All,
    I want to run a script like this:
    DECLARE
    I_so_status_dtl     RIB_SOStatusDtl_REC;
    BEGIN
    I_so_status_dtl := RIB_SOStatusDtl_REC('0'     --Cust Order No
                   ,'1000000014'     --Dest ID
                   ,'100010222'     --Item ID
                   ,1          --Order Line Number
                   ,1          --Unit Quantity
                   ,'R'          --Status
                   ,'RMS12DEV'     --User ID
                   ,'06-May-2001'     --Updated Date
    End;
    I am trying to run this script. Actually this script is supposed to generate an XML message, which I require. Here's the definition for the TYPE RIB_SOStatusDtl_REC:
    create or replace TYPE RIB_SOStatusDtl_REC UNDER RIB_OBJECT (
         cust_order_nbr     VARCHAR2(10),
         dest_id     VARCHAR2(10),
         item_id     VARCHAR2(25),
         order_line_nbr     NUMBER(3),
         unit_qty     NUMBER(12,4),
         status     VARCHAR2(2),
         user_id     VARCHAR2(10),
    updated_date DATE,
         overriding member procedure appendNodeValues( i_prefix in varchar2)
    ,constructor function RIB_SOStatusDtl_REC (rib_oid number, cust_order_nbr VARCHAR2, dest_id VARCHAR2, item_id VARCHAR2, order_line_nbr NUMBER, unit_qty NUMBER, status VARCHAR2) return self as result
    ,constructor function RIB_SOStatusDtl_REC (rib_oid number, cust_order_nbr VARCHAR2, dest_id VARCHAR2, item_id VARCHAR2, order_line_nbr NUMBER, unit_qty NUMBER, status VARCHAR2, user_id VARCHAR2) return self as result
    This TYPE has a body which actually generates an XML message.
    But whenever I am trying to run this, I am getting the following message:
    Error report:
    ORA-06502: PL/SQL: numeric or value error: character to number conversion error
    ORA-06512: at line 6
    06502. 00000 - "PL/SQL: numeric or value error%s"
    *Cause:   
    *Action:
    Therefore I am not able to run the following script. Here I am passing hard coded value within the TYPE, as I have run similar kind of scripts, which accepts this and creates an xml message. Can anyone help me what's the wrong with this script?
    Thanks & Regards,
    Debabrata

    Hi,
    Create one constructor same as with 8 parameters as you have constructor for only 7 and 8 9 parameters.
    Regards
    RK

  • RUNNING PHP SCRIPT WITH ZEND FRMWRK IN WINDOWS TASK SCHEDULER

    I have a PHP script which includes the Zend framework Mail.php for sending mails.
    I am running a WAMP server and i used DW to create it.
    I want to run my script in every 5 mins, How i can schedule it in Windows task scheduler.
    I tried running a bat which contains the php.exe path and arguments as php file but it gives an error that zend/mail.php not found.
    Please help its really urgent.

    Thanks for your response.
    bat file has:
    path of the php.exe -f path of php file.
    But when it runs it gives an error that the zend framework file not found.
    I have a seperate PHP includes folder under which zend FW is stored.
    That folder is marked in includes_paths in php.ini.

  • How to run Powershell script (function) through Windows Task Schduler ??

    Hello All,
    i have Powershell script which is created as a function. I have to give parameters to run the script. And it is working fine. Now i want to run this script through windows task scheduler but it is not working. I dont know how to call powershell function
    through task scheduler.
    From command line i run it like this:
    . c:\script\Get-ServiceStatusReport.ps1
    dir function:get-service*
    Get-ServiceStatusReport -ComputerList C:\script\server.txt -includeService "Exchange","W32Time" -To [email protected] -From [email protected] -SMTPMail mail01.xxx.gov.pk
    In windows Task scheduler I am giving this: it runs but i dont receive any output :
    Program/Script:
    C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
    Parameter:
    -file ". 'Get-ServiceStatusReport.ps1 -ComputerList C:\script\server.txt -includeService  "Exchange","W32Time" -To [email protected] -From [email protected] -SMTPMail  mail01.xxx.gov.pk'"
    Please HELP !!!

    Thanks for the reply:
    The script is already saved as Get-ServiceStatusReport.ps1 .
    On powershell it does not run like .\Get-ServiceStatusReport.ps1 (parameter).
    But i have to call it as function:
    Like this:
    Get-ServiceStatusReport -ComputerList C:\script\server.txt -includeService "Exchange","W32Time" -To [email protected] -From [email protected] -SMTPMail mail01.xxx.gov.pk
    As you said:
    I tried to run it like this:
    Program/Script:
    C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
    Parameter:
    -file "c:\script\Get-ServiceStatusReport.ps1 -ComputerList C:\script\server.txt -includeService  "Exchange","W32Time" -To [email protected] -From [email protected] -SMTPMail  mail01.xxx.gov.pk'"
    But its not working , on scheduler its giving error: (0xFFFD0000)
    Please HELP !!!
    WHOLE SCRIPT:
    function Get-ServiceStatusReport
    param(
    [String]$ComputerList,[String[]]$includeService,[String]$To,[String]$From,[string]$SMTPMail
    $script:list = $ComputerList
    $ServiceFileName= "c:\ServiceFileName.htm"
    New-Item -ItemType file $ServiceFilename -Force
    # Function to write the HTML Header to the file
    Function writeHtmlHeader
    param($fileName)
    $date = ( get-date ).ToString('yyyy/MM/dd')
    Add-Content $fileName "<html>"
    Add-Content $fileName "<head>"
    Add-Content $fileName "<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>"
    Add-Content $fileName '<title>Service Status Report </title>'
    add-content $fileName '<STYLE TYPE="text/css">'
    add-content $fileName "<!--"
    add-content $fileName "td {"
    add-content $fileName "font-family: Tahoma;"
    add-content $fileName "font-size: 11px;"
    add-content $fileName "border-top: 1px solid #999999;"
    add-content $fileName "border-right: 1px solid #999999;"
    add-content $fileName "border-bottom: 1px solid #999999;"
    add-content $fileName "border-left: 1px solid #999999;"
    add-content $fileName "padding-top: 0px;"
    add-content $fileName "padding-right: 0px;"
    add-content $fileName "padding-bottom: 0px;"
    add-content $fileName "padding-left: 0px;"
    add-content $fileName "}"
    add-content $fileName "body {"
    add-content $fileName "margin-left: 5px;"
    add-content $fileName "margin-top: 5px;"
    add-content $fileName "margin-right: 0px;"
    add-content $fileName "margin-bottom: 10px;"
    add-content $fileName ""
    add-content $fileName "table {"
    add-content $fileName "border: thin solid #000000;"
    add-content $fileName "}"
    add-content $fileName "-->"
    add-content $fileName "</style>"
    Add-Content $fileName "</head>"
    Add-Content $fileName "<body>"
    add-content $fileName "<table width='100%'>"
    add-content $fileName "<tr bgcolor='#CCCCCC'>"
    add-content $fileName "<td colspan='4' height='25' align='center'>"
    add-content $fileName "<font face='tahoma' color='#003399' size='4'><strong>Service Stauts Report - $date</strong></font>"
    add-content $fileName "</td>"
    add-content $fileName "</tr>"
    add-content $fileName "</table>"
    # Function to write the HTML Header to the file
    Function writeTableHeader
    param($fileName)
    Add-Content $fileName "<tr bgcolor=#CCCCCC>"
    Add-Content $fileName "<td width='10%' align='center'>ServerName</td>"
    Add-Content $fileName "<td width='50%' align='center'>Service Name</td>"
    Add-Content $fileName "<td width='10%' align='center'>status</td>"
    Add-Content $fileName "</tr>"
    Function writeHtmlFooter
    param($fileName)
    Add-Content $fileName "</body>"
    Add-Content $fileName "</html>"
    Function writeDiskInfo
    param($filename,$Servername,$name,$Status)
    if( $status -eq "Stopped")
    Add-Content $fileName "<tr>"
    Add-Content $fileName "<td bgcolor='#FF0000' align=left ><b>$servername</td>"
    Add-Content $fileName "<td bgcolor='#FF0000' align=left ><b>$name</td>"
    Add-Content $fileName "<td bgcolor='#FF0000' align=left ><b>$Status</td>"
    Add-Content $fileName "</tr>"
    else
    Add-Content $fileName "<tr>"
    Add-Content $fileName "<td >$servername</td>"
    Add-Content $fileName "<td >$name</td>"
    Add-Content $fileName "<td >$Status</td>"
    Add-Content $fileName "</tr>"
    writeHtmlHeader $ServiceFileName
    Add-Content $ServiceFileName "<table width='100%'><tbody>"
    Add-Content $ServiceFileName "<tr bgcolor='#CCCCCC'>"
    Add-Content $ServiceFileName "<td width='100%' align='center' colSpan=3><font face='tahoma' color='#003399' size='2'><strong> Service Details</strong></font></td>"
    Add-Content $ServiceFileName "</tr>"
    writeTableHeader $ServiceFileName
    #Change value of the following parameter as needed
    $InlcudeArray=@()
    #List of programs to exclude
    #$InlcudeArray = $inlcudeService
    Foreach($ServerName in (Get-Content $script:list))
    $service = Get-Service -ComputerName $servername
    if ($Service -ne $NULL)
    foreach ($item in $service)
    #$item.DisplayName
    Foreach($include in $includeService)
    write-host $inlcude
    if(($item.serviceName).Contains($include) -eq $TRUE)
    Write-Host $item.MachineName $item.name $item.Status
    writeDiskInfo $ServiceFileName $item.MachineName $item.name $item.Status
    Add-Content $ServiceFileName "</table>"
    writeHtmlFooter $ServiceFileName
    function Validate-IsEmail ([string]$Email)
    return $Email -match "^(?("")("".+?""@)|(([0-9a-zA-Z]((\.(?!\.))|[-!#\$%&'\*\+/=\?\^`\{\}\|~\w])*)(?<=[0-9a-zA-Z])@))(?(\[)(\[(\d{1,3}\.){3}\d{1,3}\])|(([0-9a-zA-Z][-\w]*[0-9a-zA-Z]\.)+[a-zA-Z]{2,6}))$"
    Function sendEmail
    param($from,$to,$subject,$smtphost,$htmlFileName)
    [string]$receipients="$to"
    $body = Get-Content $htmlFileName
    $body = New-Object System.Net.Mail.MailMessage $from, $receipients, $subject, $body
    $body.isBodyhtml = $true
    $smtpServer = $MailServer
    $smtp = new-object Net.Mail.SmtpClient($smtphost)
    $validfrom= Validate-IsEmail $from
    if($validfrom -eq $TRUE)
    $validTo= Validate-IsEmail $to
    if($validTo -eq $TRUE)
    $smtp.UseDefaultCredentials = $true;
    $smtp.Send($body)
    write-output "Email Sent!!"
    else
    write-output "Invalid entries, Try again!!"
    $date = ( get-date ).ToString('yyyy/MM/dd')
    sendEmail -from $From -to $to -subject "Service Status - $Date" -smtphost $SMTPMail -htmlfilename $ServiceFilename

  • Running Maintenance Scripts for Mac OS 10.5.8 HELP!

    I am trying to run the maintenance scripts on my laptop for the first time. I go to Terminal type in "sudo periodic daily weekly monthly" and hit return. A warning message pops up the some data may be lost.... and the the Password prompt comes up. I back up consistently so I just want to run the scripts since it has never been done. However, when I try to type in my password, NOTHING types. I hit return and tried again, but nothing. Can someone please help me figure out what is wrong and if there is any other maintenance I need to do to the system?
    Thanks in advance for any help.

    You don't need to use any utility, or perform any procedure, to make sure OS X's built-in maintenance tasks have run under OS X 10.5 and later.
    OS X 10.5 will run its cron jobs automatically (actually, they are no longer handled by the UNIX facility "cron", they are now handled by a similar facility called "launchd". if that means anything to you) whether you have left your computer on all night or not. You no longer need a utility to run missed maintenance as of OS X 10.5. It will run automatically at the next available opportunity. Actually, this was the case as of OS X 10.4, but a bug kept the maintenance routines from running more than once per restart under OS X 10.4. This was fixed in OS X 10.5
    http://discussions.apple.com/message.jspa?messageID=6552347
    http://arstechnica.com/reviews/os/macosx-10.4.ars/5
    http://developer.apple.com/macosx/launchd.html

  • Launchd - can it run a script when users log in OR switch?

    I'm hoping to find someone who knows all the gory details of launchd. Here's the why and what: I'm trying to coerce Aperture into letting two users on the same computer share the same Aperture Library, both able to import photos and see and use what the other has done. Initially it is no problem, change the permissions so everyone has read/write/execute, put the Library in a common area, and point both person's Aperture at it. The problem is that Aperture changes permissions of things inside the Library as you use it, and especially when one person imports, the other person can't see that stuff.
    So I want to run a script whenever someone logs in or becomes the active user by fast user switching; the script will simply change ownership and permissions of the library and everything in it to restore full access.
    After days of research and testing, I made a test launchd plist file (this is the configuration file or agent that launchd looks at and runs your script when criteria are met). It sits in /Library/LaunchAgents/, here it is:
    <?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>org.jim.test</string>
    <key>LimitLoadToSessionType</key>
    <string>LoginWindow</string>
    <key>ProgramArguments</key>
    <array>
    <string>/Library/Scripts/testscript.sh</string>
    </array>
    <key>RunAtLoad</key>
    <true/>
    <key>StandardErrorPath</key>
    <string>/Users/jim/Desktop/test.err</string>
    <key>StandardOutPath</key>
    <string>/Users/jim/Desktop/test.out</string>
    </dict>
    </plist>
    The actual test script is sitting in /Library/Scripts/:
    #!/bin/bash
    echo "org.jim.test.plist was run at `date`"
    So if the plist is loaded and the script run, the date and time are written in the test.out file on my desktop. This thing runs great when a user logs in. The problem is, it doesn't run when users switch by fast user switching. In reading the documentation, it was vague about this, whether that could be done; I thought it could.
    Can anyone help with a way to get the script to run when any user takes control by any means? As an added complication, which I'll worry about later, the script has to run as root because it's the only way to get the ownership and permissions changed.
    Thanks,
    Jim

    BobHarris is the MAN. ACLs seem to have worked. I put the Aperture Library in /Users/Shared/ApertureLibrary, restored the regular permissions as best I could (me as owner, staff as group, 755), pointed each person's Aperture to the library, then proceeded with the ACL magic. First I created a group for my wife and I, called 'aperture', in the Accounts preference pane. That was to simplify the ACLs (one entry instead of 2) and so that other users (son) aren't able to muck it up.
    It took one stinking Terminal command (note that 'aperture' at the beginning of the quote is the group, not the program, folder or library):
    chmod -R +a "aperture allow list,addfile,search,delete,add_subdirectory,delete_child,file_inherit,directoryinherit" ApertureLibrary.aplibrary
    I was unsure whether this list of permissions was necessary or sufficient, but it seems to have worked so far. Both users can access the library. I imported a different picture by each user, and the other user could then see and delete the picture imported by the other. This was not possible before.
    Bob, thanks for the great idea. After a little more testing I'll post a complete how-to in the latest "how do we share Aperture" thread, and give you due credit. The bad news is all the launchd fun is over
    Jim

  • Running Ecatt script multiple times

    I have created a ecatt script for ME21N. I need the script to run multiple times.So,i have used Do Enddo statement and put the number of times to be executed.
    The script is running fine for the first time. then its not running. From the second time,its putting blank values into the fields and not saving the data.
    How can i run the script multiple times.
    Thanks,
    Aparna.

    Hello,
    When you run the script multiple time then you will have to pass different values to the fields so that every time the script is run with new set of values and the data is created.
    So in the script you will have to parameterize the fields and then handle the position of the fields so that when the script is run for the first loop counter the data is maintained in the first line of the transaction(for example) and the increament the counter for the second run so that the control moves to the second line for the second execution similarly for the multiple runs.
    Alternatively parameterize the fields with the table containing so many entries as the number of times you want to run the script and for each execution one set of entry from the table is picked and used in the execution for the next run the second set of values is used and so and so forth.
    Hope it answers your question.
    Thanks and Best regards,
    Ajay

  • Run a script on all documents in .indb?

    Hi, everyone,
    Apologies if I didn't hit on the right search terms to have answered this myself.
    I'm applying a couple of scripts to each document in a book file, and found myself wondering if there's a way to run a script so it alters all the .indds at once.
    Is there a trick for this?
    Thanks!
    CS4
    Formatting Tools
    OS 10.5.8
    Tea, please

    If you are talking about running your own script, you can write a loop to go through all the documents in a book.
    If you are talking about running Formatting Tools (now called Style Utilities) on multiple documents, it can't be done. It is not a bad idea to offer that though, and I think I'll put it on my to-do list...
    BTW, I recommend updating to the latest version. There's additional functionality in the newer versions and the update is free on the same version of InDesign... (The Publisher Suite plus Proper VJ should be a drop-in replacement for InBook.)
    Harbs

  • How do you run a script?

    Hi...could someone please post explicit instructions on how to run a script in Leopard? I want to run the script below in order to delete all the originals from my iPhoto library and free up loads of space (I have 10,000 photos, almost ALL of them have been altered from the original). The problem is, I dont know how to run a script or even what a script is! Can someone post how to do this for the mot very basic beginner? Here is the script:
    mkdir ~/.Trash/iPhoto-Originals
    cd ~/"Pictures/iPhoto Library/Modified/"
    find . -type f -exec mv "../Originals/{}" ~/.Trash/iPhoto-Originals/ \;
    Thanks!
    Kevin

    If you wanted to do this on a regular basis, you could put those commands into an Automator workflow, save it as an applications, and then whenever you want to repeat this operation you just double-click on the Automator file.
    Applications -> Automator
    Custom -> Utilities -> Run Shell Script
    Drag those shell commands into the Automator *Run Shell Script* window, replacing the word cat you will see when the *Run Shell Script* panel opens.
    Save As...
    File Format: Application
    Save

  • I want to run apple Hardware Test but can't find it on any CD's.  I bought my iMac in 2009.  I think it had 10.4 installed.  It's not on my installation disk.  Where can I find it?

    I want to run Apple Hardware Text but can't find it on any CD's.  I bought my iMac in 2009.  It came with 10.4.  Apple Hardware Test is not on the installation disk.  Should I have it?  Where can I find it?  I"m now running 10.7.4.

    The disc plainly state:
    To  use the AHT, hold down the D key as the computer starts up.
    Works here. However, there was an issue with installing Lion that screwed this process up.
    Mount disc 2, run this command in the Terminal app, OPTION-click & hold Finder's Dock icon, and select RELAUNCH:
    defaults write com.apple.finder AppleShowAllFiles 1
    That unhides all hidden files/folders.
    Now, drill down to /"Applications Install\ Disc"/System/Library/CoreServices/ and drag the .diagnostics folder into your Lion boot volume's /System/Library/CoreServices/ folder. That might require you to authenticate to copy the folder into the CoreServices subfolder.
    Run this command to hide the normally hidden files/folders and RELAUNCH the Finder again.
    defaults write com.apple.finder AppleShowAllFiles 0
    This should allow the machine to boot into AHT when restarting and holding down the D key.
    If that doesn't do the trick, run this command in the Terminal app:
    sudo chown -R root:wheel /System/Library/CoreServices/.diagnostics
    At the Password: prompt, carefully type in your admin password, since nothing shows up on the screen, and hit the return key. Then, try another restart, holding down the D key.

Maybe you are looking for

  • How to Sort Date in RTF template

    Hi in my report i have name, date_arrival, Time_arrival, Hotel. I created a report grouped by hotel. On the screen it's working OK. when I print yusing RTF created template, the date is not sorted as expected. Thanks, Ribhi

  • Libraries-MS no longer working

    Under the heading of Libraries-MS (i.e. Documents, Music, Pictures, Videos) I get the message "no longer working - Delete headings, folders will not be affected". Pictures are stored elsewhere, but documents I cannot access/or save new ones. I do not

  • What am I syncing my N9 with??

    Given the protracted MfE debacle I have given up trying to sync my phone with this service (it was pretty unreliable anyway - many of my contacts became corrupted or date (phone number and EMails mostly) was lost. So, I have reconfigured the phone to

  • My HTML snippet widget on iWeb looks great on iWeb, but when I publish the page the HTML snippet doesn't appear on the webpage.  Why?

    I pasted in some HTML code generated by Google Forms into the iWeb HTML snippet widget.  It looked great on my iWeb viewer, but when I published it to my website, the HTML snippet google form did not appear on my webpage.  Does anyone know how to fix

  • Select boxes dependent on each other?

    Hi is there a way to use selectboxes / textfileds that depend on each other. select box 1. reads from database names select box 2. this one is filled when a chiose from box 1 is selected. (after a database question based on the result in box 1) inupt