Remote access to TC using Windows

Hi,
I have a macbook pro, a win 7 laptop and time capsule. I can access the storage portion of TC on both laptops when im home on the same wireless network but can't seem to access remotely using win 7 laptop (i can on mac using aft:\\).
I've searched numerous forums with no luck. It doesn't quite seem like anyone's been able to achieve this (from whereever i've read)
I've had the TC for abt two weeks and if it can't accomplish this task, i'm leaning toward returning it as i need remote access on both mac and win.
Once again, in summary, all i'm looking to do is to remotely access the files (client files etc) in the TC's storage using Win 7 (through either SMB, VPN, or any other way that would get this done)
I appreciate your help.

How can my Time Capsule be accessed remotely via PC/Windows? What protocol? How?
Windows or Linux PCs can access the Time Capsule's (TC) file service via the SMB protocol.
The following is the basic steps to configure the TC's hard drive to be accessed from the Internet.
Configuring the TC
AirPort Utility > Select the TC
o Note the value of the IP Address. This is the Public or WAN-side IP address of the TC. (Note: You will need to have either a static Public IP address, or use a free dynamic DNS service, like you suggested, in order to access the TC from the Internet.)
Manual Setup > Internet > Internet Connection
o Connection Sharing = Share a public IP address
Manual Setup > Disks > Files Sharing tab
o Enable file sharing (checked)
o Secure Shared Disks = With base station password
o AirPort Disks Guest Access = Not allowed
o Share disks over Ethernet WAN port (checked)
Manual Setup > AirPort > Base Station
o Enter a Base Station Password and verify it in the Verify Password box.
Manual Setup > Advanced > Port Mapping
o Click the plus sign "+" to add a new port mapping.
o In the Public UDP Port(s) and Public TCP Port(s) boxes, type in a 4-digit port number (e.g., 5688) that you choose.
o In the Private IP Address box, type the internal IP address of your TC that you noted earlier.
o In the Private UDP Port(s) and Private TCP Port(s) boxes, type 548, and then, click Continue.
o In the Description box, type a descriptive name like "Time Capsule File Sharing," and then, click Done.
o When you have made all the changes, click Update.
Connect the PC to the TC from a remote location
o Type in your DynDNS domain name, plus a colon and the port number you specified when configuring the TC earlier. For example,"www.myTC.com:5688"
o You will be prompted for your user name and password. The user name can be anything you like; the password would be the TC's Base Station password you defined earlier.

