Applescript Studio Beginner - Run a script and display a window

Hi,
I am new to applescript studio ; I found out how to make an application displaying a window with a progress bar.
How can I start running a script without displaying any window, and at some time in the script, run the "awake from nib" handler that will call the display of the progress bar ?
Thanks,
Nicolas

Nicolas Silvestre wrote:
How can I start running a script without displaying any window, and at some time in the script, run the "awake from nib" handler that will call the display of the progress bar ?
The "awake from nib" handler is called automatically when your nib file gets loaded, you don't call it yourself. I suppose you could go thru the pain of putting your window into a separate nib file and then have your script load the nib file when you're ready... but that's not the easiest way to do it and you probably don't need to do this for your situation.
All you really need to do is go into Interface Builder, select your window object and uncheck the checkbox in the "Window Attributes" pane that says "Visible At Launch". The "awake from nib" will still be called at it's normal time and your window will be loaded but it will not be displayed.
Then you can do whatever other scripting you need to do... and when you're ready to display your window you simply call:
show window "yourWindowsAppleScriptName"
You can do your initial scripting at the beginning of "awake from nib" and then call "show window" at the tail end of "awake from nib" if that works for you. But you don't have to have the "show window" call in your "awake from nib"... you can call it later on in some other handler if you need to.
Steve

