Need upgrade help for ZEN 3.2 and NW 5.1.

We have a Netware 5.1 network running ZfD 3.2 that spans two locations and
comprises two partitions. We want to upgrade to NW 6.5 and ZEN 7.
I have just found TID10083888 that says that ZfD 3.2 is not compatible with
NW 6.5.
My question is this:
What is the order in which items should be upgraded and to what interim
versions on each step? Keep in mind that each upgrade could be separated by
days or weeks, so the network needs to be functional between each upgrade.
Also, does upgrading NW or ZfD at one location affect operations at the
other? Should both locations be upgraded synchronously?
Clients are Windows 2000 and Citrix.

There's only one problem with this approach. I was told in another group
that my first NW 6.5 server should be my CA.
My CA is the main file server and the one doing the WS imports. This would
seem to necessitate a more granular approach, starting with the main file
server and upgrading it to ZfD 4.01.
What do you think?
> I would
>
> 1) Setup a New Server running NW6.5 on which to install the Back-End ZFD7
> services such as WS Import, Inventory, etc.........
> 2) Install ZFD7 and Extend the Schema. ( At this point your ZFD3.2
> environment is uneffected and clueless that anything happened.
> 3) Begin Upgrading the Workstation ZEN components to ZFD7 from 3.2.
> Populate the Registry to point to the new WSImport Server to override
> "ZENWSIMPORT" to let old stations to contiue to funtion.
> 4) Once all of the Clients are upgraded start using the NEW C1 and Snapins
> for ZFD7 to create policies and objects using the new ZFD7 features. The
> old ZFD3.2 policies and appps will still work with the new Client so there
> is not rush.
>
>
> <[email protected]> wrote in message
> news:f%VRf.1873$[email protected]..
> > We have a Netware 5.1 network running ZfD 3.2 that spans two locations and
> > comprises two partitions. We want to upgrade to NW 6.5 and ZEN 7.
> >
> > I have just found TID10083888 that says that ZfD 3.2 is not compatible
> with
> > NW 6.5.
> >
> > My question is this:
> >
> > What is the order in which items should be upgraded and to what interim
> > versions on each step? Keep in mind that each upgrade could be separated
> by
> > days or weeks, so the network needs to be functional between each upgrade.
> >
> > Also, does upgrading NW or ZfD at one location affect operations at the
> > other? Should both locations be upgraded synchronously?
> >
> > Clients are Windows 2000 and Citrix.
> >
>
>

Similar Messages

  • Please , i need youre help ! im from Mexico and i dont speak inglish well but ill try explain me... i buy a cs5 students edicion but i lost my paswoord for the instalacion can you helpe me ? how can i recuperade my paswoord

    please , i need youre help ! im from Mexico and i dont speak inglish well but ill try explain me... i buy a cs5 students edicion but i lost my paswoord for the instalacion can you helpe me ? how can i recuperade my paswoord
    Creative Suites

    Find your serial number quickly
    Mylenium

  • HI ALL SINCE TWO DAYS I AM DOWNLOADING VIBER BUT I AM NOT HAVING MY ACCESS CODE AND EVERY TIME I DELETE THE APPLICATION AND DOWNLOADING IT AGAIN BUT ALWAYS THE SAME RESULT PLEASE I NEED YOUR HELP FOR THE ACCESS CODE.MY PHONE NUMBER IS 0022996969896.THANKS

    HI ALL SINCE TWO DAYS I AM DOWNLOADING VIBER BUT I AM NOT HAVING MY ACCESS CODE AND EVERY TIME I DELETE THE APPLICATION AND DOWNLOADING IT AGAIN BUT ALWAYS THE SAME RESULT PLEASE I NEED YOUR HELP FOR THE ACCESS CODE.MY PHONE NUMBER IS 0022996969896.THANKS IN ADVANCE

    try this website this should help you http://helpme.viber.com/index.php?/Knowledgebase/List/Index/1/iphone

  • I need heed help for Handle the JButton

    hi, guys
    I am writing a small program
    It has name and number field.
    It also has the first, privious, next , last and add buttons.
    i want to load the myData.txt file to the name and number field.
    and I want to make the buttons handle the events.
    and when the application is closed, it will save the data into the files.
    I can assign the the add button to save the files, and save the data when it is closed, but I can not make it save more than one record.
    i need ur help to the rest of the buttons, and load the file back to the field.
    andy suggestion would be great!
    Thank !
    here codes
       import javax.swing.*;
       import java.awt.event.*;
       import java.awt.*;
       import javax.swing.event.*;
       import java.io.*;
        public  class buttonAction extends JFrame
          private JLabel nameL;
          private JLabel numberL;               
          private JTextField name;
          private JTextField number;
          private JButton first;
          private JButton prev;
          private JTextField current;
          private JButton next;
          private JButton last;
          private JButton add;
          private JButton exit;
          private final int winw = 410;
          private final int winh = 200;
           private buttonAction()
             super("Wage Calculate");
             setSize(winw, winh);
             setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
             addWindowListener(new Closing());
             setLayout (new BorderLayout());
             loadData();        
             buildPanel();
             buildButtomButtons();
             setVisible(true);
           private void buildPanel()
             nameL = new JLabel("Name:");
             numberL = new JLabel("Number:");
             name = new JTextField(10);
             number = new  JTextField(5);
             JPanel panel =new JPanel();
             panel.setLayout(new GridLayout(2,1));
             panel.add(nameL);
             panel.add(name);
             panel.add(numberL);
             panel.add(number);
             add(panel, BorderLayout.NORTH);
           private void buildButtomButtons()
             first = new JButton("First");
             prev = new JButton("Prev");
             current = new JTextField(5);
             current.setEditable(false);
             next = new JButton("Next");
             last = new JButton("Last");
             add = new JButton("Add");
             exit = new JButton("Exit");
             JPanel button = new JPanel();
             first.addActionListener(new ButtonListener());
             prev.addActionListener(new ButtonListener());
             current.addActionListener(new ButtonListener());
             next.addActionListener(new ButtonListener());
             last.addActionListener(new ButtonListener());
             add.addActionListener(new ButtonListener());
             button.add(first);
             button.add(prev);
             button.add(current);
             button.add(next);
             button.add(last);
             button.add(add);
             add(button, BorderLayout.SOUTH);
            // save the data into the file when the application is close
           public class Closing extends WindowAdapter
              public void windowClosing(WindowEvent e)  
                try {
                   PrintWriter out = new PrintWriter (new FileWriter("myData.txt"));
                   out.println (name.getText());
                   out.println(number.getText());
                   out.close();
                    catch (IOException ee) {
                   // Happens if the file cannot be written to for any reason
                      JOptionPane.showMessageDialog(null, "Could not save the file " + ee.getMessage());
                System.exit(0);
           private void loadData()
             try {
                BufferedReader fileReader = new BufferedReader(new FileReader(new File("myData.txt")));
                String lineRead = fileReader.readLine();
                  // I need help how to load the data
                 catch (FileNotFoundException e)
                   e.printStackTrace();
                 catch (IOException e) {
                   e.printStackTrace();
            //handle the first, previous, next, last, add buttons
           private class ButtonListener implements ActionListener
              public void actionPerformed(ActionEvent e)
                Object button = e.getSource();
                if (button == add)
                   try
                      PrintWriter out = new PrintWriter (new FileWriter("myData.txt"));
                      out.println (name.getText());
                      out.println(number.getText());
                      out.close();
                       catch (IOException ee)
                      // Happens if the file cannot be written to for any reason
                         JOptionPane.showMessageDialog(null, "Could not save the file " + ee.getMessage());
                        //I need help for the first, privious and last buttons
           public static void main(String[] args)
             buttonAction pr = new buttonAction();
       }

    are you trying to load a multi line textfile int a JTextField? If you try to load this in a while loop as you read the file, it will zoom through the file, and you will probably only see the last line of the file (or nothing if the last line is blank) in the jtextfield. Consider using a JTextArea or some other component that can hold multiple lines. Also your file reading method calls look wrong to me. You appear to read a line, then continually check if that one read line is null, and if not do a while loop, that looks to loop forever. Look at the java I/O examples for how to do this right.
    Good luck

  • What does a new non-DE user need? | Help for a Wiki page

    Hey Archers,
    I'm using Arch with the Compiz Standalone Window Manager and I need some help for a project.
    It turns out (who knew) that computers need a lot more to run smoothly than just a desktop and applications. You need network managers, gtk themes and much much more. Now, Desktop Environments such as GNOME and KDE provide a lot of these programs built-in, good for them, but I'm looking to build my system as dependency-free as I can and the big DE's don't really provide that. Especially GNOME just ropes me in whenever I want to use the tiniest piece of it (darn you gnome-keyring).
    So I come to you fora, with a quest for information. I want to compile an overview of essential and useful applications with minimal dependencies that allow a CompizIndy user to build his system freely. And if I get enough information, I want to turn it into its own page for the Wiki so it becomes easier to get started with a birds-eye view of what you need to flesh out your system (not exclusively for CompizIndy btw). So please help me!
    What applications/daemons/tools should a new system install? I'm not asking which ones are the best or worst or your favorites, just which kinds do you need --that aren't covered in the install guide--?
    For example it's advisable to get:
    Panel/dock
    desktop manager
    network manager
    compositing manager
    a tool for managing removable devices (ntfs-3g etc)
    a packer/unpacker
    a screensaver
    power management
    alt-F2 runcommand
    custom keybindings
    a user switch/logout manager
    a volume manager
    etc.
    So what do you recommend? What do you need to get up and going?
    Hoping to hear from you guys and girls,
    Matthias
    PS: if I'm doubling up on anything, please let me know and save me effort and embarassment ^_^
    Last edited by Matsjo (2011-01-28 20:37:26)

    There are many threads on this, although individual ones asking for "the best app to do XXX". You could try searching those. Also Search for the LnF Awards threads. you might find a few ideas there. We also have wiki pages for light-weight applications which might be useful
    Panel/dock  none
    desktop manager none
    network manager netcfg
    compositing manager none or xcompmgr (for basic compositing)
    a tool for managing removable devices (ntfs-3g etc) udiskie or udev rules or devmon
    a packer/unpacker coreutils eg - tar, bzip etc with an alias called "ex" in .aliases
    a screensaver none
    power management ???
    alt-F2 runcommand gmrun
    custom keybindings xbindkeys
    a user switch/logout manager none
    a volume manager see udiskie....
    BTW, if this is for you, then simply install Arch and use a non DE based WM --- eventually you will figure out what you are missing

  • HT201359 Hi I need your help, I am civil engineer and recently I bought an app

    Hi I need your help, I am civil engineer and recently I bought an app call "sewer pipe design" . After I installed it in my iphone I found that developer is cheating people.
    In order to design a sewer pipes we need to know manning coefficient commonly known as roughest. second to design a sewer pipe we don't use minimum tractive force bc is this a parameter for designing open channel on the ground/earth. i f the sewer is a prression with use another principles like loss head and Hassen William formule. So this developer is cheating apple customers.
    I have already complain with apple support but they only asked me to fill another complain I did it, also they told me that asked a refund but  i don find any link for doing this. what can I do??
    <Email Edited By Host>

    You don't say how you contacted them, so I don't know if this is what you used. You can try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via Store > View My Account (Store > View My Apple ID on iTunes 11) and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find that app and use the 'Report a Problem' link and fill in details about the problem (iTunes support should reply within, I think, about 24 hours).
    Some people have had a problem with the 'report a problem' link (it's been taking people to this site on a browser instead of showing a form in iTunes) - if it does that to you then try contacting iTunes support via this page : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption.
    As these are user-to-user forums I've asked the hosts to remove your email address from your post.

  • What is the best External Hard Drive for a Macbook Leopard 10.5.8?  I need more memory for documents, pictures, videos, and music.  Thanks!

    What is the best External Hard Drive for a Macbook Leopard 10.5.8?  I need more memory for documents, pictures, videos, and music.  Thanks!

    Hi, does your MacBook have Firewire, or just USB?
    FW is far faster if you have that.
    Avoid Bus powered ones.
    http://eshop.macsales.com/shop/firewire/1394/USB/EliteAL/eSATA_FW800_FW400_USB
    USB only...
    http://eshop.macsales.com/shop/firewire/usb/eliteclassic

  • Why I need a code for rent a film and where ist the code? (I dont have a card)

    Why I need a code for rent a film and where ist the code? (I dont have a card)

    it's unclear what you mean
    you say you dont have a card which I guess is you don't have a creditcard
    in which case the other option is to pay by a giftcard which include a code which you put in
    because to rent you have to pay otherwise it's not really renting

  • TS2634 Please People I need some help.My iPod is disabled and when I connect it to iTunes it says: Itunes could not connect to the ipod because it is locked with a passcode...

    Please People I need some help.My iPod is disabled and when I connect it to iTunes it says: Itunes could not connect to the ipod because it is locked with a passcode...how can I do it?

    Place the iPod in Recovery mode and then restore.

  • I need some help for an explanation. Loop for 1 minute.

              int minute=1;
              long currentTime=System.currentTimeMillis();          
              long stoppingTime = currentTime + (minute * 60 * 1000);
              while (currentTime<stoppingTime) {
                   // do x;
                   currentTime=System.currentTimeMillis();
              }I want to have the loop to run for 1 minute. It does not seem to work.
    What did I miss? I need some help for an explanation.

    Ran:
    class PrintTimeAsProcess {
      public static void main(String[] argv)  throws Exception {
        int minute=1;
        long currentTime=System.currentTimeMillis();
        long stoppingTime = currentTime + (minute * 15 * 1000);
        System.out.println("START Time: "+currentTime);
        while (currentTime<stoppingTime) {
          currentTime=System.currentTimeMillis();
        System.out.println("END Time: "+currentTime);
    }Got:
    START Time: 1149278202718
    END Time: 1149278217718
    1149278217718
    -1149278202718
    15000

  • Hi i need sum help plzzz, iphone 3gs blackscreen and tryed evrything but wont kick out of dfu mode , much apreicated plz

    hi i need sum help plzzz, iphone 3gs blackscreen and tryed evrything but wont kick out of dfu mode , much apreicated plz, it just happen wen i was restoring  the screen is balck but wen i restore it from itunes it says erorr 1600 and itunes does not reconise the phone , i have tryed eveything bt still no luck , I NEED UR HELP PLZZZ ,its my disabled daughters thank you

    Anyone on this forum can correct me if I am wrong. I am not judging you, but to my knowledge the iTunes error 1600  usually affects products that are  jailbroken. again I am not saying that your iPhone 3GS was jailbroken. my only advise off the top of my head to assist you is to download the recent IOS firmware online. I know it is not the the #1 advised option, but it is the only option you have unless you wish to bring it to the Apple Genius bar and see if they can replace the phone or fix it themselves.

  • Need urgent Help for Kernel upgrade......

    Hi Gurus,
    I have recently upgraded SAP kernel from  Release 6.40 Patch 109 to Release 6.40 Patch 175. My System is SAP ERP Central Component 5.0 and Release is 6.40 and Kernel Stataus is showing below details:
    Kernel release    640
    Compilation       SunOS 5.8 G
    Patch Level       175
    ABAP Load         1521
    CUA load          16
    Mode              opt
    ~
    I have total 8 Application servers. today I have genereated EWA report and in that report, for SAP kernel section it has reported that <b>"You are running different SAP kernel releases on your instances. This situation may lead to severe problems and is not supported by SAP.
    Recommendation: Use only one kernel release for all instances."</b>
    Actaully I have updated kernel in my central instance (/sapmnt/<SID>/exe) and this directory is NFS mount in all the application server. So I am not sure why the SAP EWA is repoting this that you are running difference SAP Kerenl release.
    If this is correct then how to rectify it ? what action I need to take to resolve this ?
    Appreciate your help.
    Thanks & Regards
    Basis

    I will plan to do that as early as possible. Even I
    am going to write to SAP to release that note in
    english for better understanding.
    yes - that note should be translated giving the importance.
    My question is: Am I on HIGH ALERT for this issue ?
    Since it is production server, will it going to
    affect my system in any aspect ??
    No, you will just see a slightly higher usage of "nfsd" when you start the application servers for the first time since they will all copy parts of the kernel locally.
    2nd thing, This is applicable only to NW ? Because I
    have upgraded SAP Kernel to Patch 175 to other R/3
    system having more application server, but I didn't
    get this comment in my EWA report ?
    The comment isn´t related to to usage of sapcpe. The comment means, that you have at least one application server, that uses local binaries with a different patchlevel instead of those on the central instance. I would consider that more critical. Maybe you installed one of the servers later and used a newer installation CD set which creates that new structure for using sapcpe by default... don´t know, just a guess. To check, go to SM51 and select each server and press on "Release Information", you will see which one is affected.
    This week I am planning to upgrade kernel for 4.6D
    release to Patch 2307. Will this be gona issue for
    that also ?
    Kernels lower than 6.10 use a different approach (the "ctrun directory" mentioned in that note) - technically it´s the same. The installation guides for 4.6c should tell you how to set that up.
    Markus

  • Need Help For Zen Xtra - it is as good as a brick right

    My Zen Xtra cannot transfer files anymore
    I have no idea why, but I am close to formatting the thing
    I can still see what files are on the player
    When I browse, The Data Folder takes VERY long to load, but the Music Folder doesn't take AS long
    I have 300+ albums and over 3000 files on it
    Is there any help for my player?
    Thanks
    Message Edited by WuTang36 on <SPAN class=date_text>0-9-2006 <SPAN class=time_text>03:7 AM
    Message Edited by WuTang36 on <SPAN class=date_text>0-9-2006 <SPAN class=time_text>06:2 AM
    Message Edited by WuTang36 on 0-9-2006 06:2 AM

    I had EXACTLY the same problem.... i had to send the zen xtra back... never found out the exact problem, but in my opinion there was a problem with the usb connection on the unit.
    I lost pretty much 50gigs worth of music and files
    The player would connect but browsing took forever and transfers always timed out

  • HT1338 I need some help for my iMac and cannot get it as am out of USA?

    My iMac is slowing down and cannot empty my trash specially for the locked items, and do not know why they are locked essentially?
    Thanks for help.

    Hi, thanks for helping me, most of the files are Music Type, MP4 that I deleted and need to empty the trash from them.
    And I need to delete all.
    Thanks.

  • Need Upgrade CD for Premiere Pro 2.0    Any ideas?

    Hi,
    I followed the upgrade path for several generations and have the box and serial # for 2.0 Upgrade but am missing the disk.
    I need to rebuild an XP edit system that died.  Adobe is out of stock and I can't find it on their FTP server. I did find the 2.0 TryOut, but is not a full program.
    Any help would be appreciated.  Thanks... Kevin

    1 - do not post your email in a message, it WILL be harvested and used by spammers
    2 - if you are upgrading to a later version, you SHOULD only need to enter the PP2 serial number
    If you really need to install PP2, look at... http://www.emsps.com/oldtools/ Or http://www.retrosoftware.com/
    http://forums.adobe.com/message/1636890 warns about buying from eBay

Maybe you are looking for

  • How can I format a field in the form creator?

    How can I format a field in the form creator? It's putting the same text in all the fields within a table. I want each field within the table to have different text. As soon as you click out of the table, all the text is the same. I even changed the

  • PowerShell - Need to output filename and company name

    Hi I've looked into get-ChildItem and Get-Item but can get neither to output the company name which would be handy for me later on. This is to help me just double check dll files which just belong to the company I work for. Ideally, can anyone advise

  • PowerPoint in iPhoto

    How do I import PowerPoint slides into iPhoto? I want to burn a dvd on it to play on other computers so I don't have to transport my MAC on vacation. Thanks. Any help is appreciated.

  • N95 8GB- my tv out wont work. audio will work but ...

    Can any of you tech heads help me. i've placed films on my fone but with the the tv out only get audio. i've tried settinf pal to ntsc and vice versa. any ideas??

  • PRINT WORKBENCH HELP REQUIRED!!

    HI.. I AM DESGINING A METER READING FORM USING THE PRINT WORKBENCH TOOL. MY SPECIFIC PROBLEM IS HOW TO DISPLAY THE DATA THAT IS POPULATED IN THE DDIC STRUCTURE OF THE FORM CLASS. IN THIS CASE THE DDIC STRUCTURE IS ISU_DM_MR_ORDER_S_MR_UNIT AND I WANT