3 questions regarding duplicate script

3 questions regarding duplicate script
Here is my script for copying folders from one Mac to another Mac via Ethernet:
(This is not meant as a backup, just to automatically distribute files to the other Mac.
For backup I'm using Time Machine.)
cop2drop("Macintosh HD:Users:home:Desktop", "zome's Public Folder:Drop Box:")
cop2drop("Macintosh HD:Users:home:Documents", "zome's Public Folder:Drop Box:")
cop2drop("Macintosh HD:Users:home:Pictures", "zome's Public Folder:Drop Box:")
cop2drop("Macintosh HD:Users:home:Sites", "zome's Public Folder:Drop Box:")
on cop2drop(sourceFolder, destFolder)
tell application "Finder"
duplicate every file of folder sourceFolder to folder destFolder
duplicate every folder of folder sourceFolder to folder destFolder
end tell
end cop2drop
1. One problem I haven't sorted out yet: How can I modify this script so that
all source folders (incl. their files and sub-folders) get copied
as correspondent destination folders (same names) under the Drop Box?
(At the moment the files and sub-folder arrive directly in the Drop Box
and mix with the other destination files and sub-folders.)
2. Everytime before a duplicate starts, I have to confirm this message:
"You can put items into "Drop Box", but you won't be able to see them. Do you want to continue?"
How can I avoid or override this message? (This script shall run in the night,
when no one is near the computer to press OK again and again.)
3. A few minutes after the script starts running I get:
"AppleScript Error - Finder got an error: AppleEvent timed out."
How can I stop this?
Thanks in advance for your help!

Hello
In addition to what red_menace has said...
1) I think you may still use System Events 'duplicate' command if you wish.
Something like SCRIPT1a below. (Handler is modified so that it requires only one parameter.)
*Note that the 'duplicate' command of Finder and System Events duplicates the source into the destination. E.g. A statement 'duplicate folder "A:B:C:" to folder "D:E:F:"' will result in the duplicated folder "D:E:F:C:".
--SCRIPT1a
cop2drop("Macintosh HD:Users:home:Documents")
on cop2drop(sourceFolder)
set destFolder to "zome's Public Folder:Drop Box:"
with timeout of 36000 seconds
tell application "System Events"
duplicate folder sourceFolder to folder destFolder
end tell
end timeout
end cop2drop
--END OF SCRIPT1a
2) I don't know the said error -8068 thrown by Finder. It's likely a Finder's private error code which is not listed in any of public headers. And if it is Finder thing, you may or may not see different error, which would be more helpful, when using System Events to copy things into Public Folder. Also you may create a normal folder, e.g. named 'Duplicate' in Public Folder and use it as desination.
3) If you use rsync(1) and want to preserve extended attributes, resource forks and ACLs, you need to use -E option. So at least 'rsync -aE' would be required. And I rememeber the looong thread failed to tame rsync for your backup project...
4) As for how to get POSIX path of file/folder in AppleScript, there're different ways.
Strictly speaking, POSIX path is a property of alias object. So the code to get POSIX path of a folder whose HFS path is 'Macintosh HD:Users:home:Documents:' would be :
POSIX path of ("Macintosh HD:Users:home:Documents:" as alias)
POSIX path of ("Macintosh HD:Users:home:Documents" as alias)
--> /Users/home/Documents/
The first one is the cleanest code because HFS path of directory is supposed to end with ":". The second one also works because 'as alias' coercion will detect whether the specified node is file or directory and return a proper alias object.
And as for the code :
set src to (sourceFolder as alias)'s POSIX Path's text 1 thru -2
It is to strip the trailing '/' from POSIX path of directory and get '/Users/home/Documents', for example. I do this because in shell commands, trailing '/' of directory path is not required and indeed if it's present, it makes certain command behave differently.
E.g.
Provided /a/b/c and /d/e/f are both directory, cp /a/b/c /d/e/f will copy the source directory into the destination directory while cp /a/b/c/ /d/e/f will copy the contents of the source directory into the destination directory.
The rsync(1) behaves in the same manner as cp(1) regarding the trailing '/' of source directory.
The ditto(1) and cp(1) behave differently for the same arguments, i.e., ditto /a/b/c /d/e/f will copy the contents of the source directory into the destination directory.
5) In case, here are revised versions of previous SCRIPT2 and SCRIPT3, which require only one parameter. It will also append any error output to file named 'crop2dropError.txt' on current user's desktop.
*These commands with the current options will preserve extended attributes, resource forks and ACLs when run under 10.5 or later.
--SCRIPT2a - using cp(1)
cop2drop("Macintosh HD:Users:home:Documents")
on cop2drop(sourceFolder)
set destFolder to "zome's Public Folder:Drop Box:"
set src to (sourceFolder as alias)'s POSIX Path's text 1 thru -2
set dst to (destFolder as alias)'s POSIX Path's text 1 thru -2
set sh to "cp -pR " & quoted form of src & " " & quoted form of dst
do shell script (sh & " 2>>~/Desktop/cop2dropError.txt")
end cop2drop
--END OF SCRIPT2a
--SCRIPT3a - using ditto(1)
cop2drop("Macintosh HD:Users:home:Documents")
on cop2drop(sourceFolder)
set destFolder to "zome's Public Folder:Drop Box:"
set src to (sourceFolder as alias)'s POSIX Path's text 1 thru -2
set dst to (destFolder as alias)'s POSIX Path's text 1 thru -2
set sh to "src=" & quoted form of src & ";dst=" & quoted form of dst & ¬
";ditto "${src}" "${dst}/${src##*/}""
do shell script (sh & " 2>>~/Desktop/cop2dropError.txt")
end cop2drop
--END OF SCRIPT3a
Good luck,
H
Message was edited by: Hiroto (fixed typo)

Similar Messages

  • Question regarding PowerShell script to Uninstall security updates in Windows 7/8

    Hello Everyone,
    I came across a great link on the Scriptcenter  
    https://gallery.technet.microsoft.com/scriptcenter/Uninstall-security-update-76f2dcb7  which has a PowerShell download that enables you to remove Microsoft updates from computers.  When I download the zip files ->extract it,  I have a
    file called " UninstallHotFix.psm1 ".   So far so good.  But where I am totally lost is in the directions to use this file. 
    Specifically: 
    Method 1:
    Download the script and open the script file together with Notepad or any other script editor.
    Scroll down to the end of the script file, and then add the example command which you want to run.
    Save the file then run the script in PowerShell
    I assume (1) refers to right clicking on "UninstallHotFix.psm1" and opening it with notepad?
    If I want to run the following...    Uninstall-OSCHotfix -HotFixID KB2830290   do I just paste it at the end of notepad?
    Do I save the file and attempt to run in powershell as a .psm1 file - or as a .ps1  file?
    Lost in Space....
    Adrian

    Hi Adrian,
    If the above doesn't help, I recommend posting questions about this item on the QandA tab of the script module:
    https://gallery.technet.microsoft.com/scriptcenter/Uninstall-security-update-76f2dcb7/view/Discussions#content
    I'd recommend following the steps in Method 2 on the gallery item. As an overview:
    1. Save the zip file into C:\Temp
    2. Extract the zip to C:\Temp\UninstallHotFix(PowerShell)
    3. Open a PS console and type the following:
    Import-Module 'C:\Temp\UninstallHotFix(PowerShell)\UninstallHotFix(PowerShell)\UninstallHotFix.psm1'
    You can verify that the module has been loaded by running Get-Module:
    PS C:\> Get-Module
    ModuleType Version Name ExportedCommands
    Manifest 3.1.0.0 Microsoft.PowerShell.Management {Add-Computer, Add-Content, Checkpoint
    Script 0.0 UninstallHotFix {Uninstall-OSCHotfix, UninstallHotFix}
    Don't retire TechNet! -
    (Don't give up yet - 13,225+ strong and growing)

  • Question regarding "SaveDocsAsPDF" script adjustment

    Hello Scriptkiddies and Adobe guru's :-)
    Quite a while ago I obtained a script from this forum where someone adjusted some settings from the standard-included "SaveDocsAsPDF" script from Illustrator CS5, but I'm running into a few issues that I can't fix myself… I'm not a scripter unfortunately :-)
    The customized script currently converts a folder with AI files to PDF's with the "Smallest Filesize" setting. But there are 2 things I'm looking to include, and I'm hoping anyone here could help me out:
    - The produced PDF's are about 4 times as big as the PDF's that Acrobat Distiller produces with the same (standard) setting. I have no idea why this happens, but if someone has an enlightening idea or suggestion on how to make the script produce the smaller type of PDF's that Distiller manages to output, I would be forever grateful!
    - The second, and definitely the most important change I'm looking for, is that I would love to have an action included in the script where the script converts all text to outlines before creating the PDF… while not overwriting the current AI-file (which it already doesn't do). The issue is that a lot of our clients don't have the fonts that we at work use (some of which have PDF issues), so a PDF where the fonts have been outlined would solve that problem immediately.
    Is there anyone here who would be willing to help me out with this particular problem perhaps? I sometimes have 50+ PDF's to make, so this action is really a sanity-saver for me
    Sincerely,
    Joram

    One thing that stands out as being undesirable as far as best practices go is that you are placing code on objects (using the on() approach).  The proper approach is to assign instance names to your interactive objects and use them to place all of your code on the timeline where it is readily visible.  In doing so you may just find that alot of the code you show can be modularized into functions that can be shared by different objects rather than having each one carrying a full load on its back. You may find you can pass arguments to shared functions that make the same functions capable of supporting interactions with different objects
    Your on(press) call performs an unnecessary conditional test.  If you change the condition to be   if (project._currentframe != 25) you can avoid this.
    In your on(rollOver) call's set of conditionals, you have some lines that repeat in each condition, so they can be moved to the end outside the conditionals.
    Your on(release) call has the same issue as your on(press) call.  Also the overrun use of the _parent target is an indication that most of the code in this call would likely serve you better sitting in the _parent timeline, and your button could just call that function

  • Two questions regarding shell scripts in automator

    they are both concerning this script:
    I pass it an .avi file (I believe it could also take more than one), and outputs a converted file (that is playable on appletv2) that is dumped in my "Converted" folder.  This all works fine and dandy.
    However, I would like to have it prompt the user for a destination folder, and pass that in as well.  However, I do not know how I would refer to that variable separately.
    Handbrake's CLI application also produces output that shows what percentage the conversion is at, and although the script passes this output as it's own output (to the next automator action - I actually discovered this only by accidentally leaving a "Speak Text" action in), I want to be able to see this output in real time.  Is there anyway to do this?  Thanks for the help!

    To be clear, this is what you mean, correct?
    for outpath; do :; done
    for f in "$@"
    do
        if [ "$f" != "$outpath" ];
              thenof="$outpath"/`basename "$if" .avi`.mp4
        /Applications/HandBrakeCLI -i "$if" -o "$outpath" --preset="AppleTV 2"
        fi
    done
    I assume that "Ask For Finder Items" also passes it's input along to the next action?  Would "Get Value of Variable" do the same thing?  (I also use the same workflow to convert .mkv files and copy .srt files to the same destination folder, so I need to access the source files multiple times to filter out different files each time).
    I would just test it myself, but I am not at my computer right now.
    And this is kind of off topic, but since automator actions can be written in shell script, could this be easily made into one? How much work would it involve? 

  • Question regarding quickinit script

    Ok so its installed, current boot time is 12 seconds
    i was wondering if i can remove some of the tty's, say 3 of them, so i only have 4 tty's as that will also increase boot time?

    I'm not on irc, I'm going to have to try that thing one of these days I wasn't sure if you just don't want to have the login manager runnig and taking up the little space it does (fgetty takes up even less), or if you wanted to stop the device nodes from being created. By editing /etc/inittab you can prevent a login manager from starting (such as agetty or fgetty), but I don't know enough yet about how to prevent the actual device nodes (i.e., /dev/tty{1..53}) from being created. You might have to edit kernel source or something for that. I'd try googling "prevent /dev/tty creation" or something similar to that.

  • Question regarding duplicate songs on iphone 4

    i have two of the same song, but one doesn't play and has a circle with a square in it next to the song. whats the deal?

    How can you stop it happening though? i have to do this everytime I syncmy phone

  • Questions regarding customisation/configuration of PS CS4

    Hello
    I have accumulated a list of questions regarding customising certain things in Photoshop. I don't know if these things are doable and if so, how.
    Can I make it so that the list of blending options for a layer is by default collapsed when you first apply any options?
    Can I make it possible to move the canvas even though I'm not zoomed in enough to only have parts of it visible on my screen?
    Is it possible to enable a canvas rotate shortcut, similar to the way you can Alt+RightClick to quickly change brush size?
    Is it possible to lock button positions? Sometimes I accidentally drag them around when I meant to click.
    Is it possible to lock panel sizes? For example, if I have the Navigator and the Layers panels vertically in the same group, can I lock the height of the navigator so that I don't have to re-adjust it all the time? Many panels have a minimum height so I guess what I am asking for is if it's possible to set a maximum height as well.
    Is it possible to disable Photoshop from automatically appending "copy" at the end of layer/folder names when I duplicate them?
    These are things I'd really like to change to my liking as they are problems I run into on a daily basis.
    I hope someone can provide some nice solutions

    NyanPrime wrote:
    <answered above>
    Can I make it possible to move the canvas even though I'm not zoomed in enough to only have parts of it visible on my screen?
    Is it possible to enable a canvas rotate shortcut, similar to the way you can Alt+RightClick to quickly change brush size?
    Is it possible to lock button positions? Sometimes I accidentally drag them around when I meant to click.
    Is it possible to lock panel sizes? For example, if I have the Navigator and the Layers panels vertically in the same group, can I lock the height of the navigator so that I don't have to re-adjust it all the time? Many panels have a minimum height so I guess what I am asking for is if it's possible to set a maximum height as well.
    Is it possible to disable Photoshop from automatically appending "copy" at the end of layer/folder names when I duplicate them?
    These are things I'd really like to change to my liking as they are problems I run into on a daily basis.
    I hope someone can provide some nice solutions
    2.  No.  It's a sore spot that got some forum time when Photoshop CS4 was first released, then again with CS5.  It's said that the rules change slightly when using full-screen mode, though I personally haven't tried it.
    3.  Not sure, since I haven't tried it.  However, you may want to explore the Edit - Keyboard Shortcuts... menu, if you haven't already.
    4.  What buttons are you talking about?  Those you are creating in your document?  If so, choose the layer you want to lock in the LAYERS panel, then look at the little buttons just above the listing of the layers:
    5.  There are many, many options for positioning and sizing panels.  Most start with making a panel visible, then dragging it somewhere by its little tab.  One of the important features is that you can save your preferred layout as a named workspace.  Choose the Window - Workspace - New Workspace... to create a new named workspace (or to update one you've already created).  The name of that menu is a little confusing.  Once you have created your workspace, if something gets out of place, choose Window - Workspace - Reset YourNamedWorkspace to bring it back to what was saved.
    You'll find that panels like to "stick together", which helps with arranging them outside of the Photoshop main window.
    As an example, I use two monitors, and this is my preferred layout:
    6.  No, it's not possible to affect the layer names Photoshop generates, as far as I know.  I have gotten in the habit of immediately naming them per their usage, so that I don't confuse myself (something that's getting easier and easier to do...).
    Hope this helps!
    -Noel

  • Questions regarding Alert log & Control file

    Hello,
    This is my first post to this forum. I'm new at administrating a database 11.2.0.3. I have couple of questions regarding Oracle DB.
    1)Which one is preferred method among the two?
       Checking alert log fie manually or automating a shell script for checking alert log file.
    2) Does setting CONTROL_FILE_RECORD_KEEP_TIME parameter to zero make the database unrecoverable, if RMAN recovery catalog is not used?
    Any help will be highly appreciated. Thanks in advance.
    Regards

    1)Which one is preferred method among the two?
       Checking alert log fie manually or automating a shell script for checking alert log file.
    That depends on your comfortability - But checking alert log is good.
    2) Does setting CONTROL_FILE_RECORD_KEEP_TIME parameter to zero make the database unrecoverable, if RMAN recovery catalog is not used?
    Yes - you cannot recover your database if it set zero and doesn't have recovery catalog.

  • Questions regarding chapter markers

    I've got a few questions regarding working with chapter markers. First a little background info. I'm working in CS 5.5. I used Dynamic Link to send a Premiere sequence to Encore. In Premiere, I've got another sequence that is an exact duplicate of the original, with just a little text added.
    I decided that I need to go back and add chapter markers, so I went through the initial Premiere sequence and added all the Encore Chapter Markers. I'd like all the chapter markers to be consistent in all three locations without having to re-do it manually each time.
    Is there any way to bring those markers into Encore withour re-importing the sequence? I kind of figured that was the point of using Dynamic Link, but the markers aren't showing up in Encore.
    And then, is there a way to copy those markers within Premiere from one sequence to the other?
    Thanks in advance for any help.

    (Dear mods: a little overzealous with the thread moving. This had enough to do with Premiere Pro that it could have remained there... and saved me from retyping my reply.)
    Is there any way to bring those markers into Encore withour re-importing the sequence?
    This part is Encore. In the Encore Timeline containing the PPro sequence you're using with DL, select the sequence/asset, and go to Edit > Update Markers From Source. A warning dialog will pop up about replacing the markers; when you OK it, the markers positions and names will be updated.
    And then, is there a way to copy those markers within Premiere from one sequence to the other?
    It's not possible to copy and paste markers, but here's a workaround of sorts (assuming your sequences are the same duration and you want the markers at the same times):
    Drag the sequence that contains the chapter markers into the sequence that doesn't; because the Encore chapter markers are sequence markers, they'll turn into clip markers when you nest the sequence. Select this nested sequence, and then use the Next (or Previous) Clip Marker (found under Marker > Go to Clip Marker, or with keyboard shortcuts) to jump to each clip marker. When you land on one, add a chapter marker to the sequence; if you don't already, set up a keyboard shortcut for this and it will make adding the markers a breeze. Now, you'll have to add names, if you want them, but at least this will make matching the time much easier.

  • Question Regarding MIDI and Sample Accuracy

    Hi,
    I have 2 questions regarding MIDI.
    1. MIDI is moved by ticks. In the arrange window however, you can move a region by samples. When doing this, you can move within values of the ticks (which you can see on your position box that pops up) Now, will this MIDI note actually be played back at that specific sample point, or will it round the event to the closest tick? (example, if I have a MIDI note directly on 1.1.1.1, and I move the REGION in the arrange... will that MIDI note now fall on the sample that I have moved the region to, or will it be rounded to the closest tick?)
    2. When making a midi template from an audio region, will the MIDI information land exactly on the sample of the transient, or will it be rounded to the closest tick?
    I've looked through the manual, and couldn't find any specific answer to these questions.
    Thanks!
    Message was edited by: Matthew Usnick

    Ok, I've done some experimenting, and here are my results.
    I believe those numbers ARE samples. I came to this conclusion by counting (for some reason it starts on 11) and cutting a region to be 33 samples long (so, minus 11, is 22 actual samples). I then went to the Audio Bin window, and chose to view region length as samples. And there it said it: 22 samples. So, you can in fact move MIDI regions by samples!
    Second, I wanted to see if the MIDI notes in the region itself would be quantized to the nearest tick. I cut a piece of audio, so it had a 1 sample attack (zoomed in asa far as I could in the sample editor, selected the smallest portion, and faded in, and made the start point, the region start position). I saved the region as a new audio file, and loaded it up in the exs sampler.
    I then made a MIDI region, with and triggered the sample on beat 1 (quantized, on the money). I then went into the arrange window, made a fixed cycle length, and bounced the audio. I then moved the MIDI region by one sample to the right. I did this 22 times (which is the number of samples in a tick, at 120, apparently). After bouncing all of these (cycle position remained fixed, only the MIDI region was moving) I imported all the audio into the arrange on new tracks, and YES!!! The sample start was cascaded by a sample each time!
    SO.
    Not only can you move MIDI regions by sample, but the positions are NOT quantized to Logics ticks!
    This is very good news, and glad I worked this out!
    (if anyone thinks this sounds wrong, please correct me, but I'm pretty sure I proved it, in my test)
    Message was edited by: Matthew Usnick

  • Question regarding homehub and Open reach router -...

    Hi all,
      I had infinity installed earlier this month and am happy with it so far. I do have a few questions regarding the service and hardware though.
      I run both my BT openreach router and BT Home hub from the same power socket. The problem is, if I turn the plug on so both the Homehub and Openreach Router start up at the same time, the home hub will never get an Internet connection from the router. To solve this I have to turn the BT home hub on first and leave it for a minute, then start the router up and it all works fine. I'm just curious if this is the norm or do I have some faulty hardware?
      Secondly, I appreciate the estimated speed BT quote isn't always accurate, I was quoted 49mbits down but received 38mbits down - Which I was happy with. Recently though it has dropped to 30. I am worried this might continue to drop over time. and as of present I am 20mbits down on the estimate . For the record 30mbits is actually fine and probably more than I would ever need. If I could boost it some how though I would be interested to hear from you.
    Thanks, .

    Just a clarification: the two boxes are the HomeHub (router, black) and the modem (white).  The HomeHub has its own power switch, the modem doesn't.
    There is something wrong if the HomeHub needs to be turned on before the modem.  As others have said, in general best to leave the modem on all the time.  You should be able to connect them up in any order, or together.  (For example, I recently tripped the mains cutout, and when I restored power the modem and HomeHub went on together and everything was ok).
    Check if the router can connect/disconnect from the broadband using the web interface.  Leaving the modem and HomeHub on all the time, go to http://192.168.1.254/ on a browser on a connected computer, and see whether the Connect/Disconnect button works.

  • Question regarding IWDTree and context Value Node naming

    Hi,
    I have a question regarding the IWDTree / IWDTreeNodeType components.
    I have a context looking like this:
    Context
      + ResponseNode
        + PersonNode (1..1)
          + PersonAddressNode                    (empty node, placeholder)
          | + AdresNode (0..n)
          + PersonChildNode                      (empty node, placeholder)
          | + PersonNode (0..n)
          |   + PersonAddressNode                (empty node, placeholder)
          |     + AddressNode (0..n)
          + PersonParentsNode                    (empty node, placeholder)
            + PersonNode (0..n)
              + PersonAddressNode                (empty node, placeholder)
                + AddressNode (0..n)
    The context represents a person, a person's address, and a person's children and parents with their respective addresses.
    As a result, on different branches, a PersonNode and AddressNode can appear.
    And for some strange reason, all PersonNodes and AddressNodes link to the same ResponseNode.PersonNode.PersonParentsNode.PersonNode and ResponseNode.PersonNode.PersonParentsNode.PersonNode.PersonAddressNode.AddressNode respectively, irregardless of their branch...
    Is it illegal to have multiple PersonNode and AddressNode node names, and should they be named uniquely?

    Generally, node names need to be unique inside the context, attributes in different nodes can have same names. I wonder if the context structure you described will result in code without compile errors.
    The WD Tree can only be used with recursive context nodes or with a hierarchy of non-singleton child nodes.
    Can you give an example how your tree should look like at runtime?

  • Question regarding roaming and data usage

    I am currently out of my main country of service, and as such I have a question regarding roaming and data usage.
    I am told that the airplane mode is sufficient from keeping the phone off from roaming, but does this apply to any background data usage for applications and such?
    If the phone is in airplane mode, are all use of the phone including wifi and application use through the wifi outside of all extra charges from roaming?

    Ann154 wrote:
    If you are getting charged to use the wifi, then it is possible.  Otherwise no
    Just to elaborate here, Ann154 is referring to access charges for wifi, which is nothing to do with Verizon, so if you are using it in a plane, hotel, an internet cafe etc that charges for Wifi rather than being free .   Verizon does not charge you (or indeed know about!) wifi usage, or any other usage that is not on their cellular network (such as using a foreign SIM for example in global phones)  So these charges, if any, will not show up on the verizon bill app.  Having it in airplane mode prevents all cellular data traffic so you should be fine

  • Question regarding MM and FI integration

    Hi Experts
    I have a question regarding MM and FI integration
    Is the transaction Key in OMJJ is same as OBYC transaction key?
    If yes, then why canu2019t I see transaction Key BSX in Movement type 101?
    Thanks

    No, they are not the same.  The movement type transaction (OMJJ) links the account key and account modifier to a specific movement types.  Transaction code (OBYC) contains the account assignments for all material document postings, whether they are movement type dependent or not.  Account key BSX is not movement type dependent.  Instead, BSX is dependent on the valuation class of the material, so it won't show in OMJJ.
    thanks,

  • **question regarding 3G and wif**.

    I have a question regarding 3G and wifi. I have #G activated as well as wifi, when I go to retrieve mail for example I get a pop up asking me if I want to connect to a wifi network…should I have wifi and 3G activated at the same time, and why am I getting the pop up…
    Thanks

    You can have them on at the same time, but they will not be used at the same time for data. The order of preference for data is WiFi > 3G > EDGE > GPRS. You're getting the pop up, most likely, because you have Settings > Wi-Fi > Ask to Join Networks set to ON. You can set that to OFF, and the iPhone will still join known (i.e. previously used) WiFi networks automatically.

Maybe you are looking for

  • My iPod lock button is stuck down. How do I get it out?

    Okay, so I went to turn my iPod on and found my lock button was stuck down into the housing of the iPod, I cannot get it out and cannot turn my iPod on. Should I just buy a new iPod or is there a way of repairing it?

  • WPA2 Enterprise setup question

    I have been trying to complete a WPA2 Enterprise setup, and I have hit a wall in troubleshooting. The current setup has two SSIDs, but the users only use one of these SSIDs, and that one is setup as WEP (I know...I know). I have been tasked with gett

  • Deployment Alternate Association broken

    I'm using TestStand v3.5, and we've set the Alternate Association for .seq files to be our Test Executive. The problem we are running into is that the update to the association in the Folder Options File Types for .seq files does not map the location

  • Adobe will not open documents

    Hello, I cannot seem to open any documents, a dialog box keeps telling me that adobe is in procted mode, and it is in an unsupported configuration, can you help please.

  • How to restart the stuck BPM ( started state)

    Hi XI experts, We need to restart the stuck BPM in XI. Please advise how to do this.. Thanks in advance.