Zenworks Imaging with Dialog command

Hi,
Recently I have applied the HP5 on my linux server in the goal to correct
some Zen pxe problem.
Before upgrading to HP5, my pxe environment worked in a bash script menu
that using the DIALOG linux command. This way, the technicians could
select workstation image without typing the name on the prompt. Now,
after upgrade, the DIALOG doesn't work anymore because it's not the same
Kernel.
Before, it was the kernel 2.6.5-7.244 12 dec 2005 and it's the same as my
Zen server. With the HP5 installed, the pxe is on kernel 2.6.16.21-0.25
19 sept 2006.
Now, I don't have a menu anymore, all techs must type the zen imaging
commands.
How can I obtained a new version of DIALOG adapted for the new Kernel?
I'm not a Linux expert, but probably I will have to get this command from
a station that I will need to upgrade the Kernel? This command, I have
taked it from my zen server, can I upgrade the Kernel of this server
easily ?
thanks!

> hi,
> I succesfully run the dialog, one of the problem was that the DIALOG
> command doesn't have the rights execution permissions. Now, my menu are
> displayed but it missed some graphical details like the square around the
> menu, and when I run the arrows on items, the item menu is going 4 or 5
> caracters to the right!! weird display problem.
>
> Like my other message, perhaps I will need a new version of the DIALOG
> command. If so, where?
>
> thanks! DM
>
I have the same Problem, a new Version of the Dialog has the same Problem.
It's a other Problem.
Any Idea

