Can I embed a full shell script inside an applescript?

I have a friend who is running Tiger on a PPC Mac and wants to download a large number of files from the web. Unfortunately, this friend is barely able to do basic web browsing with Safari or Firefox.
I thought of just sending him a shell script with a lot of curl commands, but I don't suppose making it executable on my Mac would make it executable on his. I would like to be able to send him an Applescript that he could just run by clicking on it, but it would be awkward to make each curl command a separete shell script within the applescript..
Is there a way of directly including in an applescript a multi-line shell script as a single entity that invokes only one shell? I know I can do it by putting the shell script in a separate file and have the applescript give it the necessary permissions, but then I'd have to explain to my friend where to put the shell script!

While it is possible to do this in the Applescript if the shell script gets at all complicated escaping characters and debugging will be much harder then it needs to be.
For example taking twtwtw's example and just adding one Applescript variable gives:
set dir to POSIX path of (choose folder)
set ss to "cd " & dir & "
echo 'This is a file list for the \"" & dir & "\" folder'
echo
ls -l"
set dlf to do shell script ss
display alert dlf giving up after 10
Twtwtw's suggestion of creating an Applescript application bundle is, I believe, the best way to go. You can keep the shell script and Applescript separate making maintenance and debugging much simpler and your friend just gets one 'file' to install and run.
regards

