What To Do With An .img File?

My Cisco rep provided a download of a .img file for the 5.x version of the Cisco VPN client, but I can't do anything with it. My CD/DVD burning app won't handle a .img file and, when I changed the extension to .iso as recommended in several non-Cisco forums, it didn't recognize that, either. So far I've been unable to reconnect with my rep, but I need this client. Any suggestions anyone?

The image that you were provided with: sa500-k9-2.1.18.img is incorrect. That is not VPN Client version 5.x nor 4.x. That's the client to connect to SA500 series router.
Please kindly request your rep to provide you with the correct Cisco VPN Client version 5.x image for Windows 7 machine. Please also advise your rep whether it's 32-bit or 64-bit.
The latest version of VPN Client is version 5.0.7:
For 32-bit: Filename is vpnclient-win-msi-5.0.07.0410-k9.exe (VPN Client Software for x86 32-bit version of XP/Vista/Windows 7 - Microsoft Installer).
For 64-bit: Filename is vpnclient-winx64-msi-5.0.07.0440-k9.exe (VPN Client Software for x86 64-bit version of Vista and Windows 7 - Microsoft Installer).
Hope this helps.

Similar Messages

  • What's wrong with the XML file????

    Hello!
    I am tryig to implement a "Filter" on my Apache tomcat server. The problem occures when I try to modify the XML-file on the server. This is the XML file:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
                        <!-- The Filter -->
    <filter>       
         <filter-name>LoginChecker</filter-name>
         <filter-class>filters.LoginFilter</filter-class> 
    </filter>
                        <!-- The Filter Mapping -->
    <filter-mapping>       
         <filter-name>LoginChecker</filter-name> 
         <url-pattern>/secret/*</url-pattern> 
    </filter-mapping>
                        <!-- The Servlets -->
    <servlet>
            <servlet-name>SLoginHandler</servlet-name>
            <servlet-class>LoginHandler</servlet-class>
    </servlet>
    <servlet>
             <servlet-name>SProtectedResource</servlet-name>
             <servlet-class>ProtectedResource</servlet-class>
    </servlet>
    <servlet>
            <servlet-name>SRegister</servlet-name>
             <servlet-class>Register</servlet-class>
    </servlet>
    <servlet>
            <servlet-name>SVerify</servlet-name>
             <servlet-class>Verify</servlet-class>
    </servlet>
                        <!-- ....The Servlets Mapping -->
    <servlet-mapping>
            <servlet-name>SLoginHandler</servlet-name>
             <url-pattern>/LoginHandler</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
             <servlet-name>SProtectedResource</servlet-name>
             <url-pattern>/ProtectedResource</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
             <servlet-name>SRegister</servlet-name>
             <url-pattern>/Register</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
            <servlet-name>SVerify</servlet-name>
            <url-pattern>/Verify</url-pattern>
    </servlet-mapping>
    </web-app>When I try to run another sevlet on the server side, e.g, "Verify", I'll get an error message. BUT if I changethe XML file to (remove the "filter" spec):
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
                        <!-- The Servlets -->
    <servlet>
            <servlet-name>SLoginHandler</servlet-name>
            <servlet-class>LoginHandler</servlet-class>
    </servlet>
    <servlet>
             <servlet-name>SProtectedResource</servlet-name>
             <servlet-class>ProtectedResource</servlet-class>
    </servlet>
    <servlet>
            <servlet-name>SRegister</servlet-name>
             <servlet-class>Register</servlet-class>
    </servlet>
    <servlet>
            <servlet-name>SVerify</servlet-name>
             <servlet-class>Verify</servlet-class>
    </servlet>
                        <!-- ....The Servlets Mapping -->
    <servlet-mapping>
            <servlet-name>SLoginHandler</servlet-name>
             <url-pattern>/LoginHandler</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
             <servlet-name>SProtectedResource</servlet-name>
             <url-pattern>/ProtectedResource</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
             <servlet-name>SRegister</servlet-name>
             <url-pattern>/Register</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
            <servlet-name>SVerify</servlet-name>
            <url-pattern>/Verify</url-pattern>
    </servlet-mapping>
    </web-app>The servlet "Verify", or some other servlet, will work!!!
    What is wrong with my filter spec in the XML file?????

    hepp, no one asked for it...so no one will get it!
    BUT if "stevejluke" want another duke so let me know!

  • What to do with js, css files

    I hope this question is appropriate for this forum because I have scratched my head for hrs. I am in the mission of finding a simple drop down menu and came across to this site http://css-tricks.com/simple-jquery-dropdowns/
    It uses minimum jquery and CSS to achieve it. Looks like it is reasonable for a novice to tackle. Codes are downloaded and unzipped ( there are css,images,js). Question is how do I even get this to run under my test application ? I would think I need to import the image files but what to do with the rest of files? they are not plugin. Could any guru give me a jump start ?
    Any help is appreciated.
    ZenG

    You should be able to import them into APEX under "Shared Components - Static Files" and "Shared Components - CSS". Then you can include the files in your page template using the following html code:
    for js files
    <script src="#APP_IMAGES#hoverIntent.js"></script>for css files
    <link rel="stylesheet" href="#APP_IMAGES#style.css" type="text/css" />After a quick glance, I don't think you'll need the image they have included.

  • What to do with "Unix Executable Files"?

    What do I do with Unix Executable Files? I've tried navigating to them in Terminal and typing in the file name but that doesn't work. How do I execute them?
    I'm trying to install some web development framework software, and it appears that the command names start with the file I'm referring to but when I'm in the directory containing the Unix Executable File and type in the file name followed by a command it doesn't work. I get "command not found"
    G5   Mac OS X (10.4.6)  

    Hi warpdesign,
       In old-style shell environments, all files in the current working directory were defined to be in your PATH, where the shell looks for executables. That was before Trojan Horses. Now you have to specify the current working directory in the command line. Fortunately there is a nice "shorthand" for that. If foo.sh is an executable in the current working directory then it can be invoked this way:
    ./foo.sh
       If you're interested in learning a little more about UNIX, I used to have a long post of links to what I think are some of the better beginning UNIX tutorials and books. However, as others posted great links and I stole them, my post became too long so I put it in a web page. Bill Scott did the same thing so here is Bill's and here is mine.
    Gary
    ~~~~
       University politics are vicious precisely because the
       stakes are so small.
             -- C. P. Snow

  • What is wrong with my txt file or merge doc?

    I'm trying to merge data from a txt file.  It's for name badges.  I've got the document designed (8-1/2 x 11" Avery 5392, 6 badges per sheet) and connected successfully to my data source.  There are only 4 types of info in the txt file (agency name, state, name, title).  When I create the merge fields for each badge position and click preview, I only get the first record repeated into each of the 6 locations on the page.  What am I missing or doing wrong?  I'm using InDesign CS2.
    I've attached the txt file.
    I've also attempted this with a csv file with and got the same results.
    Thanks.

    I downloaded your sample files, and here is what I had to adjust:
    1, I made the master page a single page; not facing pages. I changed from inches to picas
    2. I made two layers: one for graphics and second for text, above the graphics layer
    3. I put the artwork ai file on the graphics  layer on the master page
    4. I deleted 5 of 6 duplicate text frames on page 1; leaving only the first upper left text frame
    5. I moved that lone textframe to the master page, in the same relative position
    6. Text in that text frame should have been controlled with paragraph styles, BTW, but that is a detail
    7. I returned to view page 1
    Then, going to the DataMerge panel, I turned on preview and also clicked the right-most button at the bottom of the panel to setup the merge.
    All records and Multiple Records per document page
    Then, onto the Multiple Record Layout tab:
    Top margin 16pica
    Bottom margin 3pica
    Left margin 2pica
    Right margin 2pica
    Spacing between columns 1p6
    Spacing between rows 11p6
    Check on Preview Multiple Record Layout
    OK to generate
    So, it turns out your txt file was OK as it was.
    Mike Witherell in Maryland

  • What to do with an ISO file?

    I've downloaded a zip file which has expanded to an iso file - I thought i needed to burn it to dvd before opening but nothings happened.... it does look like it hasn't fully uncompressed.... any ideas? Thanks....

    An ISO is yet another compressed file. So your compressed ZIP archive was just a compressed ISO archive (double-zip!). Not sure why anyong would do that, but simply copying the ISO to a disc won't work. You'll end up with a single file (the ISO) burned on the disc.
    You need to do a "burn image" session. Nearly all burning software has that ability. Basically the burning software unzips the archive to disc during the burn so that you end up with a multitude of files on your disc.
    ISO is particularly useful when imaging a bootable disc, and then making copies from that image that boot like the original.
    Good luck.
    Jeffo93y

  • What's wrong with my Quartz files?

    I have an issue with Quartz Composer files. Some screensaver files, like arabesque, shell spectrum, and RSS visualizer, crash system preferences whenever i try to select them. Also, the actual files (the ones in the system folder) make the finder crash whenever i try to open them or use quick look. I've already replaced the files thinking they were corrupted, but it keeps happening. I transferred the files to my old iMac G5 and it reads them just fine! Help!!
    Also, iChat keeps crashing whenever i try to use the video effects.
    Message was edited by: Craig Anschuetz

    Have you by any chance installed the beta version of the upcoming Safari? If so, that's the problem. See this thread for more details:
    http://discussions.apple.com/thread.jspa?messageID=7975911
    If you aren't using the beta Safari afraid I don't know. Mine are all working just fine in 10.5.5. I don't use iChat, so don't know if that would be affected by the same problems.
    Francine
    Francine
    Schwieder

  • What to do with MPEG-1 Files!?!?

    I am trying to blend some photos and video together to make a movie (and ultimately a DVD).  I am totally flying by the seat of my pants here, but now I realize that the video files I was given are MPEG-1 and nothing on my machine appears to be compatible...  and guidence about what I can do to convert the files or get the programs I DO have to deal with the files in their current form?
    Thanks in advance.
    Jen

    MPEG Streamclip (free) can convert your MPEG-1 files to DV Stream for use in any iMovie version.

  • Firefox asks what to do with a PLS file

    When I attempt to stream radio from the BBC site by clicking Listen Live a window opens which reports:
    You have chosen to open: r2_heaacv2.pls, which is a PLS file, from www.bbc.co.uk
    What should Firefox do with this file?
    I need to know what to select?
    Thanks

    See if this helps you. <br />
    http://www.ghacks.net/2011/11/29/play-playlist-pls-files-in-windows-media-player/

  • Anyone know what to do with this xml file

    hi,
    I have one problem regarding xml file.......i know xml parsing but now xml format is different so i can't manage properly......if u have any idea then pls tell me what to do.....
    <getFriends generator="zend" version="1.0">
    <key_0>
    <firstName>Alain</firstName>
    <lastName>Nicod</lastName>
    <cities>
    <key_0>
    <id>0</id>
    <city>St Prex</city>
    </key_0>
    <key_1>
    <id>1</id>
    <city>Cochin</city>
    </key_1>
    <key_2>
    <id>2</id>
    <city>surat</city>
    </key_2>
    <key_3>
    <id>3</id>
    <city>amreli</city>
    </key_3>
    </cities>
    </key_0>
    </getFriends>
    I have put cities on didStartElement then its not giving perfet data so
    what should i do now.........any idea about........
    Thanks,
    Haresh.

    It is both easier and more complicated than that. I really can't give you any "sample code" because it isn't a coding issue. It is more of a data representation issue. XML is both a "simple" markup language and a complex data representation language. You need to read up a bit on XML to see what you can do with it. Come up with a test data set that is formatted the way that make sense to you. Or, maybe create a test data structure in your code and save that to XML to see how the native representation looks.
    At that point, you will know what your input looks like and you will know what your output should look like. You just need a way to get from A -> B. For XML, the quickest way to do that is through XSLT.

  • Office 2013 pro plus trial / installed from cd made with downloaded .img file / error upon starting application

    win764bit
    downloaded 0ffice 2013 proplus trial
    burned cd / installed with no error message
    open any office 2013 application / message - please wait while we load sign in - does not complete / message - word has stopped working - problem - close - notify / only option is to close program.
    Key has not yet been entered.
    what should be done to get it working properly.

    Hi jazzisjazz,
    According to the error message “please wait while we load sign in”, I find a similar issue. The user solved it by deleting HKEY_CURRENT_USER\Software\Microsoft\Office. You can attempt this method to check if it works.
    http://answers.microsoft.com/en-us/office/forum/office_2013_release-office_install/i-cant-login-my-accounttemporary-server-problem/5b4b51e8-647f-4d78-bafe-9d7000a1e6a2
    You can also try these general steps to check if it helps.
    http://office.microsoft.com/en-001/support/why-cant-i-start-my-office-2013-application-HA104011864.aspx
    http://support.microsoft.com/kb/2813143
    If there is anything that I can do for you regarding this issue, feel free to post back.
    Best regards,
    Greta Ge
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • What's wrong with my plist file?

    Here's my plist file
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN http://www.apple.com/DTDs/PropertyList-1.0.dtd >
        <plist version="1.0">
        <dict>
          <key>Label</key>
          <string>com.homebrew.autoupdate</string>
          <key>ProgramArguments</key>
          <array>
            <string>/usr/local/bin/brew_up</string>
          </array>
          <key>StartInterval</key>
          <integer>86400</integer>
          <key>StandardErrorPath</key>
          <string>/usr/local/var/log/brew.log</string>
          <key>StandardOutPath</key>
          <string>/usr/local/var/log/brew.log</string>
        </dict>
        </plist>
    `/usr/local/bin/brew_up` is just a script which calls `brew update`, `brew upgrade` etc
        #!/bin/sh
        echo `date`: Start updating brew
        /usr/local/bin/brew update && /usr/local/bin/brew upgrade && /usr/local/bin/brew cleanup
        echo `date`: Finish updating brew
    Then I loaded that file by `launchctl load ~/Library/LaunchAgents/homebrew.autoupdate.plist`
    Then I tried `launchctl start com.homebrew.autoupdate`, it also worked fine.
    But the thing is, it won't start every 24 hours, as I'd expected. Actually now over 48 hours has passed, it's still not started even once. What's wrong here?
    Then I changed `StartInterval` to `StartCalendarInterval`
          <key>StartCalendarInterval</key>
          <dict>
            <key>Hour</key>
            <integer>21</integer>
          </dict>
    Then it was started indefinitely, here's the log file:
        Thu Aug 7 21:17:20 CST 2014: Finish updating brew
        Thu Aug 7 21:17:20 CST 2014: Start updating brew
        Already up-to-date.
        Thu Aug 7 21:18:14 CST 2014: Finish updating brew
        Thu Aug 7 21:18:14 CST 2014: Start updating brew
        Already up-to-date.
        Thu Aug 7 21:19:39 CST 2014: Finish updating brew
        Thu Aug 7 21:19:39 CST 2014: Start updating brew
        Already up-to-date.
        Thu Aug 7 21:22:28 CST 2014: Finish updating brew
        Thu Aug 7 21:22:28 CST 2014: Start updating brew
        Already up-to-date.
        Thu Aug 7 21:24:46 CST 2014: Finish updating brew
        Thu Aug 7 21:24:46 CST 2014: Start updating brew
        Already up-to-date.
        Thu Aug 7 21:27:03 CST 2014: Finish updating brew
        Thu Aug 7 21:27:03 CST 2014: Start updating brew
    What the h*ll?

    When I use
      <key>StartCalendarInterval</key>
      <dict>
        <key>Minute</key>
        <integer>0</integer>
        <key>Hour</key>
        <integer>21</integer>
      </dict>
    It's all good.
    What's bugging me is why StartInterval would't work. Any when I wrote a simple demo about StartInterval, it totally worked!
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN http://www.apple.com/DTDs/PropertyList-1.0.dtd >
    <plist version="1.0">
    <dict>
      <key>Label</key>
      <string>com.test.touch</string>
      <key>ProgramArguments</key>
      <array>
      <string>touch</string>
      <string>/tmp/touched.txt</string>
      </array>
      <key>StartInterval</key>
      <integer>60</integer>
    </dict>
    </plist>

  • "No image found in subtitle script line" -- What's wrong with my FAB file import?

    I've used Encore for years, version 4 and now 5.1 on both Mac and PC (Windows 7).
    I export FAB files with bitmaps from my subtitling program and import them into subtitle tracks in Encore.
    The last few times this has not worked.  Every time I export FAB files and try to import them into Encore, I get the error message "No image found in subtitle script line."  I've used different machines and different versions (4 and 5.1) of Encore.
    There are indeed images (bitmaps) in the folder containing the FAB file.
    Is there a solution to this problem?
    Thank you!

    I don't recall anyone describing this problem. If you can post a link to a short fab script, I'll test it in an Encore project. I am CS5 only, but it is worth a shot.

  • What's up with this-QT file showing up in FFox and Opera and not in Safari

    I am using the latest version of Dreamweaver (Adobe) and have embedded a quicktime file on a page such that it successfully shows up (via DW preview in browser feature) and plays in FireFox (latest version) and Opera (latest version). It's not showing up, though, in Safari. When I look at the code in Safari, the entire coding for displaying the file has disappeared; when I look at the page code under the other browsers, though - it's right there (and hence displays the file properly).
    Ok - I give up. What is up here???!!

    Ok, here is the original code in the HTML for just the quicktime file that's embedded:
    <td colspan="2" align="center" valign="middle" bgcolor="#333333" height="576">
    <script type="text/javascript">
    ACAXRunContent( 'classid','clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B','codebase','http://www.apple.com/qtactivex/qtplugin.cab','name','Temple Ci\'um Film','width','640','height','496','src','TS CIUM WIP.mov','controller','true','autoplay','false','pluginspage','http://www.apple.com/QuickTime/download/' ); //end AC code
    </script><noscript><object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" name="Temple Ci'um Film" width="640" height="496">
    <param name="controller" value="true">
    <param name="autoplay" value="false">
    <param name="pluginspage" value="http://www.apple.com/QuickTime/download/">
    <embed src="TS CIUM WIP.mov" width="640" height="496" name="Temple Ci'um Film" controller="true" autoplay="false" pluginspage="http://www.apple.com/QuickTime/download/"></embed>
    </object>
    </noscript>
    </td>
    Here is the code I see when I PREview it in Safari using DW (where the file appears to have not been embedded at all):
    <td colspan="2" align="center" valign="middle" bgcolor="#333333" height="576">
    <script type="text/javascript">
    ACAXRunContent( 'classid','clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B','codebase','http://www.apple.com/qtactivex/qtplugin.cab','name','Temple Ci\'um Film','width','640','height','496','src','TS CIUM WIP.mov','controller','true','autoplay','false','pluginspage','http://www.apple.com/QuickTime/download/' ); //end AC code
    </script><noscript><object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" name="Temple Ci'um Film" width="640" height="496">
    <param name="controller" value="true">
    <param name="autoplay" value="false">
    <param name="pluginspage" value="http://www.apple.com/QuickTime/download/">
    <embed src="TS CIUM WIP.mov" width="640" height="496" name="Temple Ci'um Film" controller="true" autoplay="false" pluginspage="http://www.apple.com/QuickTime/download/"></embed>
    </object>
    </noscript>
    </td>
    So - what do you think happened here?
    Again, FireFox and Opera display the embedded file just fine.
    Message was edited by: Actually Human (wanted to make SURE I put in the Safari code that showed up in Safari - correctly).

  • What's wrong with the manifest file????

    when i tried to jar using this command:
    java -jar aaa.jar
    i have an error saying:
    Failed to load Main-Class manifest attribute from aaa.jar
    so i tried editing my manifest file but no matter wad changes i make to the manifest file the same error occur so desperately, i remove the manifest file and the same error occur! can someone help me???

    If you want to execute a jar file using the -jar option, then you must put a Main-Class entry into the mainifest of the jar. The Main-Class must be the fully qualified name of the main class. The main class must be added to the jar correctly. The manifest must end with a blank line.
    If you still have problems, you need to post more information: the contents of the manifest, the fully qualified name of the main class, the command you are using to create the jar.
    You can also execute jar without using the -jar option. You do this by adding the jar to the classpath and specifying the main class as the application class to run. For example java -classpath aaa.jar MainClass

Maybe you are looking for

  • Operation not yet implemented when exporting crystal report to pdf

    Thank you in advance, When running the line **** export within the following code, I am getting the following error message: "Error in File C:\DOCUME1\rborda\LOCALS1\Temp\TimeDetailTest {00DC8730-45CD-4A29-8854-C44BBD5B5230}.rpt: Operation not yet im

  • Silent install of Data Server 9.0.1 Patch Set 2

    The install instruction for the patchset indicate there is supposed to be a response directory after expanding the zip and tar files but there is not. I can not find this documented anywhere. 1. Is it supposed to exist? 2. Windows version patch 901 p

  • Some questions on Zen Visio

    Hi I'm considering to buy Creative's Zen Vision:M. Before that however, I've some questions. Power Adapter . Does it come bundled with the power adapter? If not, how much does it cost. The website doesn't seem to state this. Battery Life 2. It's rate

  • Does MacPro 1.1 support 4G FBDIMM?

    I tried to install a pair of 4G DDR2 667 FBDIMM (Transcend) to my MacPro 1.1 but the machine couldn't recognize the new momery... I've exactly followed the installlation instruction at the begining and try to plug them into other slot afterward, but

  • Unable to write data into excel file when it's close

    Hi, I'm facing this problem and it's a bit weird. I'm using the following method to insert data into excel file. But when excel file is close, it unable to write data into the excel sheet. But it was able to write the data into the excel sheet if i o