WVC54GCA: getting the monitoring SW to work on Vista

How do I get the Compact Wireless-G Internet Video Camera software (asfplayer.exe) to run on Vista (SP1 32-bit)?

Try to download the Latest Software for the Camera from the Linksys Website and try to Install that software on your computer and this will install the asfplayer.exe on your computer. Go to http://www.linksysbycisco.com/US/en/support/WVC54GCA/download ...................select proper version of your camera........download the software file......save that file on desktop....Once the download is complited you need to Unzip all the files and then Run the setup on your Computer, and this will automatically install the asfplayer on your computer. 
Message Edited by castor on 05-28-2009 06:29 PM

Similar Messages

  • Can't get the nvidia module to work.

    Hi,
    I just moved a machine from debian to archlinux due to the newer packages. Anyways, since yesterday I have been trying to get the nvidia module to work but haven't had no luck. Basically I get a black screen once I run startx and afterwards I can't switch back to any of the consoles. The system doesn't hang because I can SSH into it from another machine and do whatever. Killing all the x-related processes doesn't recover the screen, only restarting the computer gets the ttys back.
    I have tried several different nvidia module versions include 1.0-7664, 1.0-7174 and 1.0-6229. I have also the stock 2.6.11.10 kernel and a custom compiled 2.6.11.11 kernel. If that wasn't enough I have tried the xorg generated xorg.conf file and the hwd generated xorg.conf file. Below is what I am running.
    xorg 11R6.8.2-2
    eVGA nVidia GeForce FX5200 (The LCD is connected through the regular VGA port)
    xorg.conf: http://68.190.122.245:9696/temp/xorg.conf
    Xorg.0.log: http://68.190.122.245:9696/temp/Xorg.0.log
    nvidia-installer.log: http://68.190.122.245:9696/temp/nvidia-installer.log
    `hwd -s` output: http://68.190.122.245:9696/temp/hwd_s.txt
    Any help is really appreciated! 

    Nice to see logs and confs posted
    just to be sure we are singing from the same hymnbook, have you:
    -- followed the wiki info  as your logs show the DRI section still intact (bottom of xorg.conf)
    and from wiki,
    -- installed nvidia via pacman, with X server shut down. and then modified xorg.conf accordingly.
    # Auto-generated by Archie mkxcfg
    ? Archie ?
    -- following the kernel upgrade did you then run pacman -S nvidia, as above,  to incorporate it with the new kernel ?
    other tidbits
    maybe try backing up xorg.conf first and then removing redundant lines #'s etc to make your config file more readable, and 1, 4, 15 bit resolution entries too.
    The last time i had the blackscreen was in Fedora, it was mentioned that a kernel patch by fedora, was fouling the nvidia drivers. So i blamed fedora, chipsets, patches, drivers, witchcraft etc. Swapped to arch , followed the WIKI destructions and all worked ok. so im sure it can be solved here too.
    FWIW my xorg.conf can be found here  if you want something to refer to. in the interests of jurisprudence, copy/modify at your own risk.  i cant/wont pay for fried monitors
    incidentally nv in the Section did work for me instead of nvidia but was no real solution as i wanted to use GL and it wouldnt work with it, just runs a generic vga driver and not the nvidia one.
    persevere dude, and good luck.

  • VBA API: How to get the monitor number?

    Hello,
    I have written
    an Excel application which
    controls an external application
    (making inputs,
    reads out the window,
    etc.).
    I use a lot of API functions, e.g. as in the code from thisarticle:
    https://support.microsoft.com/en-us/kb/194578?wa=wsignin1.0
    A basic
    function of my application is
    to distinguish between windows
    that have the same title
    but are on different monitors.
    In my windows (and NVIDIA) settings the left monitor is 1 and the right monitor is 2.
    In the past I have this routine to "identify" the monitor number from a window handle:
    Function GetWindowMonitor(ByVal hWnd As Long) As Integer
    Dim hMonitor As Long, MI As MONITORINFO, hM
    hMonitor = MonitorFromWindow(hWnd, MONITOR_DEFAULTTONEAREST)
    MI.cbSize = Len(MI)
    GetMonitorInfo hMonitor, MI
    Set mMonitor = New Collection
    EnumDisplayMonitors ByVal 0&, ByVal 0&, AddressOf MonitorEnumProc, ByVal 0&
    For Each hM In mMonitor
    GetWindowMonitor = GetWindowMonitor + 1
    If hM = hMonitor Then Exit Function
    Next
    GetWindowMonitor = 0
    End Function
    But last week I got a new graphic card and now this obvious stupid function fails, because EnumDisplayMonitors delivers the 2nd monitor first and then the 1st
    monitor.
    Long talk, short question: Is there any way to get the real monitor numbers as they are shown inside the windows settings?
    Andreas.

    When you need to identify monitors, call CreateDC with "DISPLAY" as the driver name and pass monitor name as the device name. Then you can draw a number on the result HDC.
    I can not draw that number and I can not set an identifier. As I said in my last post:
    I share this tool with my colleagues at work.
    Okay... CreateDC is an idea... as I've read at MSDN I can call EnumDisplayMonitors with a DC to get informations about the monitor, so I tried the code below, but it doesn't work.
    EnumDisplayMonitors does not call my MonitorEnumProc when I call it with a DC.
    Do I something wrong? Do I misunderstood the MSDN article? Is that not possible? Can you confirm that?
    Andreas.
    Option Explicit
    Private Declare Function GetForegroundWindow Lib "user32" () As Long
    Private Type DISPLAY_DEVICE
    cb As Long
    DeviceName As String * 32
    DeviceString As String * 128
    StateFlags As Long
    DeviceID As String * 128
    DeviceKey As String * 128
    End Type
    Private Const DISPLAY_DEVICE_MIRRORING_DRIVER = &H8
    Private Declare Function EnumDisplayDevicesS Lib "user32" Alias "EnumDisplayDevicesA" ( _
    ByVal DeviceName As String, ByVal iDevNum As Long, lpDisplayDevice As _
    DISPLAY_DEVICE, ByVal dwFlags As Long) As Long
    Private Declare Function CreateDC Lib "gdi32" Alias "CreateDCA" ( _
    ByVal lpszDriver As String, ByVal lpszDevice As String, ByVal lpszOutput As Long, _
    lpInitData As Any) As Long
    Private Declare Function DeleteDC Lib "gdi32" (ByVal hDC As Long) As Long
    Private Type RECT
    Left As Long
    Top As Long
    Right As Long
    Bottom As Long
    End Type
    Private Declare Function GetWindowRect Lib "user32" ( _
    ByVal hWnd As Long, lpRect As RECT) As Long
    Private Declare Function EnumDisplayMonitors Lib "user32.dll" ( _
    ByVal hDC As Long, ByRef lprcClip As Any, ByVal lpfnEnum As Long, _
    ByVal dwData As Long) As Long
    Private Type MONITORINFO
    cbSize As Long
    rcMonitor As RECT
    rcWork As RECT
    dwFlags As Long
    End Type
    Private Declare Function GetMonitorInfo Lib "user32.dll" Alias "GetMonitorInfoA" ( _
    ByVal hMonitor As Long, ByRef lpmi As MONITORINFO) As Long
    Private Function MonitorEnumProc(ByVal hMonitor As Long, ByVal hdcMonitor As Long, _
    lprcMonitor As RECT, ByVal dwData As Long) As Long
    Dim MI As MONITORINFO
    Debug.Print "Monitor " & hMonitor
    GetMonitorInfo hMonitor, MI
    With MI.rcMonitor
    Debug.Print "Left", "Top", "Right", "Bottom"
    Debug.Print .Left, .Top, .Right, .Bottom
    End With
    'Continue enumeration
    MonitorEnumProc = 1
    End Function
    Function JustNumbers(ByVal What As String) As String
    'Return only numbers from What (by Rick Rothstein)
    Dim i As Long, j As Long, Digit As String
    For i = 1 To Len(What)
    Digit = Mid$(What, i, 1)
    If Digit Like "#" Then
    j = j + 1
    Mid$(What, j, 1) = Digit
    End If
    Next
    JustNumbers = Left$(What, j)
    End Function
    Sub Main()
    Dim DD As DISPLAY_DEVICE
    Dim DDevice
    Dim DDevices As New Collection
    Dim DMonitor
    Dim DMonitors As New Collection
    Dim i As Long, k As Long
    Dim hDC As Long
    Dim DrvName As String, DevName As String
    Dim hWnd As Long, hRECT As RECT
    'Get our window handle
    hWnd = GetForegroundWindow
    'Now I want to know if this window is located on monitor 1 or 2 (or both)
    'Get the coordinates of the window
    GetWindowRect hWnd, hRECT
    With hRECT
    Debug.Print "Window:"
    Debug.Print "Left", "Top", "Right", "Bottom"
    Debug.Print .Left, .Top, .Right, .Bottom
    End With
    'Get the device drivers
    DD.cb = Len(DD)
    i = 0
    Do While EnumDisplayDevicesS(vbNullString, i, DD, 0&) <> 0
    If (DD.StateFlags And DISPLAY_DEVICE_MIRRORING_DRIVER) = 0 Then
    k = InStr(DD.DeviceName, vbNullChar)
    DDevices.Add Left(DD.DeviceName, k - 1)
    End If
    i = i + 1
    Loop
    '2. Get the monitors on each driver
    For Each DDevice In DDevices
    i = 0
    Do While EnumDisplayDevicesS(DDevice & vbNullChar, i, DD, 0&) <> 0
    k = InStr(DD.DeviceName, vbNullChar)
    DMonitors.Add Left(DD.DeviceName, k - 1)
    i = i + 1
    Loop
    Next
    'Create a DC for each monitor and get the coordinates
    For Each DMonitor In DMonitors
    i = InStrRev(DMonitor, "\")
    '"\\.\DISPLAY1"
    DrvName = Left(DMonitor, i - 1) & vbNullChar
    '"Monitor0"
    DevName = Mid(DMonitor, i + 1) & vbNullChar
    hDC = CreateDC(DrvName, DevName, 0, ByVal 0&)
    Debug.Print DrvName, DevName, hDC
    'The driver name is the monitor number!?
    EnumDisplayMonitors hDC, ByVal 0&, AddressOf MonitorEnumProc, Val(JustNumbers(DrvName))
    DeleteDC hDC
    Next
    End Sub

  • Cannot get the Mobile Template to work in SharePoint Foundation 2013

    Hello all,
    I am trying to get the Mobile View to work in SharePoint Foundation 2013. When I access the site on any phone it gives me the following error:
    "Cannot complete this action. Please try again."
    The URL it forwards me to is "http://<sitecollectionurl>/_layouts/15/mobile/mblwpa.aspx?Url=%2Fdefault%2Easpx
    So it seems to me like it's working, but there's something wrong with the template. The template has definitely never been modified.
    Can anyone help?
    Thanks,
    Vinny
    Vinny

    So I've got some more info for this issue. We are seeing:
    Control template "Mobile_STS_HomePage_Redirect" does not exist.
    Control template "Mobile_1_HomePage_Redirect" does not exist.
    Does anyone know how to enable these? I tried by name, but it doesn't find them. This is the error I get:
    PS C:\> Add-SPSiteSubscriptionFeaturePackMember <FeaturePackGUID> -FeatureDefinition Mobile_STS_HomePage_Redirect
    Add-SPSiteSubscriptionFeaturePackMember : Cannot find a Feature object with Path or Id: Mobile_STS_HomePage_Redirect in scope Local farm.
    At line:1 char:1
    + Add-SPSiteSubscriptionFeaturePackMember <FeaturePackGUID> -Fe ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidData: (Microsoft.Share...aturePackMember:SPCmdletAddSite...aturePackMember) [Add-SPSiteSubscriptionFe
       aturePackMember], SPCmdletPipeBindException
        + FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletAddSiteSubscriptionFeaturePackMember
    Vinny

  • Hi, I have a late 2011 MacBook Pro but cant get the mirroring function to work with Apple TV.  I've got the most recent Software 10.7.5 but cant see the mirroring icon or turn this on.  I'm able to mirror from my Ipad but not my Mac, any thoughts?

    Hi, I have a late 2011 MacBook Pro but cant get the mirroring function to work with Apple TV.  I've got the most recent Software 10.7.5 but cant see the mirroring icon or turn this on.  I'm able to mirror from my Ipad but not my Mac, any thoughts?

    Welcome to the Apple Support Communities
    AirPlay Mirroring is supported on your Mac, but it needs OS X Mountain Lion (10.8). See > http://support.apple.com/kb/HT5404
    You have two possibilities:
    1. Make a backup, open App Store and purchase Mountain Lion to upgrade to this OS X. Then, you will find the AirPlay Mirroring icon at the top right of the display, on the menu bar, or on System Preferences > Displays.
    2. Keep OS X Lion and use AirParrot > http://www.airparrot.com
    Both options work properly, but I recommend AirPlay Mirroring as it doesn't need a third-party program

  • How do I get the RSS feeds to work in iWeb'08 when published to FTP server?

    There are so many unresolved questions because I have published to an FTP server (Netfirms). HOWEVER, my next task at hand is to resolve the issue of a non-working RSS feed and download capabilities.
    The published website is www.vibrationalvoyages.com.
    When using Cyberduck to upload to Netfirms, I have to call the file name vibrationalvoyages.com because Netfirms organizes my files under a main folder called www (I also purchased the .org and .net extensions along with the singular spelling of the title, have forwarded those url's to the .com extension, which means I have different website names under Netfirm's main folder www, all pointing to www.vibrationalvoyages.com).
    I have to drop the www. in front of vibrationalvoyages.com when publishing to a folder on my computer so, when Cyberduck uploads the files into the main www folder, they are read correctly and published as www.vibrationalvoyages.com. In Cyberduck, the ftp address to upload is vibrationalvoyage.netfirms.com
    Before uploading, I use iTweak to insert the Statcounter tracking codes. Then, I use Rage to optimize the site to cut down on the weight (lots of photos). Then, finally, I get to upload which takes about an hour and a half.
    SO, HOW DO I GET THE RSS FEEDS TO WORK AS WELL AS THE OPTION TO DOWNLOAD AN MP3 RECORDED MEDITATIONS? I eventually also want to include the download option of podcasts.
    Please help! I am doing the best I can to stay in love with Mac but he is turning out to be a pot load of work and the love affair is wearing a little thin.
    I haven't even asked about why iWeb still calls some pages 'The family picnic" or why it switches the url addresses to the individual pages. Probably because in the early stages, I copied an entry rather than just do a new one... but I'll worry about that later. I want to get this 'fixed' first and then I'll address the issue, following Roddy's advice to another writer about installing a flash player, for easy download of the MP3 meditations and for when I record the lessons as podcasts. Until I get this RSS issue resolved, however, podcast downloads are out of the question!

    Thank you for checking, Tom,
    I'm confused. What do YOU get when you push the feed button? And why is it working on yours and not either of my machines?
    Today, my Mac (w/Safari 4) gets the same error message: Safari can’t open the page Safari can’t open the page “feed:http://vibrationalvoyages/vibrationalvoyages.com/DivineLight_Vibrations_Principles_andApplications/rss.xml”. The error is: “The feed could not be loaded because the content is not in a known feed format.”
    My little ASUS (with a Linux operating system) gets a screen that says "The requested URL was not found". The URL on that page is http://vibrationalvoyages./vibrationalvoyages.com/DivineLight_Vibrations_Principles_andApplications/rss.xml
    On both error messages, the URL I was checking was:
    http://www.vibrationalvoyages.com/DivineLight_Vibrations_Principles_and_Applications/Divine_Light_Vibrations_Principles_ andApplications.html
    The last URL was, of course, the URL generated by iWeb.
    So, my question still is:
    HOW CAN I GET MY FEEDS TO WORK PROPERLY? If the problem is there shouldn't be an http:// after feed: then, how do I get iWeb to set it up properly?
    Any ideas?
    GG

  • I get the "firefox has stopped working" message after closing browser

    Hello.
    My problem is that when I close the FireFox browser I get the "FireFox has stopped working" message. It's pretty annoying. I've read some other posts here that described a similar problem and have tried some of the suggestions in them including:
    A clean install, a browser reset, running in safe mode, unchecking hardware acceleration, disabling extentions and plugins one at a time, uninstalling my antivirus (avast), rolling back to version 23.01 and checking run in compatibility mode that someone claimed helped them. None of this was effective.
    It seems like after a computer restart the browser will be ok for 2-4 closings and then it will start with the message on every closing. Also, after I uninstalled avast it was good for 6 closings. Rolling back also gave me about 6 message free closings. But then the messages start and doesn't stop.
    Is there anything else I can try? Thanks in advance for any suggestions.

    One thing is for sure, and that is if the only page i visit is the Google homepage (not logged in) or this site (mozilla forum), the problem does not occur, ever. I can't make it happen.
    If i visit yahoo.com (not logged in) (or ighome.com, logged in), as examples, it happens every time.

  • Hello, so today I realized that my iPhone with iOS 6 is frozen on the music. I can get back to the home screen but I can't get the music player to work because its frozen on the w's and will not respond to touch. I would be grateful for any help on this.

    Hello, so today I realized that my iPhone with iOS 6 is frozen on the music. I can get back to the home screen but I can't get the music player to work because its frozen on the w's and will not respond to touch. I would be grateful for any help on this.

    Hi deamayfield,
    Thanks for visiting Apple Support Communities.
    If your Music app is unresponsive, try restarting/resetting your iPhone:
    iOS: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    Best,
    Jeremy

  • How can you get the apple tv to work in a hotel where to get on the wifi you have to still go to a website first and put in your room

    How can you get the apple tv to work in a hotel where to get on the wifi you have to still go to a website first and put in your room?

    Welcome to the Apple Community.
    Unfortunately the Apple TV doesn't have a web browser so you can't do that.

  • How do I get the new iPod to work with iTunes

    I recently purchased a new iPod--I think it's the "Shuffle," whichever one retails for $150. When I plugged it into my iMac, it said I needed to install iTunes 10 to run it. When I checked for updates, it said that iTunes 9.xyz (whatever came after the 9) was the latest version.
    How do I get this new iPod to work. As you can tell, I am not much of a gadget junkie, and I'm a bit of a technology incompetent, which is why I purchased the Mac to begin with. I have an iMac, have no idea what operating system I am using--whatever came with it when I purchased it in November, 2008.
    TIA!

    Okay, I just looked and I do have 10.411. How do I upgrade to get the new iPod to work, and how much does the new operating system cost?

  • I just upgraded from snow leopard v10.6.8 to os x mountain lion and my scroll bar has disappeared on all my applications on the internet. does anyone know a patch to get the scroll bar to work.

    i just upgraded from snow leopard v10.6.8 to os x mountain lion and my scroll bar has disappeared on all my applications on the internet. does anyone know a patch to get the scroll bar to work.

    Open General preferences in System Preferences. You can set the desired scrollbar behavior there.

  • In flash pro cc, how do i get the files i was working on previous session to open automatically?

    in flash pro cc, how do i get the files i was working on previous session to open automatically?

    cs4 had it 'on launch' --> last documents open, under general preferences. i don't see it in cc version, so i guess you're right. hard to understand, since it saved time.

  • Saved download for Camera Raw update. still can't open Raw pic in CS5. How do I get the downloaded files to work so I can open Raw images? thanks, Artist Ray

    Bought new camera to work with Raw images in CS5 but file would not open so I downloaded latest update. It only allowed me to save in a file ( could have OPENED instead of saving so I don't know those results). How do I get the new download to work in CS5?
    Thanks for your help, Artist Ray

    Bought new camera
    Which camera make and model?
    Supported cameras
    Camera Raw plug-in | Supported cameras
    Compatible Adobe applications
    Camera Raw-compatible Adobe applications
    Why doesn’t my version of Photoshop or Lightroom support my camera?

  • I have a MacBook, made in 2010. I can't get the eject function to work. I have a DVD in now and want to eject it and put another one in. Command-E, dragging it to the trash or Find-Eject does not work. Ideas?

    I have a MacBook, made in 2010. I can't get the eject function to work. I have a DVD in now and want to eject it and put another one in. Command-E, dragging it to the trash or Find-Eject does not work. Ideas?

    Hi there. Hear are some other options . Hold down for click on the track pad while restarting and keep it down all the way thru boot. Or use right click on a mouse. If it's stuck, sometimes sticking a business card in top edge of slot while trying the eject option can work.

  • I have Windows 7 and PS Elements 10 and can't get the text button to work properly.  What can I do?

    I have Windows 7 and PS Elements 10 and can't get the text button to work properly.  What can I do?

    Try selecting the T tool and then doing a reset (see image below)

Maybe you are looking for

  • Gif files not moving

    Aloha all, can anyone tell me what program I need to make animated gif files animate? When I download any animated gif files they don't move. When I open in Preview all pics are there, they just don't play. Any advice on how to make them move like th

  • My TOC in the epub document does not link to the chapters

    Hello! I created a document in pages that I am exporting as an ePub. When creating the TOC, I have ticked "make page numbers links". However, when I open the epub file, the TOC that appears in the document 1) does not show page numbers; 2) does not l

  • Mail not going thru SO_DOCUMENT_SEND_API1

    Hi All, I need to send a mail to external mail ids so im using SO_DOCUMENT_SEND_API1 FM . Message sent successfully to SAP outbox not receipinent ids' Can you please guide anything im missed out parameters. DATA: WA_DOCDATA  LIKE SODOCCHGI1,       L_

  • How do u get your songs onto a new itunes library???????????????

    MY WHOLE COMPUTER SYSSTEM HAD 2 GET WIPPED, I STILL HAVE MY SONGS ONMY IPOD BUT I CANT GET MY SONGS ONTO THE NEW ITUNES I JUST DOWNLOADED. HOW DO I GET THE SONGS FROM MY IPOD ONTO MY COMPUTER????????????????? PLEASE HELP ME

  • Help needed with SMB

    I'm trying to configure SMB under Leopard. I'd like to make some changes to some of the configuration settings found in /var/run/smb.conf and make those changes permantent. Does anybody know what's generating this file? From /etc/smb.conf: ; Pull in