Similar Messages

  • How can the alpha channel be removed in an image with the command sips?

    I solved it by converting the image to jpeg with best quality, but it's a less than optimal solution.
    Is there a better way?
    I want to know because I'm developing a bash script to manipulate images.
    Thank you.

    I'm developing a Bash script to automate PNG compression.
    Converting true color images is often a good idea to reduce file size dramatically but transparency doesn't look any good then. So removing the alpha channel is usually the thing to do.
    I think Apple's platform is very easy to use but as soon as I dig deeper into the system it often becomes frustrating. Why isn't there a simple way to do something so simple and basic as removing alpha channels from images from the command line? Sips should be the answer but doesn't seem to be, unless I've missed something, but the manual doesn't give any clue.

  • Photoshop CS6, Mac OS, switching through open images with OS command no more possible

    Using Photoshop CS6 (13.0.1) on a Mac Pro OSX v 10.6.8 it is no more possible to switch through open image windows with the OS related key combo "command <".
    There is also no Photoshop own configurable command available, that could solve this issue.
    CS5 or versions below always allowed that, and I very much miss this practical and fast switching between images, much faster then having to maneuver down through the "windows" menue.
    Anybody knows a solution?

    thanks conroy, Ctrl+Tab does the trick! - Gerhard

  • Problem opening an Image with Swing

    I write an action listener for the choose class but when I try to open an image into my Jpanel I have the following error: (The problem seems to be the Null pointer because the image was not read or.....)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    at Genim$choose.actionPerformed(Genim.java:219)
    at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
    at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at javax.swing.JComponent.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)
    THE CODE IS :
    public class choose implements ActionListener {
    public void actionPerformed(ActionEvent ae) {
    int option = chooser.showOpenDialog(Genim.this);
    double [][] F = new double[90000][5];
    int i=0;
    if (option == JFileChooser.APPROVE_OPTION) {
    try{
    BufferedReader in = new BufferedReader(new FileReader(chooser.getSelectedFile())); //file contenente i
    String getname= chooser.getSelectedFile().getName();
    while (true)
    String s = in.readLine();
    if(s==null){
    break;
    StringTokenizer t = new StringTokenizer(s,"\t");
    double uno = Double.parseDouble(t.nextToken());
    double due = Double.parseDouble(t.nextToken());
    double tre = Double.parseDouble(t.nextToken());
    double quattro = Double.parseDouble(t.nextToken());
    double cinque = Double.parseDouble(t.nextToken());
    F[0]=uno;
    F[i][1]=due;
    F[i][2]=tre;
    F[i][3]=quattro;
    F[i][4]=cinque;
    if(i<90000) i=i+1;
    if(i==89999) accButton.setText("FIRST YEAR ACQUIRED");
    in.close();
    input8=F;
    input10=getname.substring(0, 4) ;
    catch (Exception e)
    accButton.setText("File input error");
    Image image = null;
    try {
    // Read from a file
    File file = new File(input10+".jpeg");
    image = ImageIO.read(file);
    } catch (IOException e) {}
    image = image.getScaledInstance(200,200,image.SCALE_FAST);
    JLabel label = new JLabel(new ImageIcon(image));
    buttonPanel.add(label, BorderLayout.EAST); ---->ERROR !!!!
    contentPane.add(label);-------------------------------->ERROR!!!!!
    Message was edited by:
    princo

    I will try to be clear:
    I want to open a file with the class choose and I want also in the same class to load an image with the command ImageIo.read()., to resize it and then to add this image as an icon into the Jpanel.
    I don't know why I receive the error in the final part ( LINE 223 and 224 are shown below) of the class choose:
    buttonPanel.add(label, BorderLayout.EAST); ---->ERROR !!!!
    contentPane.add(label);-------------------------------->ERROR!!!!!
    maybe the image is not fully loaded..
    I think that davedes has understood my problem but the modify that he proposed doesn't work---> The same error.
    The class choose is :
    public class choose implements ActionListener {
        public void actionPerformed(ActionEvent ae) {
        int option = chooser.showOpenDialog(Genim.this);
         double [][] F = new double[90000][5];
         int i=0;
          if (option == JFileChooser.APPROVE_OPTION) {
            try{
              BufferedReader in = new BufferedReader(new FileReader(chooser.getSelectedFile())); //file contenente i
              String getname= chooser.getSelectedFile().getName();       
              while (true)
                String s = in.readLine();
               if(s==null){
                 break;
               StringTokenizer t = new StringTokenizer(s,"\t");
               double uno = Double.parseDouble(t.nextToken());
               double due = Double.parseDouble(t.nextToken());
               double tre = Double.parseDouble(t.nextToken());
               double quattro = Double.parseDouble(t.nextToken());
               double cinque = Double.parseDouble(t.nextToken());
               F[0]=uno;
    F[i][1]=due;
    F[i][2]=tre;
    F[i][3]=quattro;
    F[i][4]=cinque;
    if(i<90000) i=i+1;
    if(i==89999) accButton.setText("FIRST YEAR ACQUIRED");
    in.close();
    input8=F;
    input10=getname.substring(0, 4) ;
    catch (Exception e)
    accButton.setText("File input error");
    Image image = null;
    try {
    // Read from a file
    File file = new File("2001.jpeg");
    image = ImageIO.read(file);
    } catch (IOException e)
    {//e.printStackTrace(System.out);
    //System.err.println(e.getMessage());
    System.exit(1);
    image = image.getScaledInstance(200,200,image.SCALE_FAST);
    JLabel label = new JLabel(new ImageIcon(image));
    buttonPanel.add(label, BorderLayout.EAST);
    contentPane.add(label);
    The error is:
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
            at Genim$choose.actionPerformed(Genim.java:223)
            at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
            at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
            at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
            at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
            at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
            at java.awt.Component.processMouseEvent(Unknown Source)
            at javax.swing.JComponent.processMouseEvent(Unknown Source)
            at java.awt.Component.processEvent(Unknown Source)
            at java.awt.Container.processEvent(Unknown Source)
            at java.awt.Component.dispatchEventImpl(Unknown Source)
            at java.awt.Container.dispatchEventImpl(Unknown Source)
            at java.awt.Component.dispatchEvent(Unknown Source)
            at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
            at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
            at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
            at java.awt.Container.dispatchEventImpl(Unknown Source)
            at java.awt.Window.dispatchEventImpl(Unknown Source)
            at java.awt.Component.dispatchEvent(Unknown Source)
            at java.awt.EventQueue.dispatchEvent(Unknown Source)
            at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
            at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
            at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
            at java.awt.EventDispatchThread.run(Unknown Source)THANK YOU VERY MUCH FOR YOUR HELP
    Message was edited by:
    princo

  • What kind of software distribute Zenworks Images too

    is it possible to distribute the Zenworks Image with another distribution system?
    there are a lot of distribution software on the market, is someone familar with them, and may know what kind of software distribute the Zenworks Image to the workstation too. ?
    here are some examples of software :
    * FAI OpenSource Software
    * M23 OpenSource-
    * Open PC Server Integration (opsi)
    * RPM mit YUM und Repositories-Server
    * MS SCCM
    * HP OpenView
    * IBM Tivoli Provisioning Manager IBM Tivoli Intelligent Orchestrator
    * DX-Union
    * INOSOFT Garibaldi
    * BARAMUNDI Client Management Suite
    * Altiris Client Management Suite
    * Prism Suite Client Management Suite
    * enteo [Automate Software Deployment and Management]
    did anybody know if they work with the zenworks image too?

    I'm not aware of tools to convert ZENworks images to a different format, and given ZENworks images are file aware, I can't imagine it would be easy to convert them. The safest option remains to restore the image to a workstation and then take a new image using the "other" imaging tool.
    Note that with a ZENworks imaging boot CD, you don't even need an imaging server. Having for example the ZENworks image on an external disk should be enough for manual image restore.

  • How do I clean out the "Open With" dialog box when I right click an image?f

    Hi,
    When I right-click and image to open it in a program I get a long list of programs to choose from. Many are duplicated or the same program but different version #s like Preview. How do I clean out the dupes and ones I don't want and keep the ones I do?
    How would I add CS3's Adobe Camera Raw to the list?

    Do a search for details on cleaning up the "open with" dialog, it's been discussed before but I'm sorry I can't remember what the fixes are.
    I have duplicate choices too but have never tried to clean them up.
    Regards,
    Steve M.

  • Decompression error's with Zenworks Imaging v6.5

    As part of our re imaging process, policy requires us to backup all
    workstations before re imaging. this often results in images ~25GB in size.
    (I am aware that it is not good practice to save data locally and ideally
    backup images should not be huge. Unfortunately due to policy this is
    unavoidable.)
    ZENworks imaging works great, except that occasionally individual files
    cannot be extracted from the image.
    When i try to extract a file in the above situation i am prompted with the
    following error:
    "A decompression error occured while attempting to extract the file from
    the image (-112). This file may not be extracted."
    In the past i have noted that the file in question tends to be quite large,
    (280MB) and is compressed in a fairly large image, ~20GB.
    Have checked on the original PC and the file is intact and working fine.
    When i backup the machine via Ghost the file is able to be extracted fine.
    Any help on this topic would be great as its difficult to test individual
    files and once the PC has been re imaged, if a file is corrupt in the
    image, it is impossible to retrieve.
    Cheers, Leon

    Is the file compressed using NTFS compression?
    It may be colored blue if you look at it in Windows Explorer.
    [email protected] wrote:
    > As part of our re imaging process, policy requires us to backup all
    > workstations before re imaging. this often results in images ~25GB in size.
    > (I am aware that it is not good practice to save data locally and ideally
    > backup images should not be huge. Unfortunately due to policy this is
    > unavoidable.)
    > ZENworks imaging works great, except that occasionally individual files
    > cannot be extracted from the image.
    >
    > When i try to extract a file in the above situation i am prompted with the
    > following error:
    >
    > "A decompression error occured while attempting to extract the file from
    > the image (-112). This file may not be extracted."
    >
    > In the past i have noted that the file in question tends to be quite large,
    > (280MB) and is compressed in a fairly large image, ~20GB.
    >
    > Have checked on the original PC and the file is intact and working fine.
    > When i backup the machine via Ghost the file is able to be extracted fine.
    >
    > Any help on this topic would be great as its difficult to test individual
    > files and once the PC has been re imaged, if a file is corrupt in the
    > image, it is impossible to retrieve.
    >
    > Cheers, Leon
    Jeremy Mlazovsky
    Senior System Engineer - Enterprise Desktop
    UDit-Central Hardware Systems & Network Storage
    University of Dayton
    http://forge.novell.com/modules/xfmod/project/?udimage
    http://vmpconfig.sourceforge.net/
    http://regeditpe.sourceforge.net

  • Zenworks imaging failed with error:200

    We just got new PC's and when I try to use ZENworks 6.5 to put my image
    on them, I get "ZENworks imaging failed with error:200"
    I have not been able to find anything in the KB for this.
    The PCs are Gateway E-4500D, ZENworks is 6.5 running on NetWare 6.5 SP 4a.
    TIA

    We are on SP2 and getting the error code: 200 error. The PC's are DC5100
    Small form factor. They have SATA drives. Some work and some get this
    error, reboot and then start the image restore, but never gets to the
    Pre-Formatting. Any ideas?
    > On Tue, 18 Jul 2006 14:32:30 GMT, Rhonda Richardson wrote:
    >
    > > No. We are on SP1. Sorry, forgot that part.
    >
    > could you try sp2?
    > --
    >
    > If you have already compiled drivers or have linux.2 please put them on
    > http://forge.novell.com/modules/xfmo...ect/?zfdimgdrv
    > Live BootCd and USB Disk from Mike Charles
    > http://forge.novell.com/modules/xfmod/project/?imagingx
    > eZie http://forge.novell.com/modules/xfmod/project/?ezie
    >
    > Marcus Breiden
    >
    > If you are asked to email me information please change -- to - in my e-mail
    > address.
    > The content of this mail is my private and personal opinion.
    > http://www.edu-magic.net

  • Image Insert Dialog with Navigation Bar?

    How come the Image Insert dialog now shows the

    No, that stuff wasn't there before.
    No, it isn't necessary.
    I guess is some sort of style sheet is begin applied that wasn't before.
    Take a look at this.
    When I first typed this message, my typing looked like this.  I went and posted and it all pretty much disappeared except for some blank lines.  A couple other times I've seen the overlapped lines of typing.
    (And the jumping of the box on Autosave is still occurring.)
    I think the last forum updates must have broken more than they fixed.
    Attachments:
    bad edit window.PNG ‏10 KB

  • Pixelated images (with High Quality Display turned on)

    Here's my problem: The images look sharp on the internet, but when I download them, place them in Indesign and print them, the look pixelated!
    Take this one for example: http://media.smashingmagazine.com/images/typefaces/productus.gif
    It's resolution is 72 ppi. But when I place it onto the Indesign A4 page (or Letter format for that matter) it occupys almost entire width of the page.
    Why is it so? Why is it so big by default without enlarging it? It's kinda logic that a small 72 ppi image stretched across the whole page will appear blurry when printed on 300 dpi printer.
    So how can I set the indesign page to 300 ppi/dpi so images with lower restion will appear smaller when placed on the page and - will be printed sharp?

    mike.n03 wrote:
    Where can you specify this preference?
    And you mean there's a script for InDesign? Wow, it would be cool to get it. So far I solved that problem by recording an Action in Photoshop and than apply it to all the images using Batch command.
    Preference is down at the bottom of the File Handling section ...  Check the bos to preserve dimensions and a the relinked file will be scaled back to the same size in ID. Uncheck, and the scale percentage will be preserved.
    Almost anything is scriptable in ID (but I don't write them). I recall a script that was posted a year or two ago that would allow you to select an image and type a desired effective resolution into a dialog. The image would get scaled to reach that effective ppi. Your batch action in Photoshop is fine, and useful if you want to palce everything at 100%, but it isn't required to change the resolution in Photshop to achieve what you want. Scaling in ID is exactly the same thing as changing the resolution without resampling in Photoshop. No pixels are added, removed or altered -- only their dispalyed size is changed. If you want a script to set all images to 300 ppi effective resolution, you should probably pay a visit to the scripting forum.

  • Action with Move command fails after illustrator restarts

    Make new illustrator file
    Make a Rectangle
    Make a new action
    While recording action press enter, and move any direction
    Stop recording
    Run action again to test
    Close Illustrator
    Open Illustrator
    Try and use action
    Fails and gives error "The object 'Move' is not currently available, the action button turns orange.
    It also fails in button mode
    It fails if I try to reload the actions
    It only works if I recreate them in that session illustrator is open.
    Expected Behavior
    Actions work no matter how many times you restart illustrator

    Sorry about not being very clear originally. We don't actually send remote notices to the target machines via ARD. The command
    osascript -e 'tell application "System Events" to display dialog "Message"'
    is just an example of what ARD is having issues with for me: If the script for the target machine pushes any user-facing GUI at all, it will not quit until someone manually OKs or closes the window... no amount of messing with the command by giving it ampersands or starting subshells prevents ARD from minding every single one of the subprocesses that it has started.
    There are posts here where we see that a certain task never even "ends" in ARD's eyes: the scripted reboot
    A colleague has suggested that we update our application to echo command information instead of triggering an "Everything was OK" dialog. Most of the time this will fail because you do not have access to the source code in the real world. In my case, we do, but making the changes requires reviewing, changing the code and new testing for the triggered application.
    Still, there is a flaw in not having an option for ARD to just hit-and-run with a script to, say, open a presentation in 100 computers and leave it running. Currently, ARD will hit a few and hang on "Running" as soon as its whatever maximum parallel workstations is stuck running this script.
    ARD designers seem to have planned it "we must receive the return value of this open-ended script," while clients see it as "please let us treat the job as finished as soon as the last line has been triggered"

  • Help! iPhoto alerts pop up that say, "The photo "DSC06691.JPG" cannot be opened because the original cannot be located." I can locate original, but I have multiple images with same name!

    Recently my library prompted me to rebuild due to inconsistencies that were found in library. Now alerts pop up that say it can't locate the original of an image, so I have an option to cancel or locate it. I can locate the file, however, there are usually 2 or 3 photos with the same file name! Not sure which one it is trying to locate etc. I have a feeling this is the problem. Not sure how it happened. Has anyone had this happen to them?? iPhoto library hasn't rebuilt because there are so many pop up alerts...I have a feeling it's a big problem. I am going to attempt to select one image for each one and see what happens, but I am concerned what the outcome will be.
    My camera cards are already deleted (I knew I should have kept them!!). We do have time capsule, so I am assuming I can go back, but I am worried that iphoto will do the same thing. It just started doing it about two weeks ago and it didn't correspond with any photo uploads. I hope someone can help!

    Are you running a managed or referenced library?
    If it's a managed library apply the two fixes below in order as needed: 
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Since only one option can be run at a time start with Option #3, followed by #4 and then #1 as needed.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Images with same name in different folders being swapped

    I've been out at a printers freelancing and using CS6 for the first time. I've a 64 page document with a large number of images (100+) that have been given various treatments and held in folders named to identify them.
    originals: sweden.jpg, germany.jpg, india.jpg…etc
    saturated: sweden.jpg, germany.jpg, india.jpg…etc
    greyscale: sweden.jpg, germany.jpg, india.jpg…etc
    and so on. The document contains differnt combinations of these pictures, all in all I've about 1,000 image links in the document.
    I opened up my document this morning and found for some reason the links to the images were broken - no idea why as no folders seem to have been moved but when I relinked to one of them - say a greyscale image - they ALL linked to the wrong set - the "saturated" ones. Looking at the image path in the links panel I see that's what's happened, ALL the link paths to ALL the images say "saturated", never mind the fact they're greyscale in the document.
    So is this a known issue? At the moment I can't find any solution but to relink manually over a thousand images, which, lets face it, is a bit of a disaster for me and the job deadline.
    I've used indesign for years and never come across anything even CLOSE to this sort of behaviour.

    InDesign has a feature that will automatically search for other missing links when you fix a missing link. When you relinked the first of your grayscale images, you may have accidentally relinked to the saturated image. When this happened it searched the directory that the newly re-linked file was in for all the other missing files. Since your image names all matched up to images in that directory, they all got re-linked.
    This auto-relink feature can be toggled in the relink dialog:
    If you have a backup of your file, you can revert to that version, and try to relink your images from that one. In the future you should make sure that images all have unique identifiers, it is bad practice to have images with identical names.

  • Adding drivers to Windows 7 image with DISM

    I'm trying to add Intel chipset drivers to a Windows 7 image (.wim file). I was able to add some Broadcom network drivers without any problems, but when I try to add the chipset drivers, I get this error:
    "Error - An error occurred. The driver package could not be installed. For more information, check for log files in the <windir>\inf folder of the target image."
    Here's an excerpt from the log file:
    >>> [Import Driver Package - c:\drivers\Chipset\tcrkusb.inf]
    >>> Section start 2011/05/06 14:04:54.454
    os: Version = 6.1.7601, Service Pack = 1.0, Suite = 0x0100, ProductType = 1, Architecture = x86
    cmd: C:\Users\b2pra\AppData\Local\Temp\56E388AA-F02D-4187-BB45-50C56E7C41D4\dismhost.exe {11D7C1E2-233E-4FF8-A893-3559C2D292E3}
    sto: Importing driver package into Driver Store:
    sto: Driver Store = C:\winimg\Windows\System32\DriverStore (Offline | 6.1.7601)
    sto: Driver Package = c:\drivers\Chipset\tcrkusb.inf
    sto: Architecture = x86
    sto: Locale Name = neutral
    sto: Flags = 0x00000000
    inf: Opened INF: 'c:\drivers\Chipset\tcrkusb.inf' ([strings])
    inf: Opened INF: 'C:\winimg\Windows\System32\DriverStore\FileRepository\usbport.inf_x86_neutral_f9abf85fd00186bd\usbport.inf' ([strings.0409])
    inf: Opened INF: 'c:\drivers\Chipset\tcrkusb.inf' ([strings])
    sto: Importing driver package files:
    sto: Source Path = c:\drivers\Chipset
    sto: Destination Path = C:\winimg\Windows\System32\DriverStore\FileRepository\tcrkusb.inf_x86_neutral_7736aa821aa7f9cc
    flq: {FILE_QUEUE_COPY}
    flq: CopyStyle - 0x00000000
    flq: SourceRootPath - 'c:\drivers\Chipset'
    flq: SourceFilename - 'tcrkusb.cat'
    flq: TargetDirectory- 'C:\winimg\Windows\System32\DriverStore\FileRepository\tcrkusb.inf_x86_neutral_7736aa821aa7f9cc'
    flq: {FILE_QUEUE_COPY exit(0x00000000)}
    flq: {FILE_QUEUE_COPY}
    flq: CopyStyle - 0x00000000
    flq: SourceRootPath - 'c:\drivers\Chipset'
    flq: SourceFilename - 'tcrkusb.inf'
    flq: TargetDirectory- 'C:\winimg\Windows\System32\DriverStore\FileRepository\tcrkusb.inf_x86_neutral_7736aa821aa7f9cc'
    flq: {FILE_QUEUE_COPY exit(0x00000000)}
    flq: {_commit_file_queue}
    flq: CommitQ DelNodes=0 RenNodes=0 CopyNodes=2
    flq: {_commit_copy_subqueue}
    flq: subqueue count=2
    flq: source media:
    flq: SourcePath - [c:\drivers\Chipset]
    flq: SourceFile - [tcrkusb.cat]
    flq: Flags - 0x00000000
    flq: {_commit_copyfile}
    flq: CopyFile: 'c:\drivers\Chipset\tcrkusb.cat'
    flq: to: 'C:\winimg\Windows\System32\DriverStore\FileRepository\tcrkusb.inf_x86_neutral_7736aa821aa7f9cc\SET7554.tmp'
    !!! flq: CopyFile: FAILED!
    !!! flq: Error 5: Access is denied.
    !!! flq: Error installing file (0x00000005)
    !!! flq: Error 5: Access is denied.
    ! flq: SourceFile - 'c:\drivers\Chipset\tcrkusb.cat'
    flq: TempFile - 'C:\winimg\Windows\System32\DriverStore\FileRepository\tcrkusb.inf_x86_neutral_7736aa821aa7f9cc\SET7554.tmp'
    ! flq: TargetFile - 'C:\winimg\Windows\System32\DriverStore\FileRepository\tcrkusb.inf_x86_neutral_7736aa821aa7f9cc\tcrkusb.cat'
    flq: {SPFQNOTIFY_COPYERROR}
    !!! sto: Failed to copy file 'c:\drivers\Chipset\tcrkusb.cat' to 'C:\winimg\Windows\System32\DriverStore\FileRepository\tcrkusb.inf_x86_neutral_7736aa821aa7f9cc\tcrkusb.cat'. Error = 0x00000005
    sto: File 'c:\drivers\Chipset\tcrkusb.cat' is not in use by any processes.
    flq: {SPFQNOTIFY_COPYERROR - returned 0x00000000}
    !!! flq: SPFQNOTIFY_COPYERROR: returned SPFQOPERATION_ABORT.
    !!! flq: Error 2: The system cannot find the file specified.
    flq: {_commit_copyfile exit(0x00000002)}
    flq: {_commit_copy_subqueue exit(0x00000002)}
    !!! flq: FileQueueCommit aborting!
    !!! flq: Error 2: The system cannot find the file specified.
    flq: {_commit_file_queue exit(0x00000002)}
    !!! sto: Failed to copy driver package to 'C:\winimg\Windows\System32\DriverStore\FileRepository\tcrkusb.inf_x86_neutral_7736aa821aa7f9cc'. Error = 0x00000005
    !!! sto: Failed to import driver package into Driver Store. Error = 0x00000005
    <<< Section end 2011/05/06 14:04:55.140
    <<< [Exit status: FAILURE(0x00000005)]
    Am I doing something wrong? Thanks!

    Hi,
    Did these drivers support to Windows 7? Could you please point where did you download the chipset drivers? I will make a test to add on my WIM to check if the drivers
    have problem.
    Furthermore,
    check if you really need these drivers for your computer:
    http://www.intel.com.../support/detect
    Please Note: Since the website is not hosted by Microsoft, the link may change without notice. Microsoft does
    not guarantee the accuracy of this information.
    And there’s the steps about
    How to add Chipsets drivers inside the image install.wim:
    1) Expand the file ***.zip
    2) You will see the files for Windows 7 inside the folder ***\WIN7
    3) Copy/paste all the files (.inf and .cat files) inside a folder (example: C:\Drivers\Chipsets)
    4) Mount the image you want to integrate the drivers (example above).
    5) Integrate drivers with the command line
    6) Unmount /Commit
    Hope that helps.
    Regards,
    Leo  
    Huang
    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 import an image with an opacity mask from AI into FW

    I have created a graphic in AI which contains several images with associated opacity masks. The mask use a radial gradient to achieve the desired effect. I am unable to import these images into FW with the mask effects intact even though the layers appear to be there. What am I doing wrong? I don't see away to do it in FW directly. If there's a work-around that would be appreciated too.

    Fireworks' masking is pretty good. If you have your object and your mask in FW, arrange the objects so that the mask is above the object, select both, then click on
    Modify > Mask > Group as Mask
    Where the mask is white, your object will be fully opaque. Where the mask is black or 100% transparent, your object will be fully transparent. Where the mask is grey or partially transparent, your object will be, as well, proportionally to the grey level/transparency level in the mask.
    Fireworks also has some built-in masks to fade objects radially or linearly. In CS3, these are under
    Commands > Creative > Fade Image
    but they got moved someplace else for CS4. I can't find the info on that in the help, though, sorry. Oh wait. It might be the Auto Vector Masks:
    http://help.adobe.com/en_US/Fireworks/10.0_Using/WS29D46793-C43E-4941-960E-F238FB1977C8.ht ml
    Mask info here:
    CS3: http://help.adobe.com/en_US/Fireworks/9.0/help.html?content=frw_layers_la_19.html
    CS4: http://help.adobe.com/en_US/Fireworks/10.0_Using/WS4c25cfbb1410b0021e63e3d1152b00d169-8000 .html

Maybe you are looking for

  • Itunes not recognizing songs in Media Folder

    I have my Itunes Media Folder on an external HD. When I try to play some tracks in Itunes, they have the ( ! ) next to them. A dialogue comes up that says Itunes can't find them. But I know they're right there on the external drive. When I choose "lo

  • Indicator Values from Multiple Points in a Program

    I may be requesting the impossible... I have a program that is a three-frame stacked sequence. In each frame there are case structures, in which there are while loops. In the while loops, it reads off the temperature from a piece of equipment. I woul

  • Macbook pro shipping to apple store?

    When will the apple stores get their new shipments of the new macbook pro? i live in oahu, hawaii.

  • CS6 doesn't remember that I have a paid, licensed copy.

    I bought CS6 several months ago.  Only in the past few days it has started requiring that I sign in to Adobe each time I run the program AND it requires me to enter the Serial Number each time.  How do I get it to remember that this is a paid, licens

  • IPhone App Download Problem

    I need assistance....I have a problem with downloaded apps showing up on my phone (3Gs). When I download the app is says installing then disappears off the home screen when it is done. When I sync to iTunes, it shows up as I downloaded it and appears