Similar Messages

  • Can servlets/ jsp automatically run perl scripts and executables?

    I'm a student and am new to to servlets and web programming in general.
    I need to know if it's possible to run perl scripts and executables automatically from servlets/ jsp.
    The program I am planning on creating should have a client outside a firewall that uploads perl files to a gateway machine inside the firewall, the servlet should be able to run this perl file, and then pass the resulting file as an argument to an executable, to be run by another servlet on a different server.
    I've tried looking everwhere for an answer to this and am about to revert to a cgi based approach because I'm not sure if it would work so any help/ suggestions would be much appreciated.

    Hallo,
    I think using java Runtime will help. you can do Processes that execute shell or system commands through
    Process process = Runtime.getRuntime().exec("your perl scripts here!");
    Bye

  • Why won't my MacBook run on battery and display on the monitor?      Runs fine if power cord is plugged in.                                                                                      I have to be plugged in to see the monitor display.  Any ideas

    Why won't my laptop run on battery and display on the monitor?  If it is plugged in to power it works fine but the monitor goes blank if the power cord is removed.  Any ideas?

    Nothing is wrong.  what your're seeing is by design.

  • Running "nightly scripts" and other behind the scenes tasks

    I keep seeing posts about how the iMac Intel runs nightly scripts and/or other tasks behind the scenes. There is no mention of this in the user manual nor does Apple warn you about not putting the computer to sleep so that these tools will run. My iMac hard drive is asleep every night (as am I...) how can I get these things to run manually? How often? And can someone point me to literature to support this info?
    Thanks much,
    HS

    522/2968
    Hi HS,
    "There is no mention of this in the user manual"
    That's because the three nightly maintenance scripts are not important at all, and don't affect Mac OS X performance.
    They are only a relic from the glorious Unix system times when it was used on rather small capacities HDs, on computers that were running non stop for months or years...
    Running them yourself manually, as a "perfectionist measure", can be done easily using the "daily, weekly & monthly" features in OnyX or Cocktail for example. All three tasks together, once a month or so, is fine. No harm (but useless) rerunning them many times.
    Litterature:
    The KB article is quite old, it shows only the default 10.2 times and commands:
    - http://docs.info.apple.com/article.html?artnum=107388
    (almost same as 10.3 and 10.4 though)
    What I really would like to learn, is whether the scripts have been modified in the Intel version of Tiger.
    Could you please (or Joseph or somebody else), in Finder, Go To (shiftcommandG) this folder:
    /private/etc/
    see if there is still the same
    /private/etc/periodic
    folder, with the three
    /private/etc/periodic/daily
    /private/etc/periodic/weekly
    and
    /private/etc/periodic/monthly
    scripts?
    (I'm asking because I don't own an Intel Mac myself).
    Next you would Go To (⇧⌘G) this folder:
    /System/Library/LaunchDaemons
    please, see if you find those three files
    /System/Library/LaunchDaemons/com.apple.periodic-daily.plist
    /System/Library/LaunchDaemons/com.apple.periodic-weekly.plist
    and
    /System/Library/LaunchDaemons/com.apple.periodic-monthly.plist
    If they are still there, you can open them (with TextEdit if your Developer Tools are not installed), and read the default times when the tasks are scheduled to run.
    Thanks in advance!
    Axl

  • Applescript: How to run a script once upon logon for multiple users

    I'm deploying a NetRestore image to about 150 Macs which will be using Active Directory and I've designed a custom default user for each new user. However, our system requires a specialized certificate that has to be installed on the local login.keychain for each user otherwise network connectivity is impacted.
    I've tried to use the security command through Terminal to install the certificate, but no matter what combination of commands, I cannot seem to get that to work properly even with an already-created user. While it will often say it's installed, the cert will not actually show up in the login keychain in Keychain Access. And the network connectivity is still impacted.
    So instead, I created a brief AppleScript that just gives the user brief instructions to click "Add" on the prompt for which Keychain to add the cert and then "Always Trust" for the "This cert is not verified" prompt. Then it launches Keychain Access. Originally, I was going to have it actually click the buttons for the user, but I realized trying to get the whole Accessibility apps and assitive devices to work on every new user would be a nightmare.
    I created the script on another 10.9 Mac using Automator to make it an actual application. I've used the instructions in OS X: Using AppleScript with Accessibility and Security features in Mavericks to sign it and I'm using root to move it from its network location into the Applications folder. I've adjusted the permissions to allow all Admin users to r/w (along with everyone else). To the root user, it shows as a usable application, but every other user on the Mac sees it as damaged/incomplete.
    What I want to do is add it to the default Login Items, so I can run the final AppleScript command to simply remove the login items listing. That way I don't need to worry about it running again, but it's still available for the next user to sign onto the deployed Mac.
    I know it's a little convoluted, but this is the final piece to the NetRestore deployment I've been working on for months. Any suggestions on how to make this work (or even a completely different solution) would be greatly appreciated.
    Here was the original shell script in case you're curious.
    #!/bin/bash
    ## Prompt for current user admin for use in Certificate Install
    while :; do # Loop until valid input is entered or Cancel is pressed.
        localpass=$(osascript -e 'Tell application "System Events" to display dialog "Enter your password for Lync Setup:" default answer "" with hidden answer' -e 'text returned of result' 2>/dev/null)
        if (( $? )); then exit 1; fi  # Abort, if user pressed Cancel.
        localpass=$(echo -n "$localpass" | sed 's/^ *//' | sed 's/ *$//')  # Trim leading and trailing whitespace.
        if [[ -z "$localpass" ]]; then
            # The user left the password field blank.
            osascript -e 'Tell application "System Events" to display alert "You must enter the local user password; please try again." as warning' >/dev/null
            # Continue loop to prompt again.
        else
            # Valid input: exit loop and continue.
            break
        fi
    done
    echo $localpass | sudo security import /'StartupFiles'/bn-virtual.crt ~/Library/Keychain/login.keychain
    osascript -e 'tell Application "System Events" to delete every login item whose name is "LyncCert"
    And this is the AppleScript itself. (I used the \ to make it easier to read. The first line is actually one complete command)
    display dialog "Click OK to start installing Mac Network Certificate." & return & return & \
    "In the following prompts, click the 'Add' then 'Always Trust'." & return & return & \
    After you have clicked 'Always Trust', quit Keychain Access." default button 1 with title \
    "Mac Network Certificate Install"
    activate application "Keychain Access"
    tell application "Finder" to open POSIX file "/StartupFiles/bn-virtualcar.crt"
    tell application "System Events" to delete login item "Lync-AppleScript"
    end
    Thank you for your help!

    I have run into this same issue. Are you trying to run the script one time as a new  user logs in or everytime a user logs in?

  • SCCM 2012 application run Powershell script and return codes

    Hi,
    I created an new application (imported as MSI) in SCCM 2012R2. After import I changed the deployment type installation program to run a Powershell script: powershell.exe -ExecutionPolicy Unrestricted -File "Install FactSet 2013 5I.ps1
    My goal is to close some processes before installing the MSI. This works. But on a failure the application program also return code 0 (AppEnforce.log). Is it possible to pass the MSI return codes to SCCM.
    Maybe anyone had the same or idea's to solve this? Thanks in advance.
    Regards,
    Peter
    Powershell script code:
    $ExitCode=0
    Function
    Stop-RunningApplication{
    Param(
    [parameter(Mandatory
    =$true)]
    [string]$ProcessName#
    Specify process names separated by commas
    # Split multiple processes on a comma and join with the regex operator '|' to perform "or" match against
    multiple applications
    $processName=$processName-split(",")
    -join("|")
    $process=Get-Process|Where{
    $_.ProcessName
    -match$processName}
    |Stop-Process-Force
    #Stop running processes
    Stop-RunningApplication
    -ProcessName"excel,outlook,fdsw32,marquee,POWERPNT,WINWORD"
    #Install FactSet 2013 5I
    $ExitCode
    =(Start-Process".\FactSet_Setup_2013_5I_x644.msi"'/qn
    FACTSET_CLOSE_PROCESSES=1 /l*v C:\Temp\InstFac20135I.log'-Wait-Passthru).ExitCode
    Environment]::Exit($ExitCode)
    Peter vd Bosch

    It's really hard to tell from the code above because of the way it's listed, but are sure that even executes? I see at least one stray curly brace and a stray square bracket.
    For the Start-Process cmdlet, have you tried without the -passthru parameter?
    Also, using the actual parameters will make the code much more readable instead of relying on position.
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • Running nested scripts in "Display only mode"

    Hi,
    I have a deployment script that calls scripts nested. Is it possible to run these having e.g echo set on in order to display everything being executed, without actually executing it against the database?
    Hope my question makes sense
    Regards
    Peter

    What you could try is to disconnect before running them, then each statement will failed with "Not connected"
    disconnect
    set echo on
    @c:/download/utlsampl
    SQL> disconnect
    Disconnected from Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production
    With the Partitioning option
    JServer Release 9.2.0.8.0 - Production
    SQL> set echo on
    SQL> @c:/download/utlsampl
    SQL> DROP TABLE LSC_EMP CASCADE CONSTRAINTS;
    SP2-0640: Not connected
    SQL> DROP TABLE LSC_DEPT CASCADE CONSTRAINTS;
    SP2-0640: Not connected
    SQL>
    SQL> CREATE TABLE LSC_DEPT
      2  (
      3     DEPTNO INTEGER constraint DEPTNO_NOT_NULL NOT NULL,
      4     DNAME  VARCHAR(14),
      5     LOC    VARCHAR(13)
      6  );
    SP2-0640: Not connected
    SQL>
    SQL> alter table LSC_DEPT add constraint DEPT_PRIMARY_KEY primary key (DEPTNO);
    SP2-0640: Not connectedHTH
    Laurent

  • Firefox (cause the computer) run very slow and display message about Javascript...

    I have installed Firefox (latest vesion) in Windows XP Computer and It sometime run slow (and slow the computer at that time) so that I have to kill firefox job in taskmanager to run it again. Normally, when computer slow, the firefox show a message like "javascript..."
    Please tell me how to fix this problem. Thanks!
    haivnuni - [http://vnuni.net phần mềm bán hàng]

    Ok, try to clean your PC with [https://www.piriform.com/ccleaner/download CCleaner], do deep defrag and optimization with [http://www.iobit.com/iobitsmartdefrag.html Smart Defrag], make sure you have space on your primary drive(where your OS is installed), test your memory with [http://www.memtest.org/ Memtest86+]. If this doesn't help probably most painless and fastest solution will be to reinstall your Windows. Also keep in mind that Windows XP is no longer supported by Microsoft, so if you are in position to move to a newer version of Windows would be a right thing to do. If you reinstall your OS, just update OS and install drivers before you install Firefox and test it then without any other software installed.

  • Running PLSQL scripts and proC batches using OATS

    Hi,
    Could you please provide help / pointers to some documents that will help me test the batch programs and anonymous PLSQL blocks using OATS?
    Thanks in advance.

    You need to write some java codes...
    SQL:
    utilities.getSQLService().define("myaliasName", "oracle.jdbc.driver.OracleDriver",
                        "jdbc:oracle:thin:@machineName:1521:sid", "userName", "pwd");
    -- Please pass appropriate values as per ur requirement.
    String sql = oracle.oats.utilities.FileUtility.fileToString("C:/temp/MySqLfile.sql"); -- Ur SQL file name.
    utilities.getSQLService().execute("myaliasName", sql);
    CommandLines:
    // Execute external command
    runtime.getRuntime().exec(“yourscript.bat”); // for a Windows agent
    runtime.getRuntime().exec(“yourscript.sh”); // for a Linux agent
    I have written some codes (that I cannot find right now) where I connected to a Linux system to run remote commands (using plink.exe from windows box).
    Be careful with path, user permissions and all the stuff.
    JB

  • When upgrading OS from Mavericks to Yosemite, the computer freezed at "Running package scripts" and don't go further, what should I do now?

    iMac 21.5"/IRISPRO/2.7QC/2x4GB/1TB OS Mavericks. When upgrading to Yosemite, time remaining is 8 minutes and freezed and don't go further for couple of 6 hours. What should I do now?

    Force a restart by holding down the power button. See what happens.

  • Automator "Run Shell Script" and sqlite3 doesn't return a result

    Hi,
    I'm trying to implement an Automator application to remove "dead entries" from the Launchpads database.
    My issue at the moment is, that I don't receive the result of the sqlite3 command.
    Here how I have put the pieces together in Automator:
    As you can see, the View Results is empty. I tried the same structure just with find instead of sqlite3 and I received the output.
    Has someone a clue why it doesn't work with sqlite3?
    Thanks

    Deleted. I misread the question.

  • I have a 4th gen ipod nano which will not sync after restore. i have run itunes diagnostics and attached thMicrosoft Windows Vista Home Premium Edition Service Pack 2 (Build 6002)e results. can you help please?

      Microsoft Windows Vista Home Premium Edition Service Pack 2 (Build 6002)
    Sony Corporation VGN-NS20E_P
    iTunes 10.6.1.7
    QuickTime 7.7.1
    FairPlay 1.14.37
    Apple Application Support 2.1.7
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 5.1.1.4
    Apple Mobile Device Driver 1.59.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.5.502
    Gracenote MusicID 1.9.5.115
    Gracenote Submit 1.9.5.143
    Gracenote DSP 1.9.5.45
    iTunes Serial Number 0012ACE4032C3EC8
    Current user is not an administrator.
    The current local date and time is 2012-05-26 22:17:26.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    Intel Corporation, Mobile Intel(R) 4 Series Express Chipset Family
    Intel Corporation, Mobile Intel(R) 4 Series Express Chipset Family
    **** External Plug-ins Information ****
    No external plug-ins installed.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name: {78DA402D-66EE-4084-9D5E-8A010E0B8437}
    Description: Atheros AR928x Wireless Network Adapter
    IP Address: 192.168.2.8
    Subnet Mask: 255.255.255.0
    Default Gateway: 192.168.2.1
    DHCP Enabled: Yes
    DHCP Server: 192.168.2.1
    Lease Obtained: Sat May 26 19:10:42 2012
    Lease Expires: Sat May 26 19:10:41 2012
    DNS Servers: 192.168.2.1
    Adapter Name: {C1458549-CA0B-4A3B-8F8E-9259653AA0DD}
    Description: Marvell Yukon 88E8055 PCI-E Gigabit Ethernet Controller
    IP Address: 0.0.0.0
    Subnet Mask: 0.0.0.0
    Default Gateway: 0.0.0.0
    DHCP Enabled: Yes
    DHCP Server:
    Lease Obtained: Thu Jan 01 00:00:00 1970
    Lease Expires: Thu Jan 01 00:00:00 1970
    DNS Servers:
    Active Connection: LAN Connection
    Connected: Yes
    Online: Yes
    Using Modem: No
    Using LAN: Yes
    Using Proxy: No
    Firewall Information
    Windows Firewall is on.
    iTunes is NOT enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was unsuccessful.
    The network connection timed out.
    Connection attempt to firmware update server was successful.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2012-05-26 20:57:29.
    **** Device Connectivity Tests ****
    iPodService 10.6.1.7 is currently running.
    iTunesHelper 10.6.1.7 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) ICH9 Family USB Universal Host Controller - 2934. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2935. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2936. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2937. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2938. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2939. Device is working properly.
    Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293A. Device is working properly.
    Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293C. Device is working properly.
    FireWire (IEEE 1394) Host Controllers:
    RICOH OHCI Compliant IEEE 1394 Host Controller. Device is working properly.
    Connected Device Information:
    JULES'S IPO, iPod nano (4th Generation) running firmware version 1.0.4
    Serial Number: YM839W553QU
    Bus Speed: 61440
    Most Recent Devices Not Currently Connected:
    iPhone 4S running firmware version 5.0.1
    Serial Number: DNWH3R84DTD2
    **** Device Sync Tests ****
    No iPod, iPhone, or iPad found.

    Hello, VvioletT. 
    Thank you for visiting Apple Support Communities.
    I see you are experiencing issues syncing your iOS device.  Here are a couple articles that I would recommend going through when experiencing this issue.
    iOS: Troubleshooting USB-related alerts when syncing
    http://support.apple.com/kb/TS5254
    Resolve issues between iTunes and security software
    http://support.apple.com/kb/ts3125
    Cheers,
    Jason H.

  • Preloader Image Script and Pop-Up Window Behavior

    Hello --
    My client's referring site --
    www.moscaritolo.com/originals.htm. Please note: I am not a
    programmer, but more of a designer and don't possess the skills of
    writing code so in the development of this site for my client, I
    decided to use this preloadslider -
    http://www.dynamicdrive.com/dynamicindex14/preloadslide.htm
    - by Jason Moon to display the images. So far, I really like it and
    so does my client.
    However, I now have a problem with the pop-up window behavior
    for the triptych image on the originals.htm page. When you hit the
    triptych pop-up behavior, the preloader stops working on the main
    page and (#) stays in the address bar even when you've closed the
    pop-up window for the triptypch image. Next, I tried just making
    the word triptych a standard link to a new htm page and using the
    back button on the browser and STILL, the preloader will not work
    properly..? Any ideas..?
    Text

    please code sample ? demo code is enough to try
    with.This has nothing to do with samples. You should know
    which encodings you use. You decalre it in the HTML
    i have not mentioned encoding in the HTML.
    by html encoding , i think you mean this (bold letter)
    // created by dreamweaver 2004
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>Untitled Document</title>
    </head>
    <body>
    </body>
    </html>if you mean that...NO, I DID NOT USE that thing in my JSP. i deleted that.
    and XML headers. XML encoding, i have this at the start of XML....
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    // XML data
    Java, if nothing else is said, uses
    UTF16.
    in my form i have method="post".And what do you receive? What does "corrupted" mean?
    Not well-formed? Garbage characters? Truncated?error message: [STDOUT] xmlStringelectric.xml.ParseException: java.io.IOException: could not find 59 line 1, char 46682:
    NO, i dont blame my parser. if i provide the XML seperately, then my parser works fine.
    but when i send the XML via JSP to the parser it does not work.
    that means sending of XML is making some trouble.

  • Running Shell scripts from the desktop

    Hi,
    I'm from the UNIX world rather than the mac one so have written a number of shell scripts. Lets call them foo.sh and bar.bash for the sake of argument.
    These are sitting in a folder on my desktop
    I can happily open a terminal session and run the scripts - and they work as I expect them to.
    If I open a Finder window and double click on the icons for the scripts what happens is that it opens TextEdit.
    Theres two things I'd like to change
    A. I'd like to change the behaviour so that the scripts run when I double clike them rather than opening an editor (possibly in a terminal window )
    B. I'd like to be able to change the editor from TextEdit to one I'm more used to...(I've installed Vim/Gvim which I quite like).
    A. - Haven't managed to get anywhere trying to solve this....
    B. - So far my attempts have got as far as...
    1...
    right-click -> open with -> Other -> select vim.app
    tick Always open as
    click open
    The file then opens in a vim window.
    however if I now close the vim application and double clike the file icon then the file opens in TextEdit again
    2...
    Right Click -> Get Info -> Open with VIM -> add -> Change all
    message appears
    'Are you sure you want to change all your Vimm.app documents to open with the application "vim.app"
    This change will apply to all Vim.app documents with extension ".sh" '
    click continue
    In the Info pane the 'Open with' selection widget immediately changes to say 'Open with: TextEdit.app'
    So I'm a bit stumped, can you help!
    Regards
    Mark
    Mac Mini   Mac OS X (10.4.3)  

    Thanks to both people who answered.
    You both gave me useful workarounds to my problem.
    Renaming the scripts to be 'foo.command' was very hepful and useful to know. I tried this and it does indeed work. I may use this in the future.
    I also had a play around with applescript and the automator to achieve similar results.
    I agree that double clicking to run the file and also edit it is mutually exlcusive - I'm sort of trying to work out how I could make it do 'either/or' as I choose. In the Windows world i'd have the option of setting 'open' to run the script (assuming I'd got cygwin installed and had assiciated it) OR 'Edit with vim' if I wanted to edit the file (assuming vim was installed!).
    Unresolved issue is that I'm still unable to get VIM to be associated with a .sh file.
    The way I would envisage it working in Mac world would be to be able to right click on foo.sh -> Open with... and have a list to select from immediately there like..
    Text Edit
    Vim
    Terminal (default)
    and be able to somehow add and remove apps from the list and change which is the default.
    My issue is that I don't seem to know how to get other apps than TextEdit to appear in the list - I suspect I need a better understanding of how these file/application associations work and are configured.
    Regards
    Mark

  • Is it possible to have a keyboard shortcut run a script with CS6?

    I see there is an option for it to go to "other scripts" with a keyboard shortcut, but that really doesn't help much. I want it to play a specific script that is already loaded. Thanks in advance!!

    I'm working on something very similar right now.
    Written in AHK.
    so win only sorry Macsters...
    Scans a folder of your scripts and displays them in a panel (see above)
    you can click any one like a button.
    or you can eg. 3 enter.
    Panel can be dragged to where ever you want it.
    Still playing with the finishing touches and will post the finished result once I am done.
    That will be next year some time, as I am finished work for the year.
    Run, % "[Full path to]\Illustrator.exe " Scriptlocation JSName
    this is my AHK line to run the script.
    any reason for the cmd.exe section

Maybe you are looking for

  • Problem while sending to production

    Hi friends, I am working on module pool program. I have four includes in the program. I have completed that object and send to production. According to the basis consultant he asked me to changed the program name accordingly(Before sending to product

  • My iMac is now making a noise. Sounds as if the fan is working overtime. Any help appreciated

    My iMac is now starting to make a noise when on. It sounds as if the fan is working overtime. It is an audible ticking. Any help appreciated

  • History of Processes - how to view which process caused CPU spike?

    We have been facing an issue with a domain controller (Windows Server 2008 R2, VM on ESX 5.0) over the past week. Around twice a day, the CPU spikes at 100% for about 10 minutes. We notice because we receive an alert from the hypervisor, but by the t

  • Redundancy/failover testing

    My company is a relatively small enterprise (about 800 people scattered across 45-50 branches) and we are planning on setting up a periodic failover/redundancy testing schedule for our routers. Basically, we want to test the secondary WAN links at ou

  • Tv tuner in dv7-1260us

    Is it possible to install one? Also this model has the ATI Radeon HD 3200 graphics installed, is it possible to upgrade? Thanks