Similar Messages

  • How can I extract the full SQL script for a schema?

    Hi,
    How can I extract the full SQL script for a schema?
    I am looking for some method that needs jus SQL*Plus and preferably doesn’t need any extra tool.
    Thank you,
    Alan

    How can I extract the full SQL script for a schema?What are you looking for? PL/SQL code? DDL for objects?

  • How we can call or execute a SHELL script through Oracle forms or Reports

    How we can call or execute a SHELL script through Oracle forms or Reports.Its urgent.......

    Use HOST command.

  • Please help me remove the last elements of shell script from my applescript

    I read somewhere that running a shell script in an applescript was inefficient and created extra overhead, fine, so I am trying to take all of my shell script out of my applescript (this should fix issues with forward slashes in names as well...)
    however I am stuck on these last two lines (I know they are probably trivial but I've been up waaaay too long now) so I was wondering if anyone would be awesome enough to show me how to convert the bash to applescript.
    --does a recursive copy and rename
    do shell script "cp -R " & (thePath as text) & " " & (theOtherPathWithFile as text)
    --does a copy and rename, then a simple move
    do shell script "cp " & (quoted form of (POSIX path of this_item as text)) & " " & (theNewPath as text) & "&& mv " & (theOtherPathWithFile as text) & " ~/Desktop"
    Any and all help will be appreciated.

    There isn't anything wrong with using shell scripts, especially since AppleScript is designed to do this very thing. There is some overhead when using do shell script, just as there is some overhead when using an application tell statement, so it just depends on what you are doing.
    The performance of any particular script would also be up to whatever is acceptable to you (or your customers), and sometimes a shell script is the most efficient way to do something. Many of the system utilities are just GUI front-ends to a shell script, so they can't be all bad.
    To do your file copy or move with the Finder, you will need to tell it to duplicate or move the item(s) (there is that pesky overhead again). Shell scripts use POSIX paths while the Finder uses colons as its path delimiter, so you will need to use the correct file path references - there is a decent article about that at Satimage. Once your file paths have been defined (or using something like choose file or choose folder)), your script would be something like:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #DAFFB6;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    tell application "Finder"
    duplicate source to destination
    -- move source to destination
    end tell
    </pre>
    See the Finder and *System Events* scripting dictionaries for more information about the ways they deal with files.

  • Embed SQL in shell script

    I'm trying to embed sql statements in shell.
    I'm new to this..
    Can someone please pass some relevant document links on the web which demonstrates it?
    What I'm looking for is:
    1) How to pass variables from shell environment to sql
    2) How to pass values back to the shell from sql
    Example:
    Say, I want to run a concurrent request ( inside a shell script) . Then I want to check the status of this concurrent requests from FND_CONCURRENT_REQUESTS
    For which I have do a:
    #/bin/bash
    #Submit the request
    CONCSUB APPS/APPS SYSADMIN 'System Administrator' SYSADMIN CONCURRENT FND FNDSCURS >> /tmp/${TWO_TASK}request.log
    #Here, I pull out the value of request id from the log #in v_request_no
    v_request_no=`cat /tmp/${TWO_TASK}request.log | cut -d" " -f3`
    echo "Submitted request No: ${v_request_no}"
    Now, I want to check the status of this request, for which I want to embed the sql:
    select status_code from FND_CONCURRENT_REQUESTS where request_id=${v_request_id}
    How do I embed this?
    And later, I want to pass the value of "status_code" back to my shell and do some manipulation.
    How do I get the value ( of status_code) back in shell script?
    I did a quick hunt on the google to find a relevant doc. No luck yet, so I thought I'll post it here and then go back to some more hunting.
    Message was edited by:
    itzz.me

    Replying to myself instead of editing previous post. Confusing either way, hopefully I picked the less-confusing route.
    The second script snippet that I posted would work really well except for one tiny detail: exit codes have to be numeric. The status_code column in FND_CONCURRENT_REQUESTS is certainly not numeric. :-)
    Here's something that should work. I even checked it for syntax this time, because, well, it's really ugly. :-) Needless to say, you'll need to modify it slightly to plug into your script, since I hard-coded a requestid for purposes of illustration. Please note that the sqlplus command in the here document is enclosed in backticks, not single quotes:
    ----begin code snippet---
    #!/bin/bash
    v_request_id=2415616 #Just an example, sub your own value here
    status_code=`sqlplus -s apps/appspass<<EOF | grep Code | cut -f2 -d:
    select 'Code:' || status_code
    from fnd_concurrent_requests
    where request_id = $v_request_id;
    exit;
    EOF`
    echo "Status code is: $status_code"
    ----end code snippet-------
    If you can't pass in the apps password from the environment, and have to hard-code a password into the script (yecccchhh), I'd suggest setting up a read-only user with SELECT privileges on FND_CONCURRENT_REQUESTS, and running sqlplus as the read-only user instead of apps.

  • Can I embed *.dae file (collada file) inside keynote?

    Hi
    Is it possible to open/embed a collada (*.dae) file inside keynote? OR can I open Preview within Keynote while giving presentation?
    Thanks.

    1 As Keynote can't read COLLADA files, nothing will make Keynote open them.
    2 Keynote is prevented from opening other applications.
    My experience with presenting 3D mapping files is to display the 3D application and either play the render files or use the tools in the application to show the images.
    Open both Keynote and the 3D application and swap back and forward between the two applications using Application Switcher (command tab)

  • Do shell script problem in Applescript

    Hi,
    I am an Applescript novice and have been trying to write a code to go to a particular folder, look for all files in the folder tree with extension .m2v and run an executable file to decode them. My problem is that when I run my code (containing do shell script), it searches through all files and folders on Mac HD and starts decoding .m2v files elsewhere that I don't want.
    Eventually it runs out of space (.m2v file decoding takes a lot of space), because it is dumping all decoded .yuv files onto the HD.
    When I run the command on Terminal, it executes the decoding perfectly and stores the decoded files in the same folder.
    Please help me about what's going on.
    My code is something like:
    tell application "Finder"
    set DestinationFolder to "xxxxxx:xxxx:xxxx"
    set NumFolders to (get count of folders under Destination folder)
    repeat for SomeVar from 1 to NumFolders
    set FolderinQuestion to folder SomeVar of DestinationFolder
    -- Tried tell application "Terminal" here, but did not know --how to export the FolderinQuestion variable from Finder to --Terminal
    do shell script " \" cd \" & (POSIX path of (result as text));
    for file in `find $pwd \"*.mov\"`
    do
    /usr/local/bin/decode file
    done"
    end repeat
    end tell
    I would greatly appreciate some guidance.

    The root of the problem is that you're trying to quote the cd command for some reason:
    <pre class=command>do shell script " \" cd \" & (POSIX path of (result as text));
    ...</pre>
    In addition to that you're including the & (POSIX path of (result as text)) as part of the shell command whereas this should be OUTSIDE of the quotes in order to get evaluated
    If you work that through you'll end up with a shell command that looks like:
    <pre class=command>" cd " & (POSIX path of (result as text))</pre>
    If you try to run that in a terminal you'll get a cd : command not found error and that's why the rest of it appears to fail.
    The solution to that one is simple - just don't bother quoting the cd and put the POSIX path stuff outside of the quotes to get it evaluated at runtime:
    <pre class=command>do shell script "cd " & quoted form of POSIX path of (FolderInQuestion as text)) & ";
    # rest of shell commands here"</pre>
    Now, as for the rest of the script there are a few things I would change.
    First, unless you need to know the index, don't do:
    >repeat for SomeVar from 1 to NumFolders
    set FolderinQuestion to folder SomeVar of DestinationFolder
    the issue is that the number of folders to process may change during the script's execution (other processes may create or remove folders). This will, at best, cause some folders to be skipped and, at worst, cause the script to fail.
    If you're iterating through a list, the best option is to just:
    <pre class=command>repeat with FolderInQuestion in (folders of DestinationFolder)
    ...</pre>
    This automatically sets the iterator (in this case, FolderInQuestion, to the first item in the list and increments it for each iteration through the loop.
    Secondly, in your shell script itself, scrub the entire do/done loop. You're already using find, so have that do the hard work using the -exec switch:
    <pre class=command>find path -name "*.mov" -exec /usr/local/bin/decode {} \;</pre>
    In find's case, {} is substituted with the current file's path.
    Putting this together you'd get:
    <pre class=command>tell application "Finder"
    set DestinationFolder to "xxxxxx:xxxx:xxxx"
    repeat with folderInQuestion in (get folders of folder DestinationFolder)
    do shell script "cd " & quoted form of POSIX path of folderInQuestion & "; find . -name \"*.mov\" -exec /usr/bin/decode {} \\;"
    end repeat
    end tell</pre>
    Note that I've used 'quoted form of POSIX path' - this takes care of any shell-unsafe characters like spaces in the path name. I've also used \\; for the -exec switch - this is so that AppleScript passes the \ to the shell command rather than using it for its own escaping.
    But you're not done yet!
    There's still one fatal flaw in this process - and that is the fact that find by default, is recursive - it will walk through every directory that it finds.
    This means that if you start at the top folder and iterate through, find will find all .mov files and decode them. Your script then cd's to the first subdirectory and repeats the process - decoding all the .mov files in that directory and all its subdirectories even though they've ALREADY been decoded.
    The upshot is that you only need to run one loop starting at the top level. You don't need to iterate through all the subdirectories since find will do that for you.
    In addition to that, there might not be a need to use cd at all since the first argument to find is the directory to start searching in. Unless there's some reason that you need to start decode from the top level directory (e.g. is that where it saves the files?), you can drop the whole repeat loop altogether and just run with:
    <pre class=command>set startFolder to (choose folder)
    do shell script "find " & quoted form of posix path of startFolder & " -name \"*.mov\" -exec /usr/bin/decode {} \\;"</pre>
    That's the entire script - a radical compression of your original.

  • In Automator, how can I pass a shell script output to Display Notification?

    In Automator, how can I pass a Run shell script output to Display Notification?

    Soemthing like this will work

  • Running Shell script from command line

    Hi,
    I am getting a Exception in thread "main" java.lang.NoClassDefFoundError: TestRuntime/java error when I run the following code on my linnux box...can anyone please help
    import java.io.*;
    public class TestRuntime {
            public static void main(String args[]) {
                    Runtime runtime = Runtime.getRuntime(); //get runtime information
            try {
                            Process Child = runtime.exec("/usr/bin/ksh"); // execute command
                            BufferedWriter outCommand = new BufferedWriter(new OutputStreamWriter(Child.getOutputStream()));
                            outCommand.write("/home/mypath/tesh.csh");
                            outCommand.flush();
                            try {
                                    Child.waitFor(); // wait for command to complete
                            } catch (InterruptedException e) { // handle waitFor failure
                                    System.out.println("ERROR: waitFor failure");
                                    System.exit(10); // exit application with exit code 10
                    } catch (IOException e) { // handle exec failure
                            System.out.println("ERROR: exec failure" + e);
                            System.exit(11); // exit application with exit code 11
    }

    If I'm reading your code correctly, you're starting a Korn shell session, then executing your C shell script as if you were at at the session window's prompt. If that is correct, you haven't caused your standard out (stdout) to hit ENTER yet. I'm not an expert, but I hope this works for you.
    Your code:
    Process Child = runtime.exec("/usr/bin/ksh"); // execute command
                            BufferedWriter outCommand = new BufferedWriter(new OutputStreamWriter(Child.getOutputStream()));
                            outCommand.write("/home/mypath/tesh.csh");
                            outCommand.flush();I think you need to enter one extra line before the flush():
    Process Child = runtime.exec("/usr/bin/ksh"); // execute command
                            BufferedWriter outCommand = new BufferedWriter(new OutputStreamWriter(Child.getOutputStream()));
                            outCommand.write("/home/mypath/tesh.csh");
                            outCommand.newLine();  // hit ENTER
                            outCommand.flush();P.S. If you're running this script and your Java program from the same UNIX machine, you could just execute the shell script inside the runtime.exec() call.

  • Exit status running java classpath in a unix shell script

    I'm new to putting java into unix scripts. I have a java classpath running inside of a unix shell script. During my testing it will error with java.io.FileNotFoundException error, which I know why that is, but when I set in my unix shell script this to see the right exit status of success/fail, it always shows a 0 for success when that isn't really the case. Below is the two lines I have set to capture the exit status and just display that exit status for now.
    notifycode=$?
    echo $notifycode
    I have these 2 lines above on a line right below my java command in my unix shell script. How can I get my unix shell script to show the right exit status if the java classpath command fails? Thanks for any help.

    That's Java code, it says "End this Java application and send return code 1 back to the shell". As for how the shell gets the return code from the application, that's a question about your shell and not about Java programming, no?

  • Which .bash does "do shell script" commands use?

    The "do shell script" command uses the Bourne shell "sh". But I am curious to know which .bash it uses to define the shell environment variables.
    I ran into a problem installing a third-party unix program which required new environment variables to be defined in order to execute. Defining these variables and executing this program from the terminal worked fine.
    But executing it within a "do shell script" command in an Applescript - the program died silently because the environment variables it required were not defined in the shell Applescript uses. It appears to invoke a new shell which does not inherit the environment variables defined in your home user shell.
    (I found this out by 'do shell script "set"' which listed the environment variables Applescript knows about - the ones I defined for the third-party program were not listed).
    A "brute force" way of fixing this is to pass the environment variables directly:
    do shell script "export THIRDPARTY_ENVVAR=blah; /usr/sbin/thirdpartyprogam"
    This works but not exactly elegant, particularly when you need to pass a number of variables.
    So - any better ways to do this? Can I edit the .bash Applescript uses, and where is it?
    Thanks.

    Another option that might work for you... if you are saving/distributing your AppleScript as an "Application bundler" is to group all your shell env. variables and other commands into a separate shell script file. Then include the shell script inside your app bundle. Locate the shell script at runtime and run that with "do shell script".
    For example, create "myShellScript.sh"
    #!/bin/sh
    export THIRDPARTY_ENVVAR=blah
    # ... more variable declarations..
    /usr/sbin/thirdpartyprogam
    # ... more shell commands...
    Store the shell script file inside your AppleScript bundle's Contents -> Resources folder (remember to make the shell script executable). Then your AppleScript can find your shell script at runtime and execute it like this:
    set ssPath to quoted form of POSIX path of (path to resource "myShellScript.sh")
    set stdout to do shell script ssPath
    Steve

  • Shell Script - .app's, not working

    Here's the context: I'm writing a shell script that takes an input of a file and does something with it and outputs a new file. Just think of the something as a blackbox. But I don't want to settle for this. No, so that I don't have to type a tedious command in shell, e.g. "./myprogramme.sh inputfilename", I want to create an application. That way I can, e.g. drag "inputfilename" onto "myprogramme.app", and the same thing will happen.
    Okay, so taking baby steps, I though I'd just make a helloworld.app. I did the following:
    1. made helloworld.sh to simply execute:
    echo "greetings planet earth!"
    2. placed helloworld in the directory "~"
    3. opened terminal in "~"
    4. ran the commands (in terminal)
    mkdir -p helloworld.app/contents/macos
    mv helloworld.sh helloworld.app/contents/macos/helloworld
    chmod +x helloworld.app/contents/macos/helloworld
    This is supposedly what one should do to create an app.
    Here's my problem: when I double-click the helloworld.app, a messagebox says, "You can't open the application "helloworld.app" because it is not supported on this architecture."
    _Question 1_: why?
    _Question 2_: how do i create an app that will successfully execute a given shell script?
    p.s. I realise that this may not be the best forum thread, but i can't find a coding/shell-script thread.

    This is supposedly what one should do to create an app.
    not at all! you can not just rename a shell script with a .app extension and expect to get an application. the easiest way to turn a shell script into an application is to use automator. no need to create a separate .sh file open automator and make a workflow consisting of a single "run shell script" action. put whatever you want the shell script to do inside. save it as an application and you are done.
    Here's my problem: when I double-click the helloworld.app, a messagebox says, "You can't open the application "helloworld.app" because it is not supported on this architecture."
    _Question 1_: why?
    _Question 2_: how do i create an app that will successfully execute a given shell script?
    p.s. I realise that this may not be the best forum thread, but i can't find a coding/shell-script thread.

  • Shell scripts for process flows

    Hello,
    We have lot of process flows in Oracle Warehouse Builder. To execute all these process flows some body wrote shell scripts. But they hardcode. My job is I have to change hardcoded values to assign dynamically. How can we do that? My situation is file is moving from one directory to another directory. From directory is fixed. To directory is going to change. This aslo they hardcoded. This I have to assign dynamically. How can I? Please somebody can help in this situation.
    Thanks
    Sri

    You can pass parameters to the shell script and then use them inside. Like $1 $2 and so on.
    Sidhu
    http://amardeepsidhu.blogspot.com

  • Signal 11 on Shell Script based C oncurrent program

    Hello,
    I am getting Program was terminated by signal 11 error on a concurrent program that is a Shell Script. This is on 11i instance running on HP UX box.
    I could not find any detail reference on Signal 11 and what would cause this error.
    Is there any way I can turn on tracing on Shell scripts to see what is going on? Shell script, transfers data through connecting with SQL Plus in silent mode (sqlplus -s)
    I have checked the trace check box in concurernt program definition but it does not generate any trace file whatsoever(Tracing is enabled at DB level).
    Having run out of all options, I am posting this here. At worst, I expect some detail level tracing that would capture shellscript debug process step by step.
    Thanks
    Ruchir

    i was able to generate a stack trace out of core file. which is pasted below
    Script started on Wed Jun 23 09:03:27 2010
    daahpprd:/u01/applmgr/prodcomn/admin/log/prod_daahpprd > gdb $FND _TOP/bin/FNDLIBR /u01/applmgr/prodcomn/admin/log/prod _daahpprd/core
    HP gdb 5.4.0 for PA-RISC 1.1 or 2.0 (narrow), HP-UX 11.00
    and target hppa1.1-hp-hpux11.00.
    Copyright 1986 - 2001 Free Software Foundation, Inc.
    Hewlett-Packard Wildebeest 5.4.0 (based on GDB) is covered by the
    GNU General Public License. Type "show copying" to see the conditions to
    change it and/or distribute copies. Type "show warranty" for warranty/support.
    ..(no debugging symbols found)...
    warning: core file may not match specified executable file.
    Core was generated by `npx_npc_webord'.
    warning: npx_npc_webord is 14 characters in length.  Due to a limitation
            in the HP-UX kernel, core files contain only the first 14 characters
            of an executable's name.  Check if npx_npc_webord is a truncated name.
            If it is so, core-file, packcore and other commands dealing with
            core files will exhibit incorrect behavior.  To avoid this, issue
            exec-file and symbol-file commands with the full name of the executable
            that produced the core; then issue the core-file, packcore or other
            core file command of interest.
    Program terminated with signal 11, Segmentation fault.
    #0  0xc0174b14 in <unknown_procedure> ()
    Cannot access memory at address 0xc0174b14
    (gdb)
    (gdb) Quit
    (gdb) quit
    daahpprd:/u01/applmgr/prodcomn/admin/log/prod_daahpprd > view /tmp/newscript.txt
    [3g[24;9HH[24;17HH[24;25HH[24;33HH[24;41HH[24;49HH[24;57HH[24;65HH[24;73HH[24;81HH[24;89HH[24;97HH[24;105HH[24;113HH[24;121HH[24;129HH[24;137HH[24;145HH
    [24;1H[?25h[?1h"/tmp/newscript.txt" [Read only] [Incomplete last line] 31 lines, 1777 characters [H[2JScript started on Wed Jun 23 09:03:27 2010[2;1Hdaahpprd:/u01/applmgr/prodcomn/admin/log/prod_daahpprd > gdb $FND ^H_TOP/bin/FNDLIBR /u01/applmgr/prodcomn/admin/log/prod ^H_daahpprd/core^M
    [BHP gdb 5.4.0 for PA-RISC 1.1 or 2.0 (narrow), HP-UX 11.00^M
    [Band target hppa1.1-hp-hpux11.00.^M
    [BCopyright 1986 - 2001 Free Software Foundation, Inc.^M
    [BHewlett-Packard Wildebeest 5.4.0 (based on GDB) is covered by the^M
    [BGNU General Public License. Type "show copying" to see the conditions to^M
    [Bchange it and/or distribute copies. Type "show warranty" for warranty/support.^M
    [B..(no debugging symbols found)...^M
    [B^M
    [Bwarning: core file may not match specified executable file.^M
    [BCore was generated by `npx_npc_webord'.^M
    [B^M
    [Bwarning: npx_npc_webord is 14 characters in length.  Due to a limitation ^M[15;9Hin the HP-UX kernel, core files contain only the first 14 characters ^M[16;9Hof an executable's name.  Check if npx_npc_webord is a truncated name. ^M[17;9HIf it is so, core-file, packcore and other commands dealing with ^M[18;9Hcore files will exhibit incorrect behavior.  To avoid this, issue ^M[19;9Hexec-file and symbol-file commands with the full name of the executable ^M[20;9Hthat produced the core; then issue the core-file, packcore or other ^M[21;9Hcore file command of interest.^M
    [B^M
    [BProgram terminated with signal 11, Segmentation fault.^M[1;1H[23B"/tmp/newscript.txt" [Read only] [Incomplete last line] 31 lines, 1777 characters[1;1H[B[B[B[B[B[B[B[B[B^[B[B[B^[B[B[B[B[B[B[B[B[B^[B[B[K
    [A^M[B
    [A#0  0xc0174b14 in <unknown_procedure> ()^M
    [B
    [ACannot access memory at address 0xc0174b14^M
    [B
    [A(gdb) ^M
    [B
    [A(gdb) Quit^M
    [B
    [A(gdb) quit^M
    [B
    [Adaahpprd:/u01/applmgr/prodcomn/admin/log/prod_daahpprd > view /tmp/newscript.txt^M
    [B
    [A^M^[[3g^[[24;9H^[H^[[24;17H^[H^[[24;25H^[H^[[24;33H^[H^[[24;41H^[H^[[24;49H^[H^[[24;57H^[H^[[24;65H^[H^[[24;73H^[H^[[24;81H^[H^[[24;89H^[H^[[24;97does this indicate a hardware issue?

  • Need Help in creating Unix Shell Script for database

    Would be appreciable if some one can help in creating unix shell script for the Oracle DB 10,11g.
    Here is the condition which i want to implement.
    1. Create shell script to create the database with 10GB TB SPACE and 3 groups of redo log file(Each 300MB).
    2. Increase size of redolog file.
    3. Load sample schema.
    4. dump the schema.
    5. Create empty db (Script should check if db already exists and drop it in this case).
    6. Create backup using rman.
    7. restore backup which you have backed up.

    This isn't much of a "code-sharing" site but a "knowledge-sharing" site.  Code posted me may be from a questioner who has a problem / issue / error with his code.   But we don't generally see people writing entire scripts as responses to such questions as yours.  There may be other sites where you can get coding done "for free".
    What you could do is to write some of the code and test it and, if and when it fails / errors, post it for members to make suggestions.
    But the expectation here is for you to write your own code.
    Hemant K Chitale

Maybe you are looking for

  • Boot Camp 3.0 + Windows XP SP3 + Apple Wireless Keyboard

    Hello, I'm using a 24" iMac (early 2009), dual-booting OS X and Windows XP, and I'm having trouble connecting my Apple Bluetooth keyboard when running Windows. I go through the Bluetooth setup until I'm prompted to input a passkey, but before I'm abl

  • Home Hub and RJ45? not working correctly

    Recently i had a few problems with the Wireless on the Home Hub 3, so i switched and used an RJ45 and boy my speeds shot from 30-40mbs to 77mbs i was all happy, then the upload part of the speed test came along and it spent forever trying to do an up

  • 4.2.1 Does Not Fix" Crash-on-screen saver" bug or metadata issues

    ATV2 crashes as soon as it goes to screen saver. 4.2.1 does not fix this. WTC? You have to set screen saver to "Never" to prevent crashing. No one checks these things? Message was edited by: Mike Kwiatkowski

  • Authorization for call transaction in BDC

    Hi, How can I avoid authorization during call transaction in BDC. Is possible to fullfill data from transaction if user has no authorization to it? regards, J.

  • TS3406 iPhone 4s will not make outgoing calls once updated to iOS 8.

    I updated my phone to iOS 8 a yesterday and when I did it deleted my phone including all my apps on  my phone even though it claims to have backed it up just before updating (not a big deal most were free apps and the work properly once downloaded an