Re: ZEnworks f. Desktops 4.01 Inventory - Reading Registry?

Dreamsleeper,
that's a feature of ZENworks 6.5 - for ZfD4, you'd have to write your own customer scanner - http://www.novell.com/documentation/...s.html#agx81ss
Shaun Pond

Lahzoh,
It appears that in the past few days you have not received a response to your posting. That concerns us, and has triggered this automated reply.
Has your problem been resolved? If not, you might try one of the following options:
- Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
- Check all of the other support tools and options available at http://support.novell.com in both the "free product support" and "paid product support" drop down boxes.
- You could also try posting your message again. Make sure it is posted in the correct newsgroup. (http://support.novell.com/forums)
If this is a reply to a duplicate posting, please ignore and accept our apologies and rest assured we will issue a stern reprimand to our posting bot.
Good luck!
Your Novell Product Support Forums Team
http://support.novell.com/forums/

Similar Messages

  • Moving ZENworks for Desktops 6.5.2ir1 to new hardware

    Im preparing to move my NetWare 6.5 server with ZENworks for Desktops 6.5.2ir1 to new hardware.
    The recommended way for NetWare is to make use of the Migration Wizard but Im worried about the post tasks, which are mentioned in the documentation. I should reinstall ZENworks as product after the migration and then recover the old configuration. What would be the best way to do so?
    And is the Migration Wizard the best tool to move to new hardware for ZENworks or are there better alternatives?
    Thanks a lot!
    Armand.

    Hello,
    How did you get on with this? I have been thinking about doing something similar for some time now, but have always been nervous of doing so.
    We have PCounter, Printing, SYS/PUBLIC mapping, and ZfD 6.5 running on 1 server, and I would like to just move ZfD to a seperate server.
    Can you point me in the direction of the documentation you speak of for migrating ZfD 6.5 ???
    cheers,
    Originally Posted by voigt-travel
    I�m preparing to move my NetWare 6.5 server with ZENworks for Desktops 6.5.2ir1 to new hardware.
    The recommended way for NetWare is to make use of the Migration Wizard but I�m worried about the post tasks, which are mentioned in the documentation. I should reinstall ZENworks as product after the migration and then recover the old configuration. What would be the best way to do so?
    And is the Migration Wizard the best tool to move to new hardware for ZENworks or are there better alternatives?
    Thanks a lot!
    Armand.

  • Zenworks for Desktops 3.2 Sp3

    I am running Novell SBS 6.0 sp4 that also has the Zenworks for Desktops
    3.2 on it. I updated all of our workstations to Novell Client 4.83 sp3
    and now the application Launcher does not work. According to TID10082221 I
    need to install Sp3 for Zenworks. Unfortunatly I did not do the original
    install of Zenworks and was wondering what should I be aware of and if
    there are any installation do/don'ts?
    Just wondering,
    [email protected]

    > Not that there's anything wrong with SP3, but if you want to get your
    > clients fixed right away, backrev nalntsrv.exe on the client. Use the
    > version that's on the server and that should resolve your problem.
    >
    > <[email protected]> wrote in message
    > news:g4Bgc.2228$[email protected]..
    > > I am running Novell SBS 6.0 sp4 that also has the Zenworks for Desktops
    > > 3.2 on it. I updated all of our workstations to Novell Client 4.83 sp3
    > > and now the application Launcher does not work. According to
    TID10082221 I
    > > need to install Sp3 for Zenworks. Unfortunatly I did not do the
    original
    > > install of Zenworks and was wondering what should I be aware of and if
    > > there are any installation do/don'ts?
    > >
    > > Just wondering,
    > > [email protected]
    >
    >
    Thank you for the information, I will try that. As for the service pack
    update is it easy to do or do I really have to know what I am doing? I am
    winging this Novell stuff so far, but learning a lot as I go along.
    Just wondering,
    [email protected]

  • I just bought a new iMac and am new to the desktop Mac. I read you can get a free upgrade to Mountain Lion if you bought your computer after June 11,2012. Do I have to do something before Mountain Lion is released? If so what?

    I just bought a new iMac and I am new to the Desktop Mac. I read you can get a free upgrade to Mountain Lion if you bought your computer after June 11, 2012. Do I have to do something before Mountain Lion is released? If so What? Thanks

    Just check in with this link when ML is released for instructions on how to claim your upgrade.
    http://www.apple.com/osx/uptodate/

  • Webutil, read registry with defaut entry?

    webutil, read registry not working well?
    Hi,
    I cannot read the default value for an entry in the registry.
    if I read another value, it works fine.
    On metalink, a note was giving an exemple that was doing that... but it doesn't work when I try it....
    Doc ID:      Note:121909.1
    Subject:      How to Open a File with its Associated Program from Forms ?
    Here is my code, the first block works, but the others don't work. Could somebody explain me how do I do to access the default value?
    PROCEDURE P_TEST IS
    lv_valeur_retour1 VARCHAR2(255);
    BEGIN
    BEGIN
    -- this works fine
    lv_valeur_retour1 :=
    CLIENT_WIN_API_ENVIRONMENT.READ_REGISTRY
    ('HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows',
    'Device',
    TRUE);
    message(lv_valeur_retour1);
    pause;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    :F_RETOUR := '10';
    END;
    pause;
    BEGIN
    -- this doesn't work
    lv_valeur_retour1 :=
    CLIENT_WIN_API_ENVIRONMENT.READ_REGISTRY
    ('HKEY_CLASSES_ROOT\' || '.doc',
    NULL,
    TRUE);
    message(lv_valeur_retour1);
    pause;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    :F_RETOUR := '11';
    END;
    pause;
    BEGIN
    -- this doesn't work
    lv_valeur_retour1 :=
    CLIENT_WIN_API_ENVIRONMENT.READ_REGISTRY
    ('HKEY_CLASSES_ROOT\' || '.doc',
    'Default',
    TRUE);
    message(lv_valeur_retour1);
    pause;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    :F_RETOUR := '12';
    END;
    pause;
    BEGIN
    -- this doesn't work
    lv_valeur_retour1 :=
    CLIENT_WIN_API_ENVIRONMENT.READ_REGISTRY
    ('HKEY_CLASSES_ROOT\' || '.doc',
    '(Default)',
    TRUE);
    message(lv_valeur_retour1);
    pause;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    :F_RETOUR := '15';
    END;
    pause;
    BEGIN
    -- this doesn't work
    lv_valeur_retour1 :=
    CLIENT_WIN_API_ENVIRONMENT.READ_REGISTRY
    ('HKEY_CLASSES_ROOT\' || '.doc',
    '0',
    TRUE);
    message(lv_valeur_retour1);
    pause;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    :F_RETOUR := '14';
    END;
    pause;
    BEGIN
    -- this doesn't work
    lv_valeur_retour1 :=
    CLIENT_WIN_API_ENVIRONMENT.READ_REGISTRY
    ('HKEY_CLASSES_ROOT',
    '.doc',
    TRUE);
    message(lv_valeur_retour1);
    pause;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    :F_RETOUR := '13';
    END;
    END;

    I had to customize the webutil.pll to get this to work. I modified the WEBUTIL_C_API.ADD_PARAMETER_WU function so it did not always consume null string parameters. The change follows.
    FUNCTION ADD_PARAMETER_WU (paramList IN ParameterList, parameterType IN PLS_INTEGER,
    inOut IN PLS_INTEGER, str IN VARCHAR2, strmaxlen IN PLS_INTEGER) RETURN ParameterHandle IS
    paramHnd ParameterHandle;
    BEGIN
         IF (str = 'mjpNULLmjp') THEN
                        WebUtil_Core.SetProperty(WebUtil_Core.WUL_PACKAGE,'WUL_PARAM_PROPERTIES', 'B|' -- indicate Bind
              || TO_CHAR(paramList.hnd) || '|'
              || TO_CHAR(parameterType) || '|'
              || TO_CHAR(inOut) || '|'
              || TO_CHAR(strmaxlen) || '|'
              || '',false);
         ELSE
              IF str IS NULL THEN
              WebUtil_Core.SetProperty(WebUtil_Core.WUL_PACKAGE,'WUL_PARAM_PROPERTIES', 'B|' -- indicate Bind
              || TO_CHAR(paramList.hnd) || '|'
              || TO_CHAR(parameterType) || '|'
              || TO_CHAR(inOut) || '|'
              || TO_CHAR(strmaxlen) || '|'
              || '(null)',false);
         ELSE          
              WebUtil_Core.SetProperty(WebUtil_Core.WUL_PACKAGE,'WUL_PARAM_PROPERTIES', 'B|' -- indicate Bind
              || TO_CHAR(paramList.hnd) || '|'
              || TO_CHAR(parameterType) || '|'
              || TO_CHAR(inOut) || '|'
              || TO_CHAR(strmaxlen) || '|'
              || str,false);
         END IF;
         END IF;
         paramHnd.hnd := TO_NUMBER(WebUtil_Core.GetProperty(WebUtil_Core.WUL_PACKAGE,'WUL_ADD_PARAMETER'));
         RETURN paramHnd;
    EXCEPTION
    when WebUtil_Core.BEAN_NOT_REGISTERED then
    WebUtil_Core.Error(15,WebUtil_Core.getImplClass(WebUtil_Core.WUF_PACKAGE));               
    RAISE FORM_TRIGGER_FAILURE;
    when WebUtil_Core.PROPERTY_ERROR then
    RAISE FORM_TRIGGER_FAILURE;
    END ADD_PARAMETER_WU;
    Here is an example call to get the default registry entry:
    reg_val := CLIENT_WIN_API_ENVIRONMENT.READ_REGISTRY('HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\IEXPLORE.EXE','mjpNULLmjp',FALSE);

  • Can't read registry entry AppPath... - My solution

    Good news! For me, there was a simple solution when I got this error message. (Some background: We just upgraded Office to 2007 and RoboHelp 8 from RoboHelp 5.) Today when I tried to open RoboHelp for Word (version 8) for the first time, I received this error message:
    "Can't read registry entry AppPath. RoboHelp may not be installed properly.
      Re-install RoboHelp if you continu to get this message."
    Actually, I didn't need to do anything major to successfully open RoboHelp for Word. The solution seemed to be simply to open RoboHelp for Word BEFORE opening Word. (Apparently, in my original attempt, I already had Word open.) So I rebooted my PC, and opened RoboHelp-for-Word first, and (Yeah!), RoboHelp for Word opened just fine.
    Perhaps this will help someone else.

    This forum is maintained by users of RoboHelp, not by Adobe, so your comments will not be seen by them.
    You say you are dissappointed with the Adobe RoboHelp team but you don't say if you have been to Support and what they suggested.
    I'm not sure what the problem is but I do know you cannot have more than one version of RoboHelp for Word installed on one PC. Maybe that is the cause.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Unable to read registry key for log4net configuration location

     I am getting this error "Unable to read registry key for log4net configuration location." 
    Regards Ravin

    Thanks for reply.
    I m using log4net in Biztalk server 2010. I wrote code in my orchestration  like
    // Create the logger using the ProjectName property value
    from the .btdfproj
    logger = log4net.Ext.Serializable.SLogManager.GetLogger("MyProjectName",
    log4net.helpers.CallersTypeName.Name);
    // Configure the logger by referencing the registry key written
    during the deployment process
    logger.RegistryConfigurator();
    // Set some properties in the PropertiesCollectionEx object
    logProps.Set("InstanceId", MyOrchestration(Microsoft.XLANGs.BaseTypes.InstanceId));
    // Write a debug level entry to Log4Net including the properties
    object
    logger.Debug(logProps, "Received top level request...");
    After successfully Deploying solution. Im getting this error.
    I think problem is with  the " log4net 64bit".
    Regards Ravin

  • Problem Read Registry

    Hi all,
    I try to read registry using Class CL_GUI_FRONTEND_SERVICES Methods REGISTRY_GET_VALUE.
    I would like to read Key:ExcelWorksheet\protocol\StdFileEditing\server.
    I got nothing on the output, I know it's from the computer and not from the user, but can found out the solution. I disable the Windows Firewall, nothing happen.
    Any idea on what can block the reading?
    Thanks

    try calling
    call method cl_gui_cfw=>flush
          exceptions
            cntl_system_error = 1
            cntl_error        = 2
            others            = 3.
    after the registry_get_value method call

  • Read Registry Keys and store it in Inventory DB

    Hallo together,
    I am looking for a program to extract some Registry keys into the ZENworks 7 inventory database.
    I know I need to create a CUSTOM.INI and fill it with values. When I create the CUSTOM.INI by hand I got it to work to store the values in the inventory database.
    But I need a program to read the Registry values and store them in the CUSTOM.ini file with the correct syntax.
    A Script or any other small program would be helpful. I know how I could read the Registry values with REG.exe but I do not know how to store the values in the correct syntax in CUSTOM.ini?
    I found zRegScan but I did not get it to work. I found out that the Program is called by the Inventory process (it appears in the TaskManager for a short time). When I run zRegScan by hand (or with a manual launched ZfDInvScanner.exe) I get the following error windows:
    Title: zRegScan.exe - Common Language Runtime Debugging Services
    Warning: Application has generated an exception that could not be handled. Process id=0x814, Thread id=0xf14
    When I click "Cancel" I receive a 2nd Window:
    Title: zRegScan.exe - No debugger found.
    Warning: Registered JIT debugger is not available. An atempt to launch a JIT debugger with ...
    I tried for several hours to get it operational - with no success.
    The zRegScan.log does not show anything helpful.
    I have WinXP SP2 and SP3 machines and ZfD7ir3a.
    Thanks for your help
    Klaus

    BachmannK,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • All my desktop icons are Adobe Reader icons, can't access related files

    I was trying to open a file this morning, and when a pop-menu asked what application I wanted to choose (from a list) to open it, I clicked on Adobe Reader - just as a guess.   After that,  just about all my desktop icons are Adobe icons, and when I click on them, the pop up menus says I can't access the file.   These icons also show up on my menu of all my MS Office programs like Outlook, Word, Excel,  etc. 
    Tech support at Adobe recommended I use System Restore, but it also is now an Adobe icon, so I can't open it.    If anyone can help reverse this, I'd greatly appreciate it.
    Thanks,
    David

    Hi,
    This also happened to me this morning. Now all my icons are PDF symbols and Reader opens when I try to open any other program. I uninstalled Reader it and it fixed itself but when I reinstalled the program the same issue occurred.
    I wanted to make PDF reader the default application when openning PDF's vs. Distiller, tinkered and broke my computer.
    Any clues on how to bring everything back to normaL?

  • MS Remote Desktop and smart card reader

    I have installed MS Remote Desktop Conn. on my iMac and connected a smart card reader via the USB. Although my reader energizes when the computer is on, the computer doesn't seem to recognize the reader. When I insert a CAC card into the reader and try to log in remotely, I continue to get a "username/password" box instead of the CAC PIN number. Do I need to install some kind of smart card driver or does Apple already have it? I'm at a loss as to how to fix this.

    I was able to get rdesktop 1.6.0 to install on my Mac and I was able to get CAC log-in to work.
    However, the installation is a little tricky. I downloaded rdesktop 1.6.0 from this link:
    <<http://www.rdesktop.org>>
    My instructions for installation:
    1. Make sure Xcode Tools is installed on your computer. It should be on your OS X install disk.
    2. Find out where your X11 libraries are located:
    -From the Finder menu, selct "Go" >> "Go to Folder..."
    -Type (without the quotes) "/usr/X11", and click "Go"
    You should see a bunch of folders. Make sure the "include" and "lib" folders are there. Otherwise you need to find out where the X11 "include" and "lib" folders are located on your computer.
    3. Download rdesktop and place the (unarchived) rdesktop-1.6.0 folder on your Desktop
    4. Open the X11 application (should be in your Utilities folder)
    5. In the X11 window type the following (without the quotes):
    "cd Desktop/rdesktop-1.6.0 && ./configure --enable-smartcard -x-includes=/usr/X11/include -x-libraries=/usr/X11/lib && make && sudo make install"
    4. Hit enter. When prompted, enter your administrator password and hit enter.
    rdesktop should now be installed in the following folder:
    /usr/local/bin
    So, to launch rdesktop with smartcard log in enabled, open the X11 application (or Terminal application) and type the following (without the quotes, and replace your.server.address with the server address):
    "cd /usr/local/bin && ./rdesktop -r scard your.server.address"
    Hit enter and it should launch a new X11 window that will try to access the remote server where you should be prompted for your PIN.
    To explore more options with rdesktop, open X11 and type the following (without quotes):
    "cd /usr/local/bin && ./rdesktop"
    Hit enter and you should get a list of options available to rdesktop.

  • Desktop appears to be Read Only - Permissions issue

    I believe I have an issue with Permissions that has caused me to lose access to the Dock and items on the Desktop. I was having an issue with my external FW Drive and was doing some troubleshooting with it. At one point I restarted the entire system and when it came back up there was a message I had never seen before. It was asking me to hold the power button until it restarted. The message was in several different langauges in the middle of the screen That was a new one to me. I was not able to get past that point
    I decided to try the Disk Utility on the OS X CD. I only had the 10.2 CD and couldn't find my 10.3 I ran the Repair Permissions and it fixed about 10 items. The Disk itself was coming back as OK.
    After a restart, I could move the mouse, but did not have the Dock and could not click on anything on the Desktop. I basically had to get around by using the Recently Used Apps list.
    I think it messed up the permissions somehow and I need to change them back. I was able to get around to enable Root access per the Apple docs. Now I just need to get the permissions correct.
    I updated the Hard Drive and my Desktop to verify that all entries had R+W. I also upsdated my entire user folder (house icon) to give R+W to the Group and Others.
    I'm still not getting access.
    Anyone else seen this?
    Would this have been caused by using the 10.2 CD instead of 10.3?
    Does anyone know where the different Group names are established? For example, one of them is called "Wheel". What does that reference?
    Thanks.
    G4 Digital Audio   Mac OS X (10.3.9)  

    I tried to adjust the permissions a little more and run the Disk Utility, but it didn't help. I went ahead and made the upgrade to 10.4 and that fixed it. I'm not really sure if there would have been another way to fix it, but that was probably the easiest.
    G4 Digital Audio Mac OS X (10.3.9)

  • Need help finding the desktop applc of Adobe Reader for Palm OS

    Either I'm going blind, or Adobe just failed to include a download link for that Adobe Reader desktop application that takes care of converting regular PDF files to PDB files. I
    Here is Adobe Reader for Palm OS page, there you'll find a link to download a Free AR for the Palm OS, which installs a PRC file in your Palm, but there is no mention of its counter part application for the desktop
    Thanks in advance guys,
    JDL
    Post relates to: Tungsten E2

    javierdl wrote:
    Thanks for your replies guys
    WN,  thanks for the suggestion. I had just tried it actually. And it's a great alternative. But after using the other one, I can't help but notice how slow it is in my Palm TX. I think I would prefer to get the benefit of compressing/converting the files to PDBs. But no one seems to know where to get that application. I checked in my TX CD and I didn't find it.
    If your TX installation CD does not "auto-run" and present you with a menu to install additional software (including Adobe Reader for Palm), you can find it on the disc using Windows Explorer at:
    Palm CD > Int_English >  Essential_software > Adobe Reader for Palm
    In that folder is the installation (.exe) file which you run on your desktop.  It installs the desktop app, and the .prc file gets installed to the quick installer during the process.
    FYI...this software is slow and clunky on the handheld.  The conversion process is imperfect, and particularly with files which I have produced myself using Acrobat Distiller (the part of Adobe Acrobat which lets you "print" to the distiller to create a .pdf file from anything),  it sometimes doesn't even work.
    The best .pdf viewer I have used on my handhelds is actually the upgraded version of Documents To Go, which handles native .pdf files pretty well.  No conversion needed, just drop the files into your SD card, or Hotsync with Documents To Go desktop.
    Post relates to: None
    smkranz
    I am a volunteer, and not an HP employee.
    Palm OS ∙ webOS ∙ Android

  • Installing Zenworks 7 desktop management on Windows 2008

    Hello,
    I tried to install Zenworks 7 sp1 Desktop Management on a Windows 2008 server running Edirectory 8.8 sp5, but I got an error message saying that the OS is not suppported.
    Is there anyway to install this on a Windows 2008 server ?
    I accidently posted this thread under "Imaging" as well.

    Ye,
    same answer as in the imaging forum - you need ZCM 10
    Shaun Pond

  • Zenworks 7 Desktop Management on Windows Server 2008

    Hello,
    I tried to install Zenworks 7 sp1 Desktop Management on a Windows 2008 server running Edirectory 8.8 sp5, but I got an error message saying that the OS is not suppported.
    Is there anyway to install this on a Windows 2008 server ?

    Ye,
    you need ZCM 10 for W2K8
    Shaun Pond

Maybe you are looking for

  • Move Database From one location to another in same Server

    Hi, I am using 11 g R2 in OEL 5. I have installed my database inside oracle base /TEST_DB. Here i have oracle home and datafiles directories etc as usual. But i need to move this to /UAT/TEST_DB and run the oracle home and database form there. Is thi

  • Are there ways to interface OBIEE with customer application?

    Our OBIEE version is 10.3.4 on Redhat, OBIEE connect to a Oracle 11.2.0.2 database running on the same box of Redhat as OBIEE. Our application is java based web application using Tomcat, it point to OLTP database of Oracle 11.2.0.2 on an dedicated Re

  • Two datatable in one page

    I have two t:datatable in one jsf page. Both the table are getting displayed but there is no data in the second table. Has anyone faced a similar problem? Any solution to this or am i missing something?

  • I'm trying to set up iCloud on my iphone

    when I go to the settings page in my iphone for icloud, it states that "accound not verified".  It says to check my email address for futher instructions.  Well nothing has been sent to my email, and even if I remove my account from the phone and try

  • Refcursor as an input to procedure in oracle

    Hi All, We have a requirement to use a refcursor as an input to a pl/sql procedure. How to pass a input to parameter which is a refcursor. Please let me know if you have any inputs on this. Thanks Chandana