Using buildclient to build static libraries under Windows

Hi All,
I have been trying to use buildclient to build a static library
but in vain. When i run the following command on the command line
"buildclient -w -v -o GenSvcWrapper.lib -f GenSvcWrapper.cpp" ,
i get the error (LINK : fatal error LNK1561: entry point must be
defined), which i guess is asking for a main() in the program.
I tried using the VC++ IDE to build the library, now i am able
to build the library but the call to tpinit() fails.
My conclusion is that buildclient can be used only to build
exe's. Am i wrong in my conclusion? If not how do I build
libraries using buildclient or VC++ IDE? What i want is to wrap
Tuxedo ATMI calls like (tpinit() and tpcall()) and provide it as
a library.
Please help me out in this problem. I have pasted the build
output below.
Thanks,
Santhosh
Build Output <<<<<<<<<<<<<<<<<<<<<<<<<<<<<E:\Code\VC\GenSvcWrapper>buildclient -w -v -o GenSvcWrapper.lib -f
GenSvcWrapper
.cpp
cl /MD -I"%TUXDIR%"\include -FeGenSvcWrapper.lib GenSvcWrapper.cpp
"%TUXDIR%
"\lib\libwsc.lib "%TUXDIR%"\lib\libbuft.lib "%TUXDIR%"\lib\libfml.lib
"%TUXDIR
%"\lib\libfml32.lib "%TUXDIR%"\lib\libengine.lib wsock32.lib kernel32.lib
advap
i32.lib user32.lib gdi32.lib comdlg32.lib
winspool.lib -link -implib:BC-7b0.li
b
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 12.00.8804 for 80x86
Copyright (C) Microsoft Corp 1984-1998. All rights reserved.
GenSvcWrapper.cpp
Will automatically link with libbuft.lib
Will automatically link with libwsc.lib
Will automatically link with libengine.lib
Will automatically link with libfml.lib
Will automatically link with libfml32.lib
Microsoft (R) Incremental Linker Version 6.00.8447
Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
/out:GenSvcWrapper.lib
-implib:BC-7b0.lib
GenSvcWrapper.obj
"E:\Program Files\bea\tuxedo8.0\lib\libwsc.lib"
"E:\Program Files\bea\tuxedo8.0\lib\libbuft.lib"
"E:\Program Files\bea\tuxedo8.0\lib\libfml.lib"
"E:\Program Files\bea\tuxedo8.0\lib\libfml32.lib"
"E:\Program Files\bea\tuxedo8.0\lib\libengine.lib"
wsock32.lib
kernel32.lib
advapi32.lib
user32.lib
gdi32.lib
comdlg32.lib
winspool.lib
LINK : fatal error LNK1561: entry point must be defined
TUXNT_CAT:77: ERROR: Can't execute cl
/MD -I"%TUXDIR%"\include -FeGenSvcWrapper
.lib GenSvcWrapper.cpp "%TUXDIR%"\lib\libwsc.lib
"%TUXDIR%"\lib\libbuft.lib
"%TUXDIR%"\lib\libfml.lib "%TUXDIR%"\lib\libfml32.lib
"%TUXDIR%"\lib\libengine.
lib wsock32.lib kernel32.lib advapi32.lib user32.lib gdi32.lib comdlg32.lib
win
spool.lib -link -implib:BC-7b0.lib

You can build libraries using buildclient by working out the VC++ command line
argument used to build a static library and passing that in the -f option of buildclient.
There's no real point in using buildclient to build a tuxedo client because the
only thing it does for you is specify the tuxedo libraries that get linked into
the exe or lib that you are creating, and complain if you don't have a valid SDK
license. I just specify the tuxedo libraries myself to VC++ and completely forget
about using buildclient. The only thing to keep in mind is to make sure you are
using the correct tuxedo libraries for a native or workstation tuxedo client (pretty
much libtux.lib for native and libwsc.lib for a workstation client followed by
the other tuxedo libraries you need, libbuft.lib libfml.lib libfml32.lib libengine.lib
etc. ).
"Santhosh" <[email protected]> wrote:
>
Hi All,
I have been trying to use buildclient to build a static library
but in vain. When i run the following command on the command line
"buildclient -w -v -o GenSvcWrapper.lib -f GenSvcWrapper.cpp" ,
i get the error (LINK : fatal error LNK1561: entry point must be
defined), which i guess is asking for a main() in the program.
I tried using the VC++ IDE to build the library, now i am able
to build the library but the call to tpinit() fails.
My conclusion is that buildclient can be used only to build
exe's. Am i wrong in my conclusion? If not how do I build
libraries using buildclient or VC++ IDE? What i want is to wrap
Tuxedo ATMI calls like (tpinit() and tpcall()) and provide it as
a library.
Please help me out in this problem. I have pasted the build
output below.
Thanks,
Santhosh
Build Output <<<<<<<<<<<<<<<<<<<<<<<<<<<<<E:\Code\VC\GenSvcWrapper>buildclient -w -v -o GenSvcWrapper.lib -f
GenSvcWrapper
.cpp
cl /MD -I"%TUXDIR%"\include -FeGenSvcWrapper.lib GenSvcWrapper.cpp
"%TUXDIR%
"\lib\libwsc.lib "%TUXDIR%"\lib\libbuft.lib "%TUXDIR%"\lib\libfml.lib
"%TUXDIR
%"\lib\libfml32.lib "%TUXDIR%"\lib\libengine.lib wsock32.lib kernel32.lib
advap
i32.lib user32.lib gdi32.lib comdlg32.lib
winspool.lib -link -implib:BC-7b0.li
b
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 12.00.8804 for
80x86
Copyright (C) Microsoft Corp 1984-1998. All rights reserved.
GenSvcWrapper.cpp
Will automatically link with libbuft.lib
Will automatically link with libwsc.lib
Will automatically link with libengine.lib
Will automatically link with libfml.lib
Will automatically link with libfml32.lib
Microsoft (R) Incremental Linker Version 6.00.8447
Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
/out:GenSvcWrapper.lib
-implib:BC-7b0.lib
GenSvcWrapper.obj
"E:\Program Files\bea\tuxedo8.0\lib\libwsc.lib"
"E:\Program Files\bea\tuxedo8.0\lib\libbuft.lib"
"E:\Program Files\bea\tuxedo8.0\lib\libfml.lib"
"E:\Program Files\bea\tuxedo8.0\lib\libfml32.lib"
"E:\Program Files\bea\tuxedo8.0\lib\libengine.lib"
wsock32.lib
kernel32.lib
advapi32.lib
user32.lib
gdi32.lib
comdlg32.lib
winspool.lib
LINK : fatal error LNK1561: entry point must be defined
TUXNT_CAT:77: ERROR: Can't execute cl
/MD -I"%TUXDIR%"\include -FeGenSvcWrapper
.lib GenSvcWrapper.cpp "%TUXDIR%"\lib\libwsc.lib
"%TUXDIR%"\lib\libbuft.lib
"%TUXDIR%"\lib\libfml.lib "%TUXDIR%"\lib\libfml32.lib
"%TUXDIR%"\lib\libengine.
lib wsock32.lib kernel32.lib advapi32.lib user32.lib gdi32.lib comdlg32.lib
win
spool.lib -link -implib:BC-7b0.lib

Similar Messages

  • Do IMAQ Cast Image or IMAQ Linear averages give different results when using different computers that are running under Windows XP ?

    Hello
    I'm currently developping an image processing algorithm using Labview 7.1 and the associated IMAQ Vision tools. After several tests, I found a weird result. Indeed, I put the labview algorithm - including the IMAQ VI on the library to get sure that I use all the time the same VI - on my memory stick and used it on two different computers. I tested the same picture (still in my memory stick) and had two very different results.
    After several hours trying to understand why, I found that there were a difference between the results given by both computers at the very begining of the algorithm. Indeed, I used a JPEG file.
    To open it, I first create an Image with IMAQ Create (U8). Then, I open it.
    Then in my first sub-VI, I use IMAQ Cast Image to be sure that the picture is a U8 grayscale picture.
    Right after that, I use the IMAQ Linear Averages. The results of this VI are different on the two computers.
    I tried several time on the same picture : one computer always give me the same result but the two computers give me a different result. So there is no random variable on the results.
    So my question is : Do IMAQ Cast Image or IMAQ Linear averages give different results when using different computers that are running under Windows XP ?
    My bet is on IMAQ Cast Image but I'm not quite sure and I do not undestand why. The labview and IMAQ are the same on both computers.
    The difference between the two computer are above :
    Computer 1 :
    Pentium(R) 4 CPU 3.20GHz with a RAM of 1Go. The processor is an Intel(R).
    The OS is windows XP Pro 2002
    Computer 2 :
    Pentium(R) 4 CPU 2.80GHz with a RAM of 512Mo. The processor is an Intel(R).
    The OS is windows XP Pro 2002.
    If anybody can help me on this problem, it would be really helpful.
    Regards
    Florence P.

    Hi,
    Indeed it's a strange behaviour, could you send me your VI and your JPEG file, (or another file that reproduces) so that I could check this inthere ?
    I'll then try to find out what's happening.
    Regards
    Richard Keromen
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    >> Découvrez, en vidéo, les innovations technologiques réalisées en éco-conception

  • Can a Apple Studio Display be used with a none Mac PC under Windows

    Hello, can a 21 Inch Apple Mac Studio Display Monitor (Graphite) be used with a none Mac PC under Windows. Thanks Peter

    what's a "none" Mac PC?
    It can be done, but you'll need to purchase an ADC-DVI adapter in order to connect to the DVI port on the PCs video card.

  • How to use g++ to build shared libraries for labview in linux?

    does anyone knows if it's possible to compile a shared library in linux with g++ that could be recognized by labview?
    thks
    JP

    Hi JP,
    Yes you can use g++ to build shared libraries that labview can use. You'll want to give your C++ library a C interface. This is really common practice. You can do this by simply declaring functions as 'extern "C"'. Here is a link with more information:
    http://www.parashift.com/c++-faq-lite/mixing-c-and-cpp.html#faq-30.8
    I've personally worked on projects that do exactly what you want to do.

  • Printing from a Dos Program which uses LPT1 running a Virtual XP under Windows 7 Professional.

    The Virtual XP uses the printer assigned to Windows 7 Professional by using Microsoft Terminal Services so you see a TS... pointing the the printer
    in Windows 7.
    It works fine in the Virtual XP system.
    When you open the DOS application to print you must first do a Net Use lpt1: 
    \\Virtual XP computer name\Shared name you assigned to the printer you want to use /persisent:yes
    This works well when you are running in a regular XP machine, but will not work from the Virtual XP machine running under Windows & Professional.
    I believe it has to do with the fact that the Virtual XP machine is connecting to the Windows 7 printer that is connected via a Net Use command
    for the TSclient  prn12 pointing to the Windows 7 HP network printer.
    Has anyone encountered this situation and if so is there a way to correct it.
    The error message I get in the DOS application says the printer is offline or not connected.

    Have you tried to share the printer over the network in the Windows 7 environment - and then do a net use from inside the virtual machine (rather than using the terminal services printer redirection)? Note that for this to work you will need to be using
    a direct network connection on the virtual machine - and not shared networking.
    Cheers,
    Benjamin Armstrong
    ============================
    Windows Virtualization
    Senior Lead Program Manager
    This posting is provided AS IS with no warranties, and confers no rights. You assume all risk for your use.

  • Can't find "Libraries" under Windows drop down menu in Adobe Illustrator CC on Mac?

    I was searching forums to solve my issue (as stated in the subject) but could not figure out why I am unable to see "libraries" on my freshly updated Illustrator CC w/ Creative Cloud. I am attempting to use an image captured in Adobe Shape but am unable to because the windows drop-down menu does not show libraries.
    I was wondering if anyone was ever able to help someone solve there issues with this? Any help would be much appreciated.

    Hi simonkirk2012,
    You need to install Illustrator CC2014 which is version 18. You can log off from creative cloud Desktop app and login back and check do you have any option to install AI CC2014. Also please check your operating system meets the requirements for CC2014 version.
    System requirements | Illustrator
    Regards,
    Nikhil Gupta

  • Building java executable for windows

    Well, actually I have two qestions:
    1) how it is possible to build executable running under windows using usual Java tools, e. g. ant or something like this?
    2) if I'm using VS.NET I can't compile files wich import javax. ... etc. classes, what I should to in order to import them?
    Any suggestions welcome.

    Well, actually I have two qestions:
    1) how it is possible to build executable running
    You want a .exe at a guess, search the forums.
    All the regs. have answed this many many many times, and some very good answers exist on the forums.
    Normally, when people ask this, they really need to read:
    http://java.sun.com/docs/books/tutorial/jar/
    http://java.sun.com/products/javawebstart/
    But sometime (not very ofton) a ".exe" is needed:
    http://gcc.gnu.org/java/
    http://www.excelsior-usa.com/jet.html
    under windows using usual Java tools, e. g. ant or
    something like this?Sure, make a new task. For GCJ this would be very easy.
    2) if I'm using VS.NET I can't compile files wich
    import javax. ... etc. classes, what I should to in
    order to import them?Are you compiling to .NET or to Java Byte Code.
    If its Java Byte Code, I have no idea, if its .NET the below might work
    http://classpath.org
    http://www.ikvm.net/

  • Export for quick time running under windows?

    I am coming to Final cut X pro from Imovie. Under Imovie I could export a movie  that would run under quicktime for both Mac and Windows computers. Now using Final cut X pro, when I export for quicktime, my movie works fine using a Mac computer but fails under windows. When I attempt to open the movie quicktime tells me I have a problem with the codec. It indicates that I need an add on, but does not indicate which one is needed. Share works great for  output to my Ipad.   What I like to do is export to quicktime and use a windows computer to output to a wide screen tv. I down loaded the latest version of quicktime for windows.   Under the share option what codec option should I chose, or do I require an add in to Quicktime?   Thanks.

    Not that you should have to, but try to make your final export from Compressor to see if that works better. Perhaps this can help you isolate the problem. H.264 should work in Windows, so you could also check your export on a different PC to see if the problem is on the receiving end.
    I'll put in my vote here for Flip-for-mac getting their components to play nice with FCX. I have always found it a handy tool.

  • I want to put windows 7 on my iMac. Do I use Windows 7, 64 bit System Builder or do I use a "retail copy" of the Windows 7, 64 bit ? Microsoft says I should use the System Builder copy. A technical support individual from Apple said use the "retail copy"

    A Microsoft technical advisor said that the "retail copy" of Windows 7, 64 bit Home Premium would not work with Boot Camp to put the Windows operating system on the IMac. She said that I would have to use the System Builder copy of Windows 7 to put it on my iMac. An Apple technical advisor told me that I had to use the "retail copy" of Window 7 because that was the one used by Apple when they developed the Boot Camp program.  I have also seen some articles from Apple that suggests that both copies of Windows 7 would work OK. Does anyone have any experience that shows which one or both I should purchase to put on my computer?

    Welcome to ASC!
    I used the 64-bit System Builder Edition when I bootcamped my 2010 iMac a couple of years ago. Worked perfectly--installed a very lean system. Without all the extra cr@pware that comes preinstalled on name-brand Win computers, the SBE OS actually works darned well.
    However, that was under Mac OS 10.6.8 which remains on that computer for compatibilty reasons not related to Windows. Haven't BCed any newer Mac OS, so your mileage may vary.

  • Under Windows 7 Ultimate x64 and Boot Camp, my 27 inch Apple LED Cinema Display checks out as a Generic PnP Monitor and is shown as NOT HDCP compliant.  I haven't been able to find any kind of an .inf file to use.  Does anyone have a solution?

    Under Windows 7 Ultimate x64 and Boot Camp, my 27 inch Apple LED Cinema Display checks out as a Generic PnP Monitor and is shown as NOT HDCP compliant.  I haven't been able to find any kind of an .inf file to use.  Does anyone have a solution?  Or is Apple's implementation of HDCP (if it's there) incomplete?

    I am having this same issue. Im not sure if this is the cause but I think this is keeping PowerDVD Ultra 11 from playing back Bluray under Windows 7 / Bootcamp

  • Using scripting with networking equipment under Windows

    It can be a challenge to use scripting to automate working with Cisco devices. The Cisco IOS does not seem to directly provide a command line interface. You are forced to find a way to automate interaction with a telnet or ssh session.
    The PERL language provides a number of object-oriented methods to help manage an interactive session, most notably Net::SSH::Expect and Net::Appliance::Session. These options can work well in a Unix environment, but not under MS Windows.
    There are PERL for Windows options, the best probably being Strawberry PERL. There is also a Unix under Windows option known as CYGWIN that is freely available. Unfortunately none of these will work well with the way Windows manages low-level terminal I/O. The curious can google "windows pseudo terminal" to see all the technical details.
    One way that does work under Windows is Tcl.  It was initially named Tool Command Language. It is sometimes shown as Tcl/Tk.
    Interestingly enough, Tcl is included within Cisco IOS as tclsh. There is no interaction with the tclsh and this example. It is just a bit of a curious coincidence.
    A Tcl port to Windows can be downloaded from http://www.activestate.com/activetcl/downloads. Select Download ActiveTCL for Windows. A direct link to the download that worked at the time of writing is Download ActiveTcl 8.5.14 for Windows (x86)
    Once base Tcl has been downloaded and installed there is one other component that will need to be installed from the Tcl Extension Archive, the expect package.
    The teacup program that is installed with the base Tcl package makes this easy. The teacup program will work with a proxy.
    You can set these Windows environment variables to specify proxy details:
    set http_proxy=
    set http_proxy_user=
    set http_proxy_pass=
    Then run teacup install expect
    The plink tool from the PuTTY download is also needed. It can be obtained from http://www.putty.org/.
    The sample that follows assumes that the data files, script and plink.exe executable all reside in the same directory.
    A sample Tcl script follows that reads a file of devices and a file of commands. It will run the list of commands against each device in the device file. It has some basic error checking, but should best be considered a ‘beta’ version. You could do more complex interactions in the Tcl script by adding exp_send and expect command statements. In short, if you can type it you could script it!
    Change directory to where your script, plink.exe  and data is stored and run with  tclsh <script_name>
    devices.list
    # Comment lines are allowed if they start with a hash mark
    # <IP_Addr> <userid> <password> <ssh|telnet> <timeout_in_secs>
    nnn.nnn.nnn.nnn    <userid>    <password>  ssh         <timeout_in_secs>
    nnn.nnn.nnn.nnn    <userid>    <password>  telnet      30
    commands.list
    # term length 0 needed or else IOS will wait for an enter to be pressed at the  --More-- prompts
    term length 0
    show run
    exit
    Script:
    # Run batch commands against one or more devices
    package require Expect
    exp_log_user 0
    set exp_internal 0
    set exp::nt_debug 0
    set prompt "(#\s*$|>\s*$)"
    set env(TERM) dumb
    set file_channel  [open "devices.list" r]
    set DEVICES      [read $file_channel]
    close $file_channel
    set file_channel  [open "commands.list" r]
    set COMMANDS      [read $file_channel]
    close $file_channel
    set command_entries [split $COMMANDS "\n"]
    set device_entries  [split $DEVICES "\n"]
    proc timedout {{msg {none}}} {
          send_user "Timed out (reason: $msg)\n"
          if {[info exists ::expect_out]} { parray ::expect_out }
          exit 1
    foreach device_entry $device_entries {
          if {[string length $device_entry] == 0 || [regexp {[ \t]*#} $device_entry]} { continue }
          set device  [lindex $device_entry 0]
          set user    [lindex $device_entry 1]
          set pass    [lindex $device_entry 2]
          set mode    [lindex $device_entry 3]
          set wait    [lindex $device_entry 4]
          set serial  [lindex $device_entry 5]
          # puts "Device=$device"
          # puts "User=$user"
          # puts "Mode=$mode"
          # puts "Wait=$wait"
          set timeout $wait
          # Spawning the Session
          # If you are logging on to the remote machine using "ssh", "slogin" or "rlogin", the information
          # gets processed in a slightly different manner. With any of these methods, it is necessary to
          # include an additional -l option to specify a username.
          # Next, the $spawn_id variable is captured, storing information about this spawn session in
          # memory for future reference.
          # If you are logging in via Telnet, the final code block in this section is required to pass the
          # username to Telnet. If the login is completed before the script times out, the exp_send command
          # passes the username.
          switch -exact $mode {
                "telnet" { set pid [spawn plink -telnet -l $user $device] }
                "ssh"   { set pid [spawn plink -ssh -l $user -pw $pass $device] }
                "serial" { set pid [spawn plink -serial $serial -l $user -pw $pass $device] }
          set id $spawn_id
          if {$mode == "telnet"} {
                expect -i $id timeout {
                timedout "in user login"
                } eof {
                timedout "spawn failed with eof on login"
                } -re "(login|Username):.*" {
                exp_send -i $id -- "$user\r"
          # Handling Errors
          # The error-handling section of the script is a while loop that anticipates a number of problems
          # that could occur during login. This section is not exhaustive. For example, you could also add
          # provisions for invalid usernames and passwords.
          # If the login is not completed during the allotted time frame, which is set from the devices.list file
          # and specified with expect -i $id timeout, the program displays an appropriate error message.
          # The remainder of this loop makes use of the exp_send command to allow for other scenarios, such
          # as the user typing "yes" when prompted to proceed with the connection, entering a password, or
          # resetting the terminal mode.
          set logged_in 0
          while {!$logged_in} {
                expect -i $id timeout {
                timedout "in while loop"
                break
                } eof {
                timedout "spawn failed with eof"
                break
                } "Store key in cache? (y/n)" {
                exp_send -i $id -- "y\r"
                } -re "\[Pp\]assword:.*" {
                exp_send -i $id -- "$pass\r"
                } "TERM = (*) " {
                exp_send -i $id -- "$env(TERM)\r"
                } -re $prompt {
                set logged_in 1
          foreach command $command_entries {
                if {[string length $command] == 0 || [regexp {[ \t]*#} $command]} { continue }
                # Sending the Request
                # If the login is successful, the code in the if statement below is used to send the "cmd" request
                # to display files and directories. After the request is sent with exp_send, the resulting output
                # is captured in the dir variable, which is set on the fourth line of the code shown below.
                if {$logged_in} {
                      exp_send -i $id -- "$command\r"
                      expect -i $id timeout {timedout "on prompt"} -re $prompt
                      puts "$expect_out(buffer)"
                # Closing the Spawned Session
                # The exp_close command ends the session spawned earlier. Just to be sure that session
                # does indeed close, the exp_wait command causes the script to continue running until a result is
                # obtained from the system processes. If the system hangs, it is likely because exp_close was not
                # able to close the spawned process, and you may need to kill it manually.
          catch { exp_close -i $id }
          exp_wait -i $id
          set logged_in 0
    *** End of Document ***

    Your friend will have to save the templates as CS6, which he can do.

  • Firefox does not "close" when closed under Windows 7; Task Manager must be used to "End Process." How do I close Firefox and reopen it without getting a "Still Running" error message?

    Even though Firefox has been updated multiple times (currently using Ver. 3.6.13) since I started using Windows 7, I am still unable to totally close it from the toolbar or taskbar. Firefox does closeout on the screen but apparently continues to run in the background. If I open Firefox at a later time, I get an error message stating that Firefox is still running. I then have to go Task Manager to "End Process." Electing to do so allows me to restart Firefox. I never had this problem with Firefox when using Windows XP and I never have this problem with any other software under Windows 7.

    https://support.mozilla.com/en-US/kb/Firefox%20hangs#w_hang-at-exit

  • Often, Firefox app will close, but the underlying Windows process will not and cannot be stopped via Task Manager. When this happens, Firefox can no longer be used...the system must be rebooted.

    Hello,
    Often, the Firefox app will close, but the underlying Windows process will not and cannot be stopped via Task Manager. When this happens, Firefox can no longer be used...the system must be rebooted. This happens especially when many apps are running but even though there are plenty of memory resources available.
    I have tried to find if something is using Firefox in the background, but have no way to know what that would be.
    Their are no apparent viruses detected.
    Firefox is version v5.0 and occurred in earlier release.
    System is Windows 7 (64bit).

    well, it's not the same hardware and it's a bit different.
    I managed to pass that stage somehow but I still have a problem
    I don't use the built-in creator tool that comes with Spyrus as it doesn't know how to append a pre-staged media that was created by SCCM that should apply the Windows file system to a second partition and the WinPE to the first partition.
    I managed to do everything. my only problem is that the WTGCreator that comes with SCCM 2012 R2 creates the 350MB partition with FAT32 file system.
    when I boot from the device I get the WinPE, I can choose a task sequence and then it fails when trying to apply the wim file. the error tells me that the 350MB partition is FAT32 which is not supported (even though it chooses the second partition, which
    is all the rest of the disk space)
    what I did was adding another task that converts the 32 Fat partition to an NTFS partition and then the process continues and finishes successfully! but that's a workaround.
    I'm trying to make this process as smooth as possible without having additional steps
    Tamir Levy

  • Just got iPhone 5, get home and find iCloud Outlook Add-in does not install under Windows XP.  I am loathe to upgrade to Windows Vista/7/8 just yet.  Can I obtain and use an earlier version of iCloud Outlook Add-in?  My iPad II synchronizes!

    Just got iPhone 5, get home and find iCloud Outlook Add-in does not install under Windows XP.  I am loathe to upgrade to Windows Vista/7/8 just yet.  Can I obtain and use an earlier version of iCloud Outlook Add-in?  My iPad II synchronizes!

    There is no 'earlier' version that supports XP. iCloud launched with Vista/7 support only.

  • Impossible to use FF 19.02 under Windows 7/32

    I give up.
    Step one (this happens under Windows 7/32)
    FF offered to upgrade from 15.01 to 19.0. I let it, it could not complete (patch failed). So I downloaded it and installed it (upgraded). All nice - but impossible to use the browser, or the google search. One types the address or the query and nothing happens. So I reverted to a previous version of windows and all was well.
    Step two.
    I install on a different machine, Windows 7/64. All works, but I have a hell of a time moving the settings. After an hour or more, all is well. So I decide that 19.02 will work on the 32 bit machine as well...
    Step three.
    I upgrade FF to 19.02 from the 15.01. All works, I am happy. I do some other things, stopping FF in between. The next time I start it, no go. Impossible to go to a website or to search. Hmmm, I think...
    Step four.
    Uninstall FF. Wash the disk so there are no remnants. Download and install FF 19.02 using IE. It does not work!
    So: does anyone have an idea why? Here are some more weird things:
    - on the first try (step one), all worked perfectly well outside the FF home page. I could click on links to get to website, I could type new addresses to the bar and go to new websites, I could click on my google link and search. But NOT from the home page.
    - I tried to look at settings. Played with proxies (no proxy being my choice, but I also try aytomatic detection). Nothing. So I clicked on help - and that is how I got here and can write this,
    And no, resetting won't help, there is nothing to reset!
    Thanks for reading and perhaps helping.

    Which security software (firewall, anti-virus) do you have?
    Download and save the Firefox installer to the desktop and start the installation with a double-click on the desktop icon.
    You can find the latest Firefox 19.0.x release in all languages and for all Operating Systems here:
    *http://www.mozilla.org/en-US/firefox/all.html
    A possible cause is security software (firewall,anti-virus) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls

Maybe you are looking for

  • I have problem in downloading and updating softwares

    The syndrome is: The first 99.96% of the softwares can be downloaded well and sound, but after that, they stopped. While, strangely enough, some of the softwares can fully download. I guess sth. happens to those can't at the moment of 99.96%. Help me

  • Java Server Pages and Cookies

    I've been looking through several examples on the Web and I feel like I am missing something here. Most examples use a similar setting: ... loop through cookies looking for the right one and then... temp = cookie.getValue(); out.println(temp); Which

  • Call to BPM WebServive and Return BPM GUID

    Hello, When calling the web service to start a BPM process, we would like the web service to return to the calling application the guid of the BPM process that was created. The purpose of this is to provide the calling application a level of traceabi

  • Code overrides deprecated API...recompile with

    Hi, Need help compiling SampleProgram(see code below). (using JDK 1.3.1_06. and JCreator 2.5 build 8) The following code(see below) compiles with an error: "Note: C:\Documents and Settings\Alex1\My Documents\Alex Files\My Java\Lesson 2\SampleProgram.

  • Remove colors from Pallette

    I have developed several web sites and in the process have created custom colors from the color wheel or selected certain web safe color numbers. When I have the color I want I drag it to the small color pallette boxes at the cottom of the color insp