Similar Messages

  • Remote access Time Capsule using Windows Vista

    Hello
    I ve tried to connect TC remotely using a VPN connection but i ve failed. Does anyone knows how can i do that?
    Thanks

    See my response to a similar issue - not sure if it applies 100% to your situation...
    http://discussions.apple.com/thread.jspa?messageID=7116986#7116986

  • How do I remotely access a friend's Windows XP desktop using my ibook?

    I hope I am posting this question in the right forum/thread:
    I am not quite a newbie on the Mac, however when it comes to issues such as remote access, virtual private networks, etc., I am pretty much lost. I've even poured over the posts here to see if they answer any of my questions, but confusion is setting in, so I thought I'd just put my question out there to see if anyone can give me a simple answer:
    I have a friend who keeps having trouble with anything and everything to do with her Windows XP computer, from passwords to router/modem configurations. When she calls, I need to stop everything I'm doing and drive to her house to try to resolve her issue. It would save me (and her) a lot of energy and heartache if I could merely remotely access her computer (she has windows xp home edition) to help her out.
    What is the best way to remotely access her PC from my MAC?
    Thanks in advance for your help!
    ibook G4   Mac OS X (10.4.10)  

    Microsoft provides a Remote Desktop Client for Mac OS X. Check it out here - http://www.microsoft.com/mac/downloads.aspx?pid=download&location=/mac/download/ misc/rdcupdate103.xml&secid=80&ssid=10&flgnosysreq=True
    For actual connection, I have not tried this, but if you get her public IP, you should be able to connect to her PC.
    Macbook   Mac OS X (10.4.10)  

  • Remote access VPN issues using Pix 501

    We have taken over a network where there was little to no documentation. I have a remote access VPN terminated on a Pix 501 that is having a connectivity issue. I can connect using Cisco VPN Client. There is a server on the inside network that is used for mail etc. It has an IP of 192.168.0.4. I cannot ping it from my VPN session but from the Pix itself, I can ping it. There are different source IP's as the IP pool for the VPN session is 172.16.x.x and the inside network is 192.168.x.x. I can ping other hosts on the same inside network that are in the ARP table of the Pix. I have attached the configuration of the Pix 501. After researching, I cannot figure out what the issue is. I was assuming it was the route inside 172.16.x.x was set incorrectly but I can ping some hosts on the 192.168.x.x network. Thanks

    Aru,
    Hi. Thanks for responding. I did try and remove that route inside command and I still could not ping the server. I also tried removing those static translations and did a clear xlate but still no luck. This one has me puzzled. Especially since I can ping other hosts on that network and also ping the server but only from the Pix. The source on the Pix would be different 192.168.0.x than when I am connected using the VPN 172.16.1.x. That is the biggest difference. If it was routing, I would assume I could not ping any host on the 192.168.0.x network from the VPN session. I did remove that route inside as all of the other config examples did not have a specific route statement for the local pool even though it is not on the inside network. I have limited knowledge of their network as we just were told to manage it. Thanks again.

  • Figuring out how to access a device using Windows.Devices.HumanInterfaceDevice?

    Before I start, I would like to share this link I used to access windows RT libraries from Desktop applications (only the ones stated in MSDN documentation that are accessible from desktop applications):
    http://blogs.msdn.com/b/cdndevs/archive/2013/10/02/using-windows-8-winrt-apis-in-net-desktop-applications.aspx .
    After following the above instructions you can import some of the windows RT libraries in references. I have been trying to use the Windows.Devices.HumanInterfaceDevice library. I think my UsagePage and UsageId are off though. I am wondering
    if someone good in hex can translate them from my report descriptor. I already have the VID and PID (this should be enough along with the path if I called write file or some of the other win32/OS api's). Here's the code I am using in VB.NET:
    Public Class VirtualMouseDeviceOpen
    Class Enumeration
    ' Enumerate HID devices
    Public Async Function EnumerateHidDevices() As Task
    Dim vendorId As UInt32 = &HBEEF
    Dim productId As UInt32 = &HFEED
    Dim usagePage As UInt32 = &HFF
    Dim usageId As UInt32 = &H1
    ' Create a selector that gets a HID device using VID/PID and a
    ' VendorDefined usage
    Dim selector As String = HidDevice.GetDeviceSelector(usagePage, usageId, vendorId, productId)
    ' Enumerate devices using the selector
    Dim devices As Windows.Foundation.IAsyncOperation(Of Windows.Devices.Enumeration.DeviceInformationCollection) = DeviceInformation.FindAllAsync(selector)
    Dim count As Integer = devices.GetResults.Count
    If count > 0 Then
    ' Open the target HID device
    ' At this point the device is available to communicate with
    ' So we can send/receive HID reports from it or
    ' query it for control descriptions
    Dim device As HidDevice = HidDevice.FromIdAsync(devices.GetResults.ElementAt(0).Id, FileAccessMode.ReadWrite)
    Await Vendor.ReadWriteToHidDevice(device)
    Else
    ' There were no HID devices that met the selector criteria
    MsgBox("MUTT HID device not found!", MsgBoxStyle.Exclamation)
    End If
    End Function
    Class Vendor
    Public Shared Async Function ReadWriteToHidDevice(device As HidDevice) As Task
    If device IsNot Nothing Then
    ' construct a HID output report to send to the device
    Dim outReport As HidOutputReport = device.CreateOutputReport()
    ' Initialize the data buffer and fill it in
    Dim buffer As Byte() = New Byte() {10, 20, 30, 40}
    Dim dataWriter As New DataWriter()
    dataWriter.WriteBytes(buffer)
    outReport.Data = dataWriter.DetachBuffer()
    ' Send the output report asynchronously
    Dim a As Windows.Foundation.IAsyncOperation(Of UInteger) = device.SendOutputReportAsync(outReport)
    ' Sent output report successfully
    ' Now lets try read an input report
    Dim inReport As HidInputReport = device.GetInputReportAsync()
    If inReport IsNot Nothing Then
    Dim id As UInt16 = inReport.Id
    Dim bytes = New Byte(3) {}
    Dim dataReader__1 As DataReader = DataReader.FromBuffer(inReport.Data)
    dataReader__1.ReadBytes(bytes)
    Else
    MsgBox("Invalid input report received")
    End If
    Else
    MsgBox("device is NULL")
    End If
    End Function
    End Class
    End Class
    Here's my report descriptor to avoid scrimmaging through everything trying to find it:
    HID_REPORT_DESCRIPTOR G_DefaultReportDescriptor[] = {
    0x06,0x00, 0xFF, // USAGE_PAGE (Vender Defined Usage Page)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0xA1,0x01, // COLLECTION (Application)
    0x85,CONTROL_FEATURE_REPORT_ID, // REPORT_ID (1)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0x15,0x00, // LOGICAL_MINIMUM(0)
    0x26,0xff, 0x00, // LOGICAL_MAXIMUM(255)
    0x75,0x08, // REPORT_SIZE (0x08)
    //0x95,FEATURE_REPORT_SIZE_CB, // REPORT_COUNT
    0x96,(FEATURE_REPORT_SIZE_CB & 0xff), (FEATURE_REPORT_SIZE_CB >> 8), // REPORT_COUNT
    0xB1,0x00, // FEATURE (Data,Ary,Abs)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0x75,0x08, // REPORT_SIZE (0x08)
    //0x95,INPUT_REPORT_SIZE_CB, // REPORT_COUNT
    0x96,(INPUT_REPORT_SIZE_CB & 0xff), (INPUT_REPORT_SIZE_CB >> 8), // REPORT_COUNT
    0x81,0x00, // INPUT (Data,Ary,Abs)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0x75,0x08, // REPORT_SIZE (0x08)
    //0x95,OUTPUT_REPORT_SIZE_CB, // REPORT_COUNT
    0x96,(OUTPUT_REPORT_SIZE_CB & 0xff), (OUTPUT_REPORT_SIZE_CB >> 8), // REPORT_COUNT
    0x91,0x00, // OUTPUT (Data,Ary,Abs)
    0xC0, // END_COLLECTION
    0x05, 0x01, // USAGE_PAGE (Generic Desktop)
    0x09, 0x02, // USAGE (Mouse)
    0xa1, 0x01, // COLLECTION (Application)
    0x85, 0x02, // REPORT_ID (2)
    0x09, 0x01, // USAGE (Pointer)
    0xa1, 0x00, // COLLECTION (Physical)
    0x05, 0x09, // USAGE_PAGE (Button)
    0x19, 0x01, // USAGE_MINIMUM (Button 1)
    0x29, 0x03, // USAGE_MAXIMUM (Button 3)
    0x15, 0x00, // LOGICAL_MINIMUM (0)
    0x25, 0x01, // LOGICAL_MAXIMUM (1)
    0x95, 0x03, // REPORT_COUNT (3)
    0x75, 0x01, // REPORT_SIZE (1)
    0x81, 0x02, // INPUT (Data,Var,Abs)
    0x95, 0x01, // REPORT_COUNT (1)
    0x75, 0x05, // REPORT_SIZE (5)
    0x81, 0x03, // INPUT (Cnst,Var,Abs)
    0x05, 0x01, // USAGE_PAGE (Generic Desktop)
    0x09, 0x30, // USAGE (X)
    0x09, 0x31, // USAGE (Y)
    0x15, 0x81, // LOGICAL_MINIMUM (-127)
    0x25, 0x7f, // LOGICAL_MAXIMUM (127)
    0x75, 0x08, // REPORT_SIZE (8)
    0x95, 0x02, // REPORT_COUNT (2)
    0x81, 0x06, // INPUT (Data,Var,Rel)
    0xc0, // END_COLLECTION
    0xc0 // END_COLLECTION
    My UsageId is the first Usage Hex value in the report descriptor I believe (I am still a little confused too). My UsagePage is the hex values in the first Usage_Page in the report descriptor.
    Note: the problem with the VB.NET code is that it returns 0 on the count above which means it did not find a device using my criteria.
    Once you eliminate the impossible, whatever remains, no matter how improbable, must be the truth. - Sherlock Holmes. speak softly and carry a big stick - theodore roosevelt. Fear leads to anger, anger leads to hate, hate leads to suffering - Yoda. Blog -
    http://www.computerprofessions.us

    Before I start, I would like to share this link I used to access windows RT libraries from Desktop applications (only the ones stated in MSDN documentation that are accessible from desktop applications):
    http://blogs.msdn.com/b/cdndevs/archive/2013/10/02/using-windows-8-winrt-apis-in-net-desktop-applications.aspx .
    After following the above instructions you can import some of the windows RT libraries in references. I have been trying to use the Windows.Devices.HumanInterfaceDevice library. I think my UsagePage and UsageId are off though. I am wondering
    if someone good in hex can translate them from my report descriptor. I already have the VID and PID (this should be enough along with the path if I called write file or some of the other win32/OS api's). Here's the code I am using in VB.NET:
    Public Class VirtualMouseDeviceOpen
    Class Enumeration
    ' Enumerate HID devices
    Public Async Function EnumerateHidDevices() As Task
    Dim vendorId As UInt32 = &HBEEF
    Dim productId As UInt32 = &HFEED
    Dim usagePage As UInt32 = &HFF
    Dim usageId As UInt32 = &H1
    ' Create a selector that gets a HID device using VID/PID and a
    ' VendorDefined usage
    Dim selector As String = HidDevice.GetDeviceSelector(usagePage, usageId, vendorId, productId)
    ' Enumerate devices using the selector
    Dim devices As Windows.Foundation.IAsyncOperation(Of Windows.Devices.Enumeration.DeviceInformationCollection) = DeviceInformation.FindAllAsync(selector)
    Dim count As Integer = devices.GetResults.Count
    If count > 0 Then
    ' Open the target HID device
    ' At this point the device is available to communicate with
    ' So we can send/receive HID reports from it or
    ' query it for control descriptions
    Dim device As HidDevice = HidDevice.FromIdAsync(devices.GetResults.ElementAt(0).Id, FileAccessMode.ReadWrite)
    Await Vendor.ReadWriteToHidDevice(device)
    Else
    ' There were no HID devices that met the selector criteria
    MsgBox("MUTT HID device not found!", MsgBoxStyle.Exclamation)
    End If
    End Function
    Class Vendor
    Public Shared Async Function ReadWriteToHidDevice(device As HidDevice) As Task
    If device IsNot Nothing Then
    ' construct a HID output report to send to the device
    Dim outReport As HidOutputReport = device.CreateOutputReport()
    ' Initialize the data buffer and fill it in
    Dim buffer As Byte() = New Byte() {10, 20, 30, 40}
    Dim dataWriter As New DataWriter()
    dataWriter.WriteBytes(buffer)
    outReport.Data = dataWriter.DetachBuffer()
    ' Send the output report asynchronously
    Dim a As Windows.Foundation.IAsyncOperation(Of UInteger) = device.SendOutputReportAsync(outReport)
    ' Sent output report successfully
    ' Now lets try read an input report
    Dim inReport As HidInputReport = device.GetInputReportAsync()
    If inReport IsNot Nothing Then
    Dim id As UInt16 = inReport.Id
    Dim bytes = New Byte(3) {}
    Dim dataReader__1 As DataReader = DataReader.FromBuffer(inReport.Data)
    dataReader__1.ReadBytes(bytes)
    Else
    MsgBox("Invalid input report received")
    End If
    Else
    MsgBox("device is NULL")
    End If
    End Function
    End Class
    End Class
    Here's my report descriptor to avoid scrimmaging through everything trying to find it:
    HID_REPORT_DESCRIPTOR G_DefaultReportDescriptor[] = {
    0x06,0x00, 0xFF, // USAGE_PAGE (Vender Defined Usage Page)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0xA1,0x01, // COLLECTION (Application)
    0x85,CONTROL_FEATURE_REPORT_ID, // REPORT_ID (1)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0x15,0x00, // LOGICAL_MINIMUM(0)
    0x26,0xff, 0x00, // LOGICAL_MAXIMUM(255)
    0x75,0x08, // REPORT_SIZE (0x08)
    //0x95,FEATURE_REPORT_SIZE_CB, // REPORT_COUNT
    0x96,(FEATURE_REPORT_SIZE_CB & 0xff), (FEATURE_REPORT_SIZE_CB >> 8), // REPORT_COUNT
    0xB1,0x00, // FEATURE (Data,Ary,Abs)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0x75,0x08, // REPORT_SIZE (0x08)
    //0x95,INPUT_REPORT_SIZE_CB, // REPORT_COUNT
    0x96,(INPUT_REPORT_SIZE_CB & 0xff), (INPUT_REPORT_SIZE_CB >> 8), // REPORT_COUNT
    0x81,0x00, // INPUT (Data,Ary,Abs)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0x75,0x08, // REPORT_SIZE (0x08)
    //0x95,OUTPUT_REPORT_SIZE_CB, // REPORT_COUNT
    0x96,(OUTPUT_REPORT_SIZE_CB & 0xff), (OUTPUT_REPORT_SIZE_CB >> 8), // REPORT_COUNT
    0x91,0x00, // OUTPUT (Data,Ary,Abs)
    0xC0, // END_COLLECTION
    0x05, 0x01, // USAGE_PAGE (Generic Desktop)
    0x09, 0x02, // USAGE (Mouse)
    0xa1, 0x01, // COLLECTION (Application)
    0x85, 0x02, // REPORT_ID (2)
    0x09, 0x01, // USAGE (Pointer)
    0xa1, 0x00, // COLLECTION (Physical)
    0x05, 0x09, // USAGE_PAGE (Button)
    0x19, 0x01, // USAGE_MINIMUM (Button 1)
    0x29, 0x03, // USAGE_MAXIMUM (Button 3)
    0x15, 0x00, // LOGICAL_MINIMUM (0)
    0x25, 0x01, // LOGICAL_MAXIMUM (1)
    0x95, 0x03, // REPORT_COUNT (3)
    0x75, 0x01, // REPORT_SIZE (1)
    0x81, 0x02, // INPUT (Data,Var,Abs)
    0x95, 0x01, // REPORT_COUNT (1)
    0x75, 0x05, // REPORT_SIZE (5)
    0x81, 0x03, // INPUT (Cnst,Var,Abs)
    0x05, 0x01, // USAGE_PAGE (Generic Desktop)
    0x09, 0x30, // USAGE (X)
    0x09, 0x31, // USAGE (Y)
    0x15, 0x81, // LOGICAL_MINIMUM (-127)
    0x25, 0x7f, // LOGICAL_MAXIMUM (127)
    0x75, 0x08, // REPORT_SIZE (8)
    0x95, 0x02, // REPORT_COUNT (2)
    0x81, 0x06, // INPUT (Data,Var,Rel)
    0xc0, // END_COLLECTION
    0xc0 // END_COLLECTION
    My UsageId is the first Usage Hex value in the report descriptor I believe (I am still a little confused too). My UsagePage is the hex values in the first Usage_Page in the report descriptor.
    Note: the problem with the VB.NET code is that it returns 0 on the count above which means it did not find a device using my criteria.
    Once you eliminate the impossible, whatever remains, no matter how improbable, must be the truth. - Sherlock Holmes. speak softly and carry a big stick - theodore roosevelt. Fear leads to anger, anger leads to hate, hate leads to suffering - Yoda. Blog -
    http://www.computerprofessions.us
    I forgot anyone wanting a picture of what the device hierarchy looks like in control panel here it is (HID compliant vendor device is the first one in the report descriptor above I want to access and then the mouse device): 
    Once you eliminate the impossible, whatever remains, no matter how improbable, must be the truth. - Sherlock Holmes. speak softly and carry a big stick - theodore roosevelt. Fear leads to anger, anger leads to hate, hate leads to suffering - Yoda. Blog -
    http://www.computerprofessions.us

  • How to remotely access Time Capsule using iCloud and firmware 7.6.1?

    I have just applied the new Time Capsule 7.6.1 firmware that supposedly enables remote access to the drive via iCloud. However, how precise would this work?
    I have read several other threads here and elsewhere but they either explain how to do this using MobileMe or DynDNS.
    How precisely does iCloud now translate my internal IP to an external one and where do I access my drive in OSX when on the road?

    Really pretty simple.  That's if you've got the Time Capsule and your Computer set up correctly.
    Time Capsule setup:
    1.    Open Airport Utility
    1a.  Open Time Capsule Base Station tab
    1b.  Put iCloud NAME in "Back to My Mac"
    1c.  Enter Password, then wait for activation (less than 1 minute normally)
    1d.  Open Time Capsule Disks tab
    1e.  Check mark "Enable file sharing"
    1f.   Check mark "Share disk over WAN"
    1h.  Password self explanitory
    Computer (Mac)
    1.   Open iCloud in System Preferences
    2.   Put a check mark on "Back to My Mac", wait for actication (less than 1 minute normally)
    Connecting to Time Capsule Disk from you HOME network or outside your home network ((INTERNET))
    In order to connect to Time Capsule Disk off your local (home) network you must have an internet connection, if you do then do this:
    1.  Open Finder
    2.  In Finder open Shared if collapsed and double click on your Time Capsule name.
    3.  Double click your Time Capsule, enter password (if you required).
    4.  Once connected to your Time Capsule double click on your Disk to mount it enter password (if your required).
    5.  Done,  remember the connection speed is dependent on your internet quality (broadband vs dial-up).

  • IPhone user, Can Not Access iTunes Store, Using Windows 7

    Dear Sir
    I used to access the iTune Store from my computer everyday. But since a couple of weeks I started receiving the following (Connecting to the iTune Store) message after clicking on the Store link in iTunes.
    http://i50.tinypic.com/1glc8.jpg
    It just stays there loading forever.
    But I can access the store normally using my iPhone and using other laptops over the same network.
    What can the reason be? I am using the latest versions of iTunes and iPhone on Windows 7.
    I have tried the iTunes built-in connectivity test and it passed all the tests, I have tried re-installing iTunes, And I have also checked support article (TS1470) and I already have the mentioned options enabled.
    Thanks.

    With that one, try launching iTunes. Go "Edit > Preferences" and select the "Parental control" tab.
    Is "Disable iTunes Store" checked? If so, try unchecking that and clicking OK.
    Can you get through to the Store now?

  • AME 5.5 Locks Up when you access output location using Windows 7 64bit Explorer

    I often queue up a few dozen things in AME 5.5 from PP 5.5 and hit the start button.
    After a few have been successfully encoded I open the directory where they were output and I start zipping them up into another directory and/or moving them to some other drive.
    AME will inevitably stops working at some point while I'm playing around with files it should be done with - it just jams up - no error - no warning - the Elapsed Time just stops counting up.  No predicatable point - not beginning - not ending - somewhere random between - somewhere right about when I started moving files around.
    Stop button does nothing...it doesn't stop.  ProcessExplorer kills it nice though - and then you can see 50 adobe components run off and hide...
    Really helpful Log entries follow:
    08/05/2011 07:18:01 PM : File Successfully Encoded
    - Source File: C:\Users\jamesf\AppData\Local\Temp\20110626_1645_J-Rodd_1.prproj
    - Output File: K:\Output\2011\07\20110626_1645_J-Rodd.f4v
    - Preset Used: Muffy - Same as CS4 Please
    - Video: 1920x1080, Same as source fps, De-interlaced
    - Audio: AAC, 128 kbps, 44.1 kHz, Stereo
    - Bitrate: VBR, 1 Pass, Target 1.50 Mbps, Max 2.00 Mbps
    - The source was deinterlaced
    - Encoding Time: 00:09:36
    08/05/2011 07:27:42 PM : File Successfully Encoded
    - Source File: C:\Users\jamesf\AppData\Local\Temp\20110627_2019_Wolf.prproj
    - Output File: K:\Output\2011\07\20110627_2019_Wolf.f4v
    - Preset Used: Muffy - Same as CS4 Please
    - Video: 1920x1080, Same as source fps, De-interlaced
    - Audio: AAC, 128 kbps, 44.1 kHz, Stereo
    - Bitrate: VBR, 1 Pass, Target 1.50 Mbps, Max 2.00 Mbps
    - The source was deinterlaced
    08/05/2011 07:44:57 PM : Queue Paused
    08/05/2011 07:46:35 PM : Queue Resumed
    - Source File: C:\Users\jamesf\AppData\Local\Temp\20110627_2019_Wolf.prproj
    - Output File: K:\Output\2011\07\20110627_2019_Wolf.f4v
    - Preset Used: Muffy - Same as CS4 Please
    - Video: 1920x1080, Same as source fps, De-interlaced
    - Audio: AAC, 128 kbps, 44.1 kHz, Stereo
    - Bitrate: VBR, 1 Pass, Target 1.50 Mbps, Max 2.00 Mbps
    - The source was deinterlaced
    - Encoding Time: 00:11:11
    08/05/2011 07:57:52 PM : File Successfully Encoded
    Between the red above is where I killed the process (after closing BR,PS,PP,AU.......).  The blue shows the same reset job encoding just fine - once I keep my nose out the output directory.
    I've taken to doing File/Save Queue before pressing start now.  And before killing the process once this happens.  Usually it comes back up having erased any entires that were encoded and marking the one that was jammed up with skip.  I manually delete the partial file
    Windows 7 sp1 64 bit CS5.5 Master (updated?  have there been updates?  Help says none.
    What's AME problem with me poking around where it's encoding?

    No, we are unable to run different browsers at the office.

  • USB drive access issues when using Windows Backup Win7Pro

    I've run into a similar issue. I'm using an RD1000 USB drive which uses hard drives as removable media.  There's an alert which states "Windows backup  needs a CD/DVD or USB Drive to continue."  It then states I
    can continue the backup on the existing media or insert blank media.  By simply selecting Continue the backup will proceed but this interrupts the backup every night so the backup won't automatically run until that challenge is responded too.  I checked
    permissions and reloaded the MS windows driver for the drive.  I tried exFat and NTSF formats. Not sure how to force it to automatically proceed.  The backup is only a tenth of the size of the total available drive space. Any
    ideas?

    Checked this URL ?
    http://answers.microsoft.com/en-us/windows/forum/windows_7-system/insert-removable-mediawindows-backup-needs-cddvd/5bf0d5ed-ba9d-420e-8b19-b162eb285563
    Arnav Sharma | http://arnavsharma.net/ Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
    the thread.

  • How do i access osx after using windows with boot camp

    I just got a new macbook pro and i have never used boot camp.  well i loaded windows 7 using boot camp and now I dont know how to get back to osX.  Can anyone help?

    lathscope,
    do you notice a little triangle on the bottom right corner of your screen - near the clock (in Windows)? If you do so, click on it. Shoud appear an option to restart the computer in Mac OS.
    Other option is to go to the Control Panel. There is a icon for Bootcamp there.
    Joster

  • Upgraded to Itunes 10.5 yesterday and have no "text" at all only when I access Itunes Store, using Windows XP

    Upgraded to 10.5 Itunes yesterday and have no "text" anywhere except in Itunes store. I do not even see the Toolbar drop menus up top (File, Help, etc.) I cannot make out any music in my library. I wish to upgrade my Ipad to IOS5 but am afraid to sync it because I won't see what I'm doing it. I saw a similar link where Windows may not have a Font and installed all uninstalled fonts to see if that would work, but did not. Do I need to uninstall Itunes and reinstall? I have Windows XP. Really not sure if it's an Apple/Itunes problem or a Windows problem. Haven't had any issues with any other updates.
    Any help is appreciated....

    So after a month of trying to figure all this out I FINALLY fixed the problem!
    Before you do anything just go to your destop > right click personalize (this is for windows 7 - might be different for XP; I honestly forgot, but same idea) > find "window color" > select "advance appearance settings
    (I think can be found by just typing "window color and appearance" in the search from the start menu).
    Finally select "active title bar" (If the font is SEGOE UI, then following the link is the best thing to do; IF ITS NOT, I would think you can just follow the same steps and modify accordingly to how you want your fonts to look in iTunes). http://answers.microsoft.com/en-us/windows/forum/windows_7-desktop/how-to-change -system-default-font-in-all-parts/dfce15db-7337-420a-a42e-517521a8502e
    Hopefully this helps!!! Worked for me!

  • Time Capsule files remote access on Microsoft windows 7

    Hi,
    I have been always a Microsoft Windows user (currently with a laptop and a desktop) but now I have bought a MacBook air. I am planning to acquire a time capsule mainly for 2 reasons: backup my hard drive data (Stored in Windows 7 computers) and enable remote access away from home (my personal cloud ?).
    In order to acquire a Time capsule, do I have to buy additional equipment such as the Airport Extreme ? At the current moment I have a standard wifi router supplied by my local ISP.
    I have read many posts related with my problem but almost all of them are addressed to Mac systems. Please can help me if it is possible to enable this (or any) solution so that my Win7 laptop can remotely access to the time capsule.
    Thank you very much from a very novice mac user.

    You cannot remotely access the TC from windows.. safely.
    Let me explain. The TC really only offers AFP for remote access.. all the normal formats are missing. TC is not a NAS.. if you want a NAS buy Synology or QNAP, not TC. They will happily work with both Mac and Windows. A TC will not.
    The work arounds are using vpn.. buy a VPN router to replace the ISP one.. The TC will be in bridge mode.
    Some people make suggestions of using SMB (windows file protocol) over the internet.. this is very very unsafe.. SMB is blocked by the vast majority of ISP because it is so unsafe.. but people use it on non-standard ports. These will eventually be discovered and hacked. You have almost zero security.
    You really need to use the Air or some device that uses AFP.. remember apple build their stuff for apple.. with the occasional glance at the rest of the world.
    TC is a combined router and hard disk but that is of no help to you. It will simply not allow SMB access on the WAN port.

  • Enabling remote desktop access to a simple windows 2012 datacenter edition server

    Hi,
    I am a complete noob to server administration. I installed a windows 2012 server initially as a workgroup. All i need is to enable a user to remotely access my server(using remote desktop). The firewall that I use is Gibraltar.
    I read that to enable remote desktop services my server has to be part of a domain. So i promoted my server to a domain name controller. Using active directoty I added a user to the domain. I also read that to make remote desktop more secure, I have to request
    the user to login through a VPN. 
    Now here is where I am completely lost. Do i really need to move my server to a domain, if the user just wants access to this server and nothing else? Should i restrict remote desktop access only through VPN
    and if so, how can i do that? Further, the server dashboard gives me notifications about 'remote desktop licensing' not configured. We got the software as a campus licensing and I am not sure how to configure the remote license server. Any opinions are highly
    appreciated.

    If you're just trying to setup this to allow administration access then I don't believe you need it to be a member of a domain. There's a difference between allowing remote desktop access for administration, and setting up full terminal services access for
    multiple users. The latter requires a lot more work and licensing unlike the former.
    To simply allow admin access, open an explorer window and right click on Computer, then select properties. In the System window that appears, click Remote settings on the left. Now in the bottom half of the window select "Allow remote connections to this
    computer" and leave the option requiring NLA in place. Click Select Users..., you'll see that the administrator user already has permissions to connect, so if you're only planning to connect with that then you're finished, otherwise find those users you
    want to grant access.

  • Remote access using cellphones with wifi possible???

    is it possible to remotely access your desktop using cellphone using internet(wi-fi)

    can you tell me what is wifi??is it not a internet connection? >
    It means a particular suite of wireless networking protocols: 802.11
    WiFi only means "internet" if the router you're connecting to is itself connected to the internet - which isn't necessarily the case. Don't use technical terms unless you know exactly what they mean as you risk making your question less clear.

  • Remote access Vpn issue

    Dear All,
    I have configured remote access vpn without using split tunnel.Everything is working fine.I can access all the inside network which is allowed in acl.
    I am facing strange issue now. I have created a pool for remote access vpn with a range 192.168.5.8/29.I can access my internal subnets 10.10.0.0/16.
    I have below acess-list for acl-in.
    access-list acl-in extended permit ip object-group vpnclients 192.168.5.8 255.255.255.248
    object-group network vpnclients
    network-object host 10.110.100.26
    network-object host 10.106.100.15
    network-object host 10.10.10.6
    network-object host 10.10.20.82
    network-object host 10.110.100.48
    network-object host 10.10.20.53
    network-object host 10.10.20.54
    network-object host 10.60.100.1
    network-object host 10.10.10.75
    network-object host 10.10.20.100
    network-object host 10.10.130.136
    network-object host 10.106.100.16
    network-object host 10.106.100.9
    network-object host 10.170.100.1
    network-object host 10.170.100.2
    network-object host 10.170.100.21
    network-object host 10.101.100.20
    network-object host 10.170.100.25
    So whichever IPs i have called in vpnclient group is able to access via RA vpn.Issue is when i try to access internal network of 192.168.198.0/24, i am able to access it without adding in vpnclient group. Even for 192.168.197.0/24,192.168.197.0/24 the same. But for 10.10.0.0/16 we can access only after adding in vpnclient group. Any one has face this issue before. Is this because of same network i mean 192.168.0.0 something like that.There is no other staement in acl-in for 192.168.0.0
    Regards
    -Danesh Ahammad

    Hi,
    If i read correctly you made the RA vpn "without"  split tunnel, correct? if that is the case, all of the traffic will traverse the vpn connection (tunnel all) , the access-list "acl-in" is of no use to it.
    try converting it to use split tunnel, i am sure that way you can not access resources that are not mentioned in the list.
    ~Harry

Maybe you are looking for