Unable to capture C drive using Dism and imageX commands

I am trying to capture C drive using dism command but it did not work, but the same command is capturing E drive. i am using following command.
dism /Capture-Image /ImageFile:E:\image.wim /CaptureDir:C:\  /name:"Image File"
I am getting following error.
Deployment Image Servicing and Management tool
Version: 6.3.9431.0
Error: 32
The process cannot access the file because it is being used by another process.
The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
An in the log file the error is:   DISM   DISM.EXE: WimManager processed the command line but failed. HRESULT=80070020

Hi,
As far as I know, Dism command doesn't support hot image backup, that to say, you do need to complete the image backup job at Windows PE enviroment.
The contents of the link below also list the Dism command capture image requirement:
http://technet.microsoft.com/en-us/library/hh825072.aspx
Roger Lu
TechNet Community Support

Similar Messages

  • WinPE 3.1 issue adding driver using DISM

    I have a USB capable of booting with WinPE3.1 (win 7)
    To this winPE3.1 wim image, I tried injecting a driver using :
    dism.exe /image:C:\WinPEMount /add-driver /driver:< path
    to driver .inf file >
    The adding of driver was successfull, But on booting this image, the driver is not working (I get errors in my program when I use the driver functionalities)
    After booting, I installed the same driver using devcon.exe, it works fine (My program is able to use the driver functionalities).
    I dont want to have a script install the drivers every time when it boots, I would like to add the driver to the image offline.
    What is the difference between these two processes and what could have gone wrong in the first case?
    Edit: I couldn't find a correct section for this question hence posted here. Moderators please move to appropriate section if you can.
    Thanks,
    Basavesh

    Hi,
    What is the error message? To add a drive to an offline winPE image , please make sure to follow steps in the links below:
    Add Device Drivers on an Offline Windows PE Image
    http://technet.microsoft.com/en-us/library/dd799289(v=ws.10).aspx
    WinPE: Add drivers
    http://technet.microsoft.com/en-in/library/dn613857.aspx
    After you add the driver, you can first verify the driver
    Dism /Get-Drivers
    You must unmount the image and commit the change after you have modified it. such as:
    dism /unmount-wim /commit
    If issue persists, then please check if the following files exist, upload them to OneDrive for further analysis:
    %windir%\Panther\CBS.log
    %windir%\inf\Setupapi.dev.log
    %windir%\inf\Setupapi.offline.log
    Yolanda Zhu
    TechNet Community Support

  • Parallel Processing : Unable to capture return results using RECIEVE

    Hi,
    I am using parallel processing in one of my program and it is working fine but I am not able to collect return results using RECIEVE statement.
    I am using
      CALL FUNCTION <FUNCTION MODULE NAME>
             STARTING NEW TASK TASKNAME DESTINATION IN GROUP DEFAULT_GROUP
             PERFORMING RETURN_INFO ON END OF TASK
    and then in subroutine RETURN_INFO I am using RECEIVE statement.
    My RFC is calling another BAPI and doing explicit commit as well.
    Any pointer will be of great help.
    Regards,
    Deepak Bhalla
    Message was edited by: Deepak Bhalla
    I used the wait command after rfc call and it worked additionally I have used Message switch in Receive statement because RECIEVE statement was returing sy-subrc 2.

    Not sure what's going on here. Possibly a corrupt drive? Or the target drive is full?
    Try running the imagex command manually from a F8 cmd window (in WinPE)
    "\\OCS-MDT\CCBShare$\Tools\X64\imagex.exe" /capture /compress maximum C: "\\OCS-MDT\CCBShare$\Captures\CCB01-8_15_14.wim" "CCB01CDrive" /flags ENTERPRISE
    Keith Garner - Principal Consultant [owner] -
    http://DeploymentLive.com

  • Unable to initialize Thumb drive using Disk Utility!

    Hi All,
    I have a 4GB Sandisk thumb drive that works flawlessly till I tried to initialize it using Disk Utility in my MBP.
    Now, whenever I try to connect the drive to USB port, system ask me to initialize the disk but when I try to initialize system goes into an unfinite loop of unmounting the disk.
    And now when I try to format it using Windows, the message appears that "Unable to complete the format". The disk was working in both Windows and Mac prior to I used initialize function.
    Any help would begreatly appreciated.
    Thanks in advance.
    -Ashish Sharma

    Hi Samberl,
    As I already wrote in my initial post that the drive was working before I try to intialize using MBP. Anyways, I already followed your advice and replaced the drive with a new one. But now I am worried if I again use it in my Mac and initialize using disk utility. As of now I have formatted it using Windows and using NTFS-3G in my MAC to read or write the data.
    Anyways, thanks for helping

  • Unable to capture a video using robot.createScreenCapture

    Hi all,
    I'm having one problem with robot.createScreenCapture, i used the
    below code to take screen shot, everything goes fine except one case, I'm unable to capture videos played in windows media player & winamp, black screen is displaying instead of the video. I used avi files.
    here is the code
    import java.awt.AWTException;
    import java.awt.Dimension;
    import java.awt.Image;
    import java.awt.Rectangle;
    import java.awt.Robot;
    import java.awt.Toolkit;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.BufferedImage;
    import java.io.File;
    import java.io.IOException;
    import javax.imageio.ImageIO;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    public class CaptureImage implements ActionListener {
         Robot robot = new Robot();
         Image image = null;
         public CaptureImage() throws AWTException {
              JFrame frame = new JFrame("Capture");
              JButton button = new JButton("Capture");
              frame.setAlwaysOnTop(true);
              button.addActionListener(this);
              frame.getContentPane().add(button);
              frame.pack();
              frame.setVisible(true);
         public void actionPerformed(ActionEvent e) {
              // image = robot.createScreenCapture(new Rectangle(800, 600));
              String outFileName = "shot.png";
              // determine current screen size
              Toolkit toolkit = Toolkit.getDefaultToolkit();
              Dimension screenSize = toolkit.getScreenSize();
              Rectangle screenRect = new Rectangle(screenSize);
              // create screen shot
              Robot robot;
              try {
                   robot = new Robot();
                   BufferedImage image = robot.createScreenCapture(screenRect);
                   ImageIO.write(image, "png", new File(outFileName));
                   System.out.println("Saved screen shot (" + image.getWidth() + " x "
                             + image.getHeight() + " pixels) to file \"" + outFileName
                             + "\".");
              } catch (IOException e2) {
                   e2.printStackTrace();
              } catch (AWTException e1) {
                   e1.printStackTrace();
         public static void main(String[] args) {
              try {
                   new CaptureImage();
              } catch (AWTException e) {
                   e.printStackTrace();
    }

    Are you setting the videoPause property to true in the rule you're using to navigate to the video screen? For example, assume you're using a button to navigate to the VideoScreen, its OnSelect property should be: Navigate(VideoScreen, ScreenTransition!Fade,{videoPause:false}).
    Basically, the value needs to change for the video to pause. If you don't have that set up, you could also do that within the rule you're using to navigate to scrHome as follows:  
    UpdateContext({videoPause: false});Navigate(scrHome, ScreenTransition!Fade,{videoPause: true})
    Thanks
    Robin

  • Not able to create More than 1 Partition in USB Drive using kernel32 and DeviceIoControl

    I have successfully created 2 or more partitions in USB drive using DeviceIoControl in C++. Now I am trying to convert this code into C# using kernel32 and DeviceIoControl. But I am not getting more than 1 partition. Can anybody tell me what is wrong
    with this code?
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Diagnostics;
    using System.Runtime.InteropServices;
    namespace PartitionWrapper
    public class IOWrapper
    public static bool CreatePartitions(string selectedDrive)
    bool RetCode = false;
    try
    bool bSuccess = false;
    uint dwBytesReturned = 0;
    IntPtr hDisk = OpenVolume(selectedDrive);
    if (hDisk == null || hDisk == FSConstants.INVALID_HANDLE_VALUE)
    RetCode = false;
    goto FINAL;
    bSuccess = FSStructures.DeviceIoControl(hDisk, FSConstants.IOCTL_DISK_DELETE_DRIVE_LAYOUT, IntPtr.Zero, 0, default(IntPtr), default(uint), ref dwBytesReturned);
    // Get the partition information
    uint PartitionInfomations = (uint)(Marshal.SizeOf(typeof(FSStructures.DRIVE_LAYOUT_INFORMATION_EX)) + 3 * Marshal.SizeOf(typeof(FSStructures.PARTITION_INFORMATION_EX)));
    byte[] DBuffer = new byte[PartitionInfomations];
    GCHandle handle = GCHandle.Alloc(DBuffer, GCHandleType.Pinned);
    FSStructures.DRIVE_LAYOUT_INFORMATION_EX pDriveLayout = (FSStructures.DRIVE_LAYOUT_INFORMATION_EX)Marshal.PtrToStructure(handle.AddrOfPinnedObject(), typeof(FSStructures.DRIVE_LAYOUT_INFORMATION_EX));
    IntPtr pDriveLayoutPtr = Marshal.AllocHGlobal(Marshal.SizeOf(pDriveLayout));
    Marshal.StructureToPtr(pDriveLayout, pDriveLayoutPtr, false);
    // bSuccess = FSStructures.DeviceIoControl(hDisk, FSConstants.IOCTL_DISK_GET_DRIVE_LAYOUT_EX, default(IntPtr), default(uint), pDriveLayoutPtr, PartitionInfomations, ref dwBytesReturned);
    pDriveLayout = (FSStructures.DRIVE_LAYOUT_INFORMATION_EX)Marshal.PtrToStructure(pDriveLayoutPtr, typeof(FSStructures.DRIVE_LAYOUT_INFORMATION_EX));
    if (bSuccess || dwBytesReturned != PartitionInfomations)
    RetCode = true;
    else { RetCode = false; goto FINAL; }
    pDriveLayout.PartitionEntry = new FSStructures.PARTITION_INFORMATION_EX[0x16];
    pDriveLayout.PartitionStyle = FSStructures.PARTITION_STYLE.MasterBootRecord;
    pDriveLayout.PartitionCount = 4;
    pDriveLayout.DriveLayoutInformatiton.Mbr.Signature = 0xA4B57300;
    pDriveLayout.PartitionEntry[0] = new FSStructures.PARTITION_INFORMATION_EX();
    pDriveLayout.PartitionEntry[0].PartitionStyle = FSStructures.PARTITION_STYLE.MasterBootRecord;
    pDriveLayout.PartitionEntry[0].Mbr.BootIndicator = true;
    pDriveLayout.PartitionEntry[0].Mbr.RecognizedPartition = true;
    pDriveLayout.PartitionEntry[0].Mbr.PartitionType = 0x0B;
    pDriveLayout.PartitionEntry[0].PartitionNumber = 1;
    pDriveLayout.PartitionEntry[0].StartingOffset = 32256;
    pDriveLayout.PartitionEntry[0].PartitionLength = 3221225472;
    pDriveLayout.PartitionEntry[0].RewritePartition = true;
    pDriveLayout.PartitionEntry[0].Mbr.HiddenSectors = 32256 / 512;
    pDriveLayout.PartitionEntry[1] = new FSStructures.PARTITION_INFORMATION_EX();
    pDriveLayout.PartitionEntry[1].PartitionStyle = FSStructures.PARTITION_STYLE.MasterBootRecord;
    pDriveLayout.PartitionEntry[1].Mbr.BootIndicator = false;
    pDriveLayout.PartitionEntry[1].Mbr.RecognizedPartition = true;
    pDriveLayout.PartitionEntry[1].Mbr.PartitionType = 0x0B;
    pDriveLayout.PartitionEntry[1].PartitionNumber = 2;
    pDriveLayout.PartitionEntry[1].StartingOffset = 32256 + 3221225472;
    pDriveLayout.PartitionEntry[1].PartitionLength = 2147483648; //2147483648;//3221225472;
    pDriveLayout.PartitionEntry[1].RewritePartition = true;
    pDriveLayout.PartitionEntry[1].Mbr.HiddenSectors = 32256 / 512;
    for (int i = 0; i < pDriveLayout.PartitionEntry.Length; i++)
    pDriveLayout.PartitionEntry[i].RewritePartition = true;
    try
    bSuccess = FSStructures.DeviceIoControl(hDisk, FSConstants.IOCTL_DISK_SET_DRIVE_LAYOUT_EX, ref pDriveLayout, PartitionInfomations, default(IntPtr), default(uint), ref dwBytesReturned);
    catch (Exception ex)
    if (bSuccess)
    RetCode = true;
    else { RetCode = false; }
    bSuccess = FSStructures.DeviceIoControl(hDisk, FSConstants.IOCTL_DISK_UPDATE_PROPERTIES, IntPtr.Zero, 0, default(IntPtr), default(uint), ref dwBytesReturned);
    if (bSuccess)
    RetCode = true;
    else { RetCode = false; }
    FINAL:
    // Close the disk handle.
    if (hDisk != null && hDisk != FSConstants.INVALID_HANDLE_VALUE)
    FSStructures.CloseHandle(hDisk);
    catch { return false; }
    return RetCode;
    private static IntPtr OpenVolume(string DeviceName)
    try
    IntPtr hDevice;
    hDevice = FSStructures.CreateFile(
    @"\\.\" + DeviceName,
    FSConstants.GENERIC_EXECUTE | FSConstants.GENERIC_READ | FSConstants.GENERIC_WRITE | FSConstants.FILE_SHARE_READ | FSConstants.FILE_SHARE_WRITE,
    FSConstants.FILE_SHARE_WRITE,
    IntPtr.Zero,
    FSConstants.OPEN_EXISTING,
    0,
    IntPtr.Zero);
    if ((int)hDevice == -1)
    throw new Exception(Marshal.GetLastWin32Error().ToString());
    return hDevice;
    catch { return FSConstants.INVALID_HANDLE_VALUE; }
    internal static class FSConstants
    public const uint FILE_SHARE_READ = 0x00000001;
    public const uint FILE_SHARE_WRITE = 0x00000002;
    public const uint OPEN_EXISTING = 3;
    public const int GENERIC_EXECUTE = 0x10000000;
    public const uint GENERIC_READ = (0x80000000);
    public const uint GENERIC_WRITE = (0x40000000);
    public static IntPtr INVALID_HANDLE_VALUE = new IntPtr(-1);
    public const uint IOCTL_DISK_GET_DRIVE_LAYOUT_EX = 0x00070050;
    public const uint IOCTL_DISK_SET_DRIVE_LAYOUT_EX = 0x7C054;
    public const int IOCTL_DISK_UPDATE_PROPERTIES = 0x70140;
    public const int IOCTL_DISK_DELETE_DRIVE_LAYOUT = 0x0007c010;
    public const int IOCTL_DISK_CREATE_DISK = 0x7C058;
    internal static class FSStructures
    [DllImport("kernel32.dll", EntryPoint = "CreateFile", SetLastError = true)]
    public static extern IntPtr CreateFile(
    string lpFileName,
    uint dwDesiredAccess,
    uint dwShareMode,
    IntPtr lpSecurityAttributes,
    uint dwCreationDisposition,
    uint dwFlagsAndAttributes,
    IntPtr hTemplateFile);
    [DllImport("kernel32.dll", SetLastError = true)]
    public static extern int CloseHandle(IntPtr hObject);
    [DllImport("kernel32.dll", SetLastError = true)]
    public static extern bool DeviceIoControl(
    IntPtr hDevice,
    uint dwIoControlCode,
    [Optional]ref DRIVE_LAYOUT_INFORMATION_EX lpInBuffer,
    uint nInBufferSize,
    [Optional] [Out] IntPtr lpOutBuffer,
    uint nOutBufferSize,
    [Optional] ref uint lpBytesReturned,
    [Optional] IntPtr lpOverlapped);
    [DllImport("kernel32.dll", SetLastError = true)]
    public static extern bool DeviceIoControl(
    IntPtr hDevice,
    uint dwIoControlCode,
    IntPtr lpInBuffer,
    uint nInBufferSize,
    [Optional] [Out] IntPtr lpOutBuffer,
    uint nOutBufferSize,
    [Optional] ref uint lpBytesReturned,
    [Optional] IntPtr lpOverlapped);
    [StructLayout(LayoutKind.Sequential)]
    public struct DRIVE_LAYOUT_INFORMATION_EX
    public PARTITION_STYLE PartitionStyle;
    public int PartitionCount;
    public DRIVE_LAYOUT_INFORMATION_UNION DriveLayoutInformatiton;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.Struct, SizeConst = 0x16)]
    public PARTITION_INFORMATION_EX[] PartitionEntry;
    [StructLayout(LayoutKind.Sequential)]
    public struct PARTITION_INFORMATION_EX
    [MarshalAs(UnmanagedType.U4)]
    public PARTITION_STYLE PartitionStyle;
    public long StartingOffset;
    public long PartitionLength;
    public int PartitionNumber;
    public bool RewritePartition;
    public PARTITION_INFORMATION_MBR Mbr;
    public PARTITION_INFORMATION_GPT Gpt;
    [StructLayout(LayoutKind.Sequential)]
    public struct PARTITION_INFORMATION_MBR
    public byte PartitionType;
    [MarshalAs(UnmanagedType.U1)]
    public bool BootIndicator;
    [MarshalAs(UnmanagedType.U1)]
    public bool RecognizedPartition;
    public uint HiddenSectors;
    [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
    public struct PARTITION_INFORMATION_GPT
    public Guid PartitionType;
    public Guid PartitionId;
    [MarshalAs(UnmanagedType.U8)]
    public EFIPartitionAttributes Attributes;
    [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 36)]
    public string Name;
    [Flags]
    public enum EFIPartitionAttributes : ulong
    GPT_ATTRIBUTE_PLATFORM_REQUIRED = 0x0000000000000001,
    LegacyBIOSBootable = 0x0000000000000004,
    GPT_BASIC_DATA_ATTRIBUTE_NO_DRIVE_LETTER = 0x8000000000000000,
    GPT_BASIC_DATA_ATTRIBUTE_HIDDEN = 0x4000000000000000,
    GPT_BASIC_DATA_ATTRIBUTE_SHADOW_COPY = 0x2000000000000000,
    GPT_BASIC_DATA_ATTRIBUTE_READ_ONLY = 0x1000000000000000
    [StructLayout(LayoutKind.Explicit)]
    public struct DRIVE_LAYOUT_INFORMATION_UNION
    [FieldOffset(0)]
    public DRIVE_LAYOUT_INFORMATION_MBR Mbr;
    [FieldOffset(0)]
    public DRIVE_LAYOUT_INFORMATION_GPT Gpt;
    [StructLayout(LayoutKind.Sequential)]
    public struct DRIVE_LAYOUT_INFORMATION_GPT
    public Guid DiskId;
    public long StartingUsableOffset;
    public long UsableLength;
    public int MaxPartitionCount;
    [StructLayout(LayoutKind.Sequential)]
    public struct DRIVE_LAYOUT_INFORMATION_MBR
    public uint Signature;
    public enum PARTITION_STYLE : int
    MasterBootRecord = 0,
    GuidPartitionTable = 1,
    Raw = 2

    Hello,
    in the links below you can found many informations to help you:
    https://msdn.microsoft.com/en-us/library/windows/desktop/aa365730(v=vs.85).aspx
    http://www.codeproject.com/Articles/696388/Recover-Data-From-Corrupted-Drives-File-Systems-FA
    http://www.functionx.com/vcsharp/fileprocessing/drives.htm
    http://forums.codeguru.com/showthread.php?548305-partitioning-USB-Falsh-drive
    http://forums.codeguru.com/showthread.php?548169-USB-Flash-drive-Partitioning

  • External Hard Drive using MAC and PC

    I recently formatted my 250gb hard drive to MS-DOS (FAT32) so I can use the drive with Mac and PC. When I came to plug in my external hard drive in the other day with another mac PC it said I could only read only under get info.
    Why is this?
    I couldnt save only open documents
    Many thanks

    kevin_ wrote:
    Henry,
    You should format the external drive as exFAT rather than FAT32.   exFAT handles larger files than FAT32 would and is both Mac and Windows friendly.
    And when he does, he should do it connected to the PC. There have been reports that while the Mac can format a drive in exFAT, it doesn't do as compatible a job as a PC will.

  • Problems repairing Main Hard Drive using TechTool and DiskWarrior

    Hello to all,
    I have what appears to at first have been a minor problem, which has blossomed into a major debacle.
    My troubled machine is a "QuickSilver" Dual 880KHz processor G4 with 1.5 GB RAM and OS10.4.3. It started showing problems with browsers not linking to the correct locations, and general slowness of any operation. Upon later power-up, the machine would not boot at all. The problem indicated was at the UNIX level where login was failing for many of the modules (best explanation I can give right now).
    I then put the machine into target mode, and hooked up a laptop (also on OS10.4.3) to see if the main disk was accessible. It did appear on the screen, and allowed me to see all of the files and directories properly.
    Now, at this point I SHOULD have made a copy of the entire disk to the laptop, but did not consider such necessary, as I had been told a backup had been made a week earlier. Likewise, I SHOULD have then considered an archive/install from the OS10.4.0 disks.
    But NOOOOOOO.
    I instead thought I would simply use the TechTool Deluxe disk (that I received from Apple when the laptop was purchased). I booted the desktop from this disk, and per its recommendation, let it perform a repair. It ran for several hours, indicating it was fixing my problem.
    I then tried to reboot the desktop again. This time, all I got was the dark rectangle that says in multiple languages, "You need to restart your computer." After several tries, it did not get any better.
    I then placed the machine back into target mode, so I could see what, if anything might have changed. Now, even though the desktop displays the firewire symbol, the laptop will not mount it. When I ran Apple Disk Utility, and try to perform a Verify, I get "Invalid B-tree node size. The volume Macintosh HD needs to be repaired." OUCH. Whatever I did, made it all much worse!
    At this point I also was informed the backup of the drive could not be used (for reasons I won't get into). I could have screamed, as before I could have copied the contents to the laptop. Now, such may no longer be possible!
    I then went a purchased DiskWarrier V3.0.2. I updated it to version 3.0.3 (per the instructions on the website). I then went and rebooted the wounded desktop from the V3.0.3 disk, and then tried to run a repair. I got this response;
    "The directory of the disk "Macintosh HD" cannot be rebuilt. The disk was not modified. The original directory is too severely damaged. It appears another disk utility has erased critical directory information. (3004, 2176)."
    (Micromat, take note of the above!)
    At this point, I decided doing what might be intuitively obvious (such as an archive/install from the OS10.4.0 disks) should not be attempted until I GET SOME REAL HELP. Ergo, this posting.
    Anybody got any recommendations?
    Dual 800Khz G4   Mac OS X (10.4.3)   1.5 GB RAM
    Dual 800Khz G4   Mac OS X (10.4.2)   1.5 GB RAM

    And what happens if you run a Repair instead of just
    Verify? The latest version of Disk Utility, included
    with 10.4.3 on your laptop, is your best defense for
    these problems before using third party tools!
    Believe me, I understand your point.
    Please keep in mind I thought a utility provided by the Apple Protection Plan was a smart thing to use. (And it was purchased after Tiger was released.)
    I later learned that DiskWarrior is supposed to be superior that anything else. Ergo, I went to the store to purchase a copy.
    DiskWarrior checked to see what version of the OS was installed, and told me to perform an update (since it saw something the developers were not familiar with at final release). This kind of check is very responsible, and should be in all such software!
    I do not think I made that bad of an ignorant decision.

  • I am unable to open encrypted emails using webmail and a CAC reader.  It says "content can't be displayed because the S/MIME control isn't available."  I'm using a Macbook Pro with 10.10 OS and have tried both Safari and Chrome.

    I am using a Macbook Pro with OS X Yosemite 10.10.2.  I am unable to open encrypted emails using webmail.  I have verified my certificates are loaded in the keychain for my military common access card while using a CAC reader.  When I try to view the message it gives me the error saying "content can't be displayed because the S/MIME control isn't available." 

    I am using a Macbook Pro with OS X Yosemite 10.10.2.  I am unable to open encrypted emails using webmail.  I have verified my certificates are loaded in the keychain for my military common access card while using a CAC reader.  When I try to view the message it gives me the error saying "content can't be displayed because the S/MIME control isn't available." 

  • Unable to Capture an image using Native Camera

    Hi all,
    Please help me out.
    I am getting an issue but unable to find out its solution.
    I am watching a video on my mobile phone N96 and open the CAM pressing right side button continue, Camera gets opened and i am able to take a snap.
    Same functionality i am doing while i am playing a video from my java application. I play a video through my application, while video is running , i open CAM pressing right side button. Camera gets opened. When i click to capture a snap, camera captures a snap but this is not that picture,which was shown by camera while capturing. It captures my video snap which was running on my application.
    Please suggest me, is this property of Nokia mobile phone's camera or any defect on that.
    Thanks,
    Ashutosh

    No , I am not using screen captured application.
    I am playing a video from my application, when vedio is running, then i open my native camera to capture a snap after pressing right side button. 
    Ashu

  • Please Help:(,Unable to capture from camcorder using Audigy 2 ZS Video Edi

    Hi there! Well I have been trying to use the Sound Blaster Audigy 2 zs video editor to transfer Hi8 tapes from my camcorder (Samsung SLC860) to my laptop (Compaq presario, AMD Athlon 64 3200+, .25 GB RAM, xp). I have successfully done this before *sort of*. Before i was able to capture video from my camcorder without the sound. But now I cant even capture video! I get an error when using Ulead VideoStudio 8 SE reading: 5065:29:0. Please help, anything would be great! Thank you! Oh, i've tried reinstalling the drivers already, didnt work. P.S. I connect the camcorder to the Creative Audigy using S-Video. I have also tried A/V out from the camcorder to video-in on the Audigy. I have also downloaded VidCap and other driver updates from Creative but those didn't work either. I've tried VidCap other capture programs, none worked. Any help would be great. Thank you!
    Message Edited by DjShadowalker on <SPAN class=date_text>06-06-2006 <SPAN class=time_text>:09 AM
    Message Edited by DjShadowalker on 06-06-2006 :09 AM

    Hi there! Thanks for the reply, unfortunately, I've tried VidCap and it wont let me capture either. The Start button on Step 3 isn't acti've. Its not bold, and when i click on it nothing happens. But under device manager and Sound, Video and game controllers, there are alot of things. They are as followed: Audio Codecs, Legacy Audio Drivers, Legacy Video Capture Drivers, Media Control Devices, Sound Blaster Audigy 2 ZS Video Editor Audio Device, Sound Blaster Audigy 2 ZS Video Editor Video Device, SoundMAX Intergrated Digital Audio, Video Codecs. Do you think any of these could be interfering with one another? If so, which ones can be safely disabled? I've also tried downloading all the necessary updates for VidCap and I've even tried reinstalling the Audigy card many times. I am able to see the preview of the video on both programs VidCap and VideoStudio but I just can't capture. Once again, the error message on VideoStudio is: 5065:29:0. Thank you so much, hopefully I hear from ya soon and this can be fixed.

  • Unable to connect to internet using wifi and lan cable after updating to windows 10

    HI Team,                   After updating to windows 10. I'm unable to find wifi and lan connectivity in settings->internet . I m trying all stuff to resolve the problem, But i'm unable to to do it . Please help me with this. I cannot attach screen shots over here if possible i could send screen shots if any of the e-mails id's available

    Hi there ,  Thank you for visiting the HP Support Forums and Welcome! This is a great site to get answers and ask questions. I understand that you are having an issue with your Wi-Fi on your HP Envy M6-1125dx.  I did some research and found a great document for your called HP PCs - Troubleshooting Wireless Network and Internet (Windows 8). This document will help you troubleshoot the Wi-Fi issue.  Have you received any error messages? If you are receiving any of these errors:Internet Explorer cannot display the Web page.Work Offline: No connection to the Internet is currently available.Not connected: You are currently not connected to any networks.Here is another document called HP PCs - Resolving Broadband Internet connection problems (Windows 8).  Have you tried to Restore the BIOS? Have you uninstalled the driver in the Device Manager?If not, please do the following: 1. Uninstall the driver in Device Manager2. Restart the Notebook3. Reinstall the driver. You can use either the HP Driver's page for your specific Notebook, or you can use the HP Support Assistant. 
    Here is a link to the HP Support Assistant if you need it. Just download and run the application and it will help with the software and drivers on your system at the time of purchase or that need updating. Have you tried to directly connect to the Modem/Router?  Please follow the troubleshooting steps and re-post with the results and information required from the questions above.  Thanks!

  • Unable to capture because drive is full

    I just hooked up a new 500GB external drive (which we will called Media 2) since my old one took a dump. I have formated it to be compatable with Mac instead of windows. I have changed my scratch disks to save to Media 2. When capturing a Hi8 tape, after 9:25:31 the capture stops and tell me that my drive is full. Now I can start the capture again, and it stops at 9:25:31 and again tells me my drive is full. I can again restart the capture, and again it stops at 9:25:31 with the same message. I have not clicked the box that limits my capture volume. Any ideas? As I'm typing this, I have this idea. Would doing a disk repair on the Media 2 drive possibly be the solution?

    It sounds like the disk format is wrong. FAT32-formatted drives permit a maximum file size of 2GB, which is about 9:25 of standard-definition dv. You disk should be formatted Mac OS Extended.

  • Cannot Find Photos on External Hard Drive Using iPhoto and Time Machine

    Hi everyone,
    This is my first time posting on this forum and am really hoping for some help! I have a 2006 PowerBook G4 that is running iPhoto and Time Machine, and I've used an external hard drive to backup everything on the computer via Time Machine. When I plug the external hard drive into my newer 2010 MacBook Pro, I follow this path to try to access the photos:
         External Hard Drive > Backups.backupd > PowerBook G4 12" > Latest > Macintosh HD > Users > Me > Pictures > iPhoto Library
    When I click "iPhoto Library", I get the following message:
         "The iPhoto Library is a Time Machine backup, and so cannot be used as the main library.  Relaunch iPhoto with <option> key held down to choose another   library."
    So, I do as the error message says and I hold down the "option" key and iPhoto launches and says:
         What Photo Library do you want iPhoto to use?
    In this case, I choose "Other Library..." and again follow this path:
         External Hard Drive > Backups.backupd > PowerBook G4 12" > Latest > Macintosh HD > Users > Me > Pictures > iPhoto Library
    When I choose this, I again get the following message:
         The iPhoto Library is a Time Machine backup, and so cannot be used as the main library.  Relaunch iPhoto with <option> key held down to choose another   library.
    So as you can see, I'm feeling a bit like I'm chasing my tail in trying to open these photos. I did follow another user's advice and confirm that all photos are infact on the hard drive by using the "control" button and clicking "iPhoto Library" under the pictures folder, and choosing "Show Package Contents". All looks to be in tact in the "originals" folder when showing package contents, however, I just can't find a way to actually view the photos in iPhoto. I really don't want to import all the photos to my current MacBook Pro, because I'd like them to live on the external hard drive (which is formatted for Macs) so that I can browse the photos on the external drive, rather than housing it on my computer.
    One other thing I tried was opening iPhoto on my MacBook Pro and going to File > Browse Backups...  which essentially opens Time Machine and shows me the photos on my MacBook Pro but gives me no option to view them from my External Hard Drive.
    Any super users out there willing to lend me some help?
    Thanks!

    The iPhoto Library is a Time Machine backup, and so cannot be used as the main library.  Relaunch iPhoto with <option> key held down to choose another   library.
    You can have an iPhoto library on an external drive and use it from different machines
    and you can have a Time Machine backup
    The two can not be on the same volume - and iPhoto can not access the TM backup - it must be restored to use it
    LN

  • How to migrate a LR catalog on a partitioned drive using Yosemite and Maverick?

    When I opened LR in Yosemite LR built another catalog within Yosemite. When I run a search while in Yosemite for the LR catalog that Maverick uses I get nothing. When I log back into Maverick, there it is.
    I don't want to copy the catalog and drop it into Yosemite because I don't want to create two separate catalogs which will eventually have different data. Is there anything else I can do? What do you do when you're migrating your catalog and LR doesn't see it when you select Open from the pull down menu?

    Welcome to Apple Support Communities
    If you only need Windows to run one program (and if this problem does not require the best GPU performance), I recommend you to install Windows in a virtual machine instead of using Boot Camp. With this, you will be able to run Windows without restarting your Mac and there will be no risks during the installation.
    To make a virtual machine, you can use an application like Parallels, VMware Fusion or VirtualBox. Then, you only need to get a ISO file of Windows 8.1 with a product key, so you can install it in a virtual machine.
    If you still want to install Windows with Boot Camp, you can install Windows from a USB drive (it is the only way in your iMac apart from using an external disc drive). To create the USB drive with Windows, you also need a ISO file of Windows 8.1. You have all the steps in this site > http://manuals.info.apple.com/MANUALS/1000/MA1636/en_US/boot_camp_install-setup_ 10.8.pdf

Maybe you are looking for

  • How do I keep my email contacts from being deleted when I delete a phone contact?

    Please HELP!! I am a new iphone user and I am not understanding all this "icloud" stuff. I have "Contacts" turned off in my phone's icloud settings and on my computer's icloud settings. Every time I add or delete a contact in my phone, the same chang

  • Can't drag/drop music files from Itunes 10.5.2 to my new Ipod Touch

    Greetings! I I spent about 1.5 hours on the phone with an apple tech and really feel like we've tried everything! Switching from manually managing music to auto synch and back, reinstalled ITunes, etc and I still can't drag and drop music files on to

  • I forget my ipad passcode how to open my ipad

    i forget my ipad passcode how to open my ipad

  • Re: Tecra A9 -no sound with Win 7

    Hi, I installed Windows 7 and everything works fine except the sound. The sound card driver for Windows 7 is already installed. The Speakers as well as the microphone is detected but I can not hear anything. I read that the BIOS update may help.... T

  • Saving the data to spread sheet.

    Hi guys, i just have a simple question about the function "writing to spreadsheet". I have a 16 channel output from the DAQ assist, and i connect this output the the "2D line of the writing to spreadsheet". I do have a a file save at the location i d