LOGINW32 command line syntax

We have Netware 6.5 SP8.
What is the command line syntax for using LOGINW32 when our server context has a period in it? From what I have read, a period is what distinguishes the user name, context and tree. So having a period in our context name causes problems....
Thanks!

On Fri, 27 Sep 2013 11:16:03 +0000, ncharleyhog wrote:
> We have Netware 6.5 SP8.
>
> What is the command line syntax for using LOGINW32 when our server
> context has a period in it?
IIRC, you have to escape it with a backslash, *plus* there's a Client32
option for allowing periods (dots) in the username that you may need to
enable.
David Gersic dgersic_@_niu.edu
Knowledge Partner http://forums.netiq.com
Please post questions in the forums. No support provided via email.

Similar Messages

  • I am using iplanet messaging 5.2. I want to send mail using command line. Anyone knows exact command line syntax.

    I am using iplanet messaging 5.2. I want to send mail using command line. Anyone knows exact command line syntax.
    Thanks
    -Vasu

    #telnet 0 25
    mail from: user1 #email source
    rcpt to: [email protected] #email destination
    data #begin email content
    Subject: Hi, This is a test mail #optional subject
    Hi, Please don't pay attention to this email, just a test
    . #end email content
    quit #Quit SMTP
    #

  • Import/Export tool Command line syntax for R2

    Would anyone please advise the syntax of command line import/export tool for XIR2?
    Read this post below for importing from a biar file but not sure how to export from BO into a biar file.
    How to log BIAR export/import from command line
    We're in fact trying to migrate from R2 into R3. The import wizard provided by BO doesn't work well with favorites and inboxes migration due to the large volume of data we need to migrate, hence looking for alternatives.
    Any advice around this line would be much appreciated.
    Thanks in advance.
    GM

    Denis,
    Thanks for your reply. This at least saved my effort to explore further.
    Would you offer any advice for migrating large volume of personal folders from R2 into R3?
    We're integrating with AD, so everytime listing users for selection taking ages and often times out.
    Even if we managed to export the biar file for a group of users, exporting them into R3 fails quite often as well.
    The whole process is simply very unpredictable and unreliable.
    Thanks.
    GM
    Edited by: Xu Guoming on Apr 21, 2009 4:13 PM

  • How different is UDB v8 vs UDB v9 in terms of command line syntax?

    I have the redbook for V8.  All syntax is still the same at V9?   Thanks!

    Hello Ashley,
    besides commands for new features or enhancements of existing commands, the syntax should be the same. Especially regarding the SQL syntax. Anyway there are a lot of features that have been introduced since DB2 9 started. Hence I would recommend to get familiar with them.
    Regards,
    Marcel

  • R25run command line syntax

    Hi,
    This is my first time working with reports. I can't seem to run my report from the command line. I have reports 25 installed.
    I can run r25runm, motif, and it prints to printer or to screen fine.
    But when I used r25run, no motif, I can't get it to run. I just pops up a character mode interface prompting me for userid and such, even though I had them in the command line.
    Also, I can't get out of the character interface except by killing the session completely.
    Thanks for any help,
    -Bob

    Forgot to mention I'm running against an old legacy database, 7.3.3.
    Thanks

  • Confused about command line syntax

    Why does (at the command prompt)
    java com.sisconet.mpeapi.MpeApiwork properly, and
    java -D . -classpath . com.sisconet.mpeapi.MpeApireturn the error:
    Exception in thread "main" java.lang.NoClassDefFoundError: /I would think they would basically be equivalent, in fact, I thought I needed "-classpath ." to make it work. There is almost nothing in MpeApi.java, just a test file with some println statements.
    Thanks!

    java -D . -classpath . com.sisconet.mpeapi.MpeApiThis means: run the class called "." and pass it the parameters "-classpath . com.sisconet.mpeapi.MpeApi"Since there is no class called "." you get a NoClassDefFoundError.
    What is the "-D" supposed to do?

  • Problems with in/out points when submitting jobs via Terminal/command-line

    I've writting a GUI based script which allows a user to select a source Quicktime file, and will encode that file to multiple formats, and trims each destination based on specific timecode in/out points. However, I'm having problems getting the Compressor command-line interface to honor the in/out timecodes that I've explicitly set for multiple jobs within a single commandline.
    In other words, if I want to encode a source Quicktime between 01:00:00:00 and 01:00:29:23 with just ONE setting/destination, then the following commandline works:
    /Applications/Final\ Cut\ Studio/Compressor.app/Contents/MacOS/Compressor -clustername MHM -batchname CLI_BATCH -jobpath /Volumes/mel/temp/20120329/TEST_SRC.mov  -settingpath /Volumes/common/settings/compressor/M9_Slave/_Local_/OTWC.setting -destinationpath /Volumes/mel/temp/20120329/TEST1234_Testing30_OTWC.mov -in 01000000 -out 01002923
    But if I try to append multiple settings/destinations to the commandline, Compressor will only honor the -in/-out arguments which appear in the LAST -jobpath instance in the commandline.
    For example, the following commandline will properly encode the file to multiple destination files, using the appropriate .settings file, but it ignores the -in/-out points that were set for any -jobpath instance that appears before the last -jobpath instance (in other words, every file is output using 00:59:57:00/01:00:30:01 as the in/out points, instead of having the "*_OTWC.mov" file output using 01:00:00:00 as the in point)
    /Applications/Final\ Cut\ Studio/Compressor.app/Contents/MacOS/Compressor -clustername MHM -batchname CLI_BATCH -jobpath /Volumes/mel/temp/20120329/TEST_SRC.mov  -settingpath /Volumes/common/settings/compressor/M9_Slave/_Local_/OTWC.setting -destinationpath /Volumes/mel/temp/20120329/TEST1234_Testing30_OTWC.mov -in 01000000 -out 01002923 -jobpath /Volumes/mel/temp/20120329/TEST_SRC.mov -settingpath /Volumes/common/settings/compressor/M9_Slave/_Local_/HNN-HD.setting -destinationpath /Volumes/mel/temp/20120329/TEST1234_Testing30_HNN-HD.mov -in 00595700 -out 01003001
    It's wierd that everything else about this command-line syntax works as expected (and as explicitly stated in the Compressor -help output, which says "when submitting individual source files. (The) Following parameters are repeated to enter multiple job targets in a batch"), except for the -in/-out points.
    I've even tried quoting the -in/-out arguments using colons (e.g., -in "01:00:00;00") , but this doesnt appear to change the behavior.
    Is this a bug, or am I missing something here?

    I've writting a GUI based script which allows a user to select a source Quicktime file, and will encode that file to multiple formats, and trims each destination based on specific timecode in/out points. However, I'm having problems getting the Compressor command-line interface to honor the in/out timecodes that I've explicitly set for multiple jobs within a single commandline.
    In other words, if I want to encode a source Quicktime between 01:00:00:00 and 01:00:29:23 with just ONE setting/destination, then the following commandline works:
    /Applications/Final\ Cut\ Studio/Compressor.app/Contents/MacOS/Compressor -clustername MHM -batchname CLI_BATCH -jobpath /Volumes/mel/temp/20120329/TEST_SRC.mov  -settingpath /Volumes/common/settings/compressor/M9_Slave/_Local_/OTWC.setting -destinationpath /Volumes/mel/temp/20120329/TEST1234_Testing30_OTWC.mov -in 01000000 -out 01002923
    But if I try to append multiple settings/destinations to the commandline, Compressor will only honor the -in/-out arguments which appear in the LAST -jobpath instance in the commandline.
    For example, the following commandline will properly encode the file to multiple destination files, using the appropriate .settings file, but it ignores the -in/-out points that were set for any -jobpath instance that appears before the last -jobpath instance (in other words, every file is output using 00:59:57:00/01:00:30:01 as the in/out points, instead of having the "*_OTWC.mov" file output using 01:00:00:00 as the in point)
    /Applications/Final\ Cut\ Studio/Compressor.app/Contents/MacOS/Compressor -clustername MHM -batchname CLI_BATCH -jobpath /Volumes/mel/temp/20120329/TEST_SRC.mov  -settingpath /Volumes/common/settings/compressor/M9_Slave/_Local_/OTWC.setting -destinationpath /Volumes/mel/temp/20120329/TEST1234_Testing30_OTWC.mov -in 01000000 -out 01002923 -jobpath /Volumes/mel/temp/20120329/TEST_SRC.mov -settingpath /Volumes/common/settings/compressor/M9_Slave/_Local_/HNN-HD.setting -destinationpath /Volumes/mel/temp/20120329/TEST1234_Testing30_HNN-HD.mov -in 00595700 -out 01003001
    It's wierd that everything else about this command-line syntax works as expected (and as explicitly stated in the Compressor -help output, which says "when submitting individual source files. (The) Following parameters are repeated to enter multiple job targets in a batch"), except for the -in/-out points.
    I've even tried quoting the -in/-out arguments using colons (e.g., -in "01:00:00;00") , but this doesnt appear to change the behavior.
    Is this a bug, or am I missing something here?

  • How to give filename at Command Line

    Hi,
    what do I do to make sure that when my user gives a command line argument like "-Dn" and then a filename , the system writes to that file.
    I have everything working properly and can achieve the same thing using a properties file, but do not know what to do in this case. Here is a snippet from my code:
    if(args.equalsIgnoreCase("-Dn")) {
         obj.setLogFileName(); //what to do here???
    The setLogFileName method resides in a class which writes to the disk and is working properly
    Thankx in advance...

    If you are usgin the command line syntax you are describing, like "java MyClass [arguments]" you can just go on traversing the argument list:
    String fileName = args[0];
    However, you can also do this as follows:
    java -Dlogfile=<the path> MyClass [arguments]
    In that case the <the path> string is available as a system property named "logfile", and can be retrieved as this:
    String fileName = System.getProperty( "logfile" );

  • What silent install command line option will Adobe change to next?

    I just discovered that Adobe has, yet again, changed the command line syntax for doing a silent install of the flash player. Apparently it's now just "-install" to do a silent install. Which makes me wonder, what will they call it next version?
    I have a few theories...
    install_flash_player_11.exe -fuggedaboudit
    install_flash_player_11.exe -BeVewwyBewwyQwiet
    install_flash_player_11.exe /@?-[BR-549]

    Hi Yooouk,
    Please use AAMEE 2.1 to create CS5.5 package. Refer the article: http://helpx.adobe.com/creative-suite/kb/manual-deployment-creative-suite-5.html.
    Regards,
    Romit Sinha

  • Command Line Discoverer 10g

    Hello Forum Friends,
    Long time no comms!! Hope all the regulars are keeping well.
    Question, the majority of my experiences with Discoverer have come from version 4, including admin and desktop. I've recently transferred to a new job, and although they have access to 4, some of their customers only have 10g.
    Could someone tell me if the functionallity of uising command line prompts such as;
    DIS51USR.EXE /connect user_name/password@database /apps_user /apps_responsibility "Resp_name"
    /opendb "user_name:workbook_name" /sheet ALL
    is still available in version 10g? I've hit a few stumbling blocks today, and a few errors, i think could be related to the <workbook name> syntax, but have also read on the forums that 10 g (is this also called plus?) does not really have the same functionality when it comes to creating batch files etc?
    Many thanks
    Simon

    Good Morning.
    After reading through a few bits and pieces on the OTN, i've now attempted to use the following command line syntax but to no avail;
    C:\oracle\BIToolsHome_1\bin\dis51usr.exe /connect sysadmin/password@db/apps_user/opendb
    I reveive the error "Failed to Connect to database - ORA - 12154: TNS: could not resolve the connect identifier specified" , okay so this tells me there is an issue with my tns names connection, but upon review this all seems fine, i can connect using the same "DB name" in the syntax above logging in manually, i'm connecting to both standard and applications euls, there are no entries in the GYWID or the Foundation name within tools options conections in Desktop, but this makes no difference to my manual connection, in fact when i do add the standard entries of;
    Gateway User ID: applsyspub/pub
    Foundation Name: apps
    i can not connect manually.
    Any suggestions would be great, many thanks in advance.
    Simon
    Discoverer Desktop Version 10.1.2.55.26

  • Syntax for javac command line in DOS

    Can anyone help me with the proper syntax fror the javac command line? Based on the Java Tutorial, I type the following line while in: C:\Program Files\Java>
    c:\progra~1\java\bin\javac hellow~1.jav
    This returns the following error message:
    javac: invalid flag: hellow~1.jav
    Usage: javac <options> <source files>
    where possible options include:
    -g Generate all debugging info
    -g:none Generate no debugging info
    -g:{lines,vars,source} Generate only some debugging info
    Rest deleted, you get the drift. A long time has passed since I have used DOS, but I thought that options were just that; they were not essential to run a program. If they are necessary, how do you set an option? for example, I have tried the command:
    C:\Program Files\Java>c:\progra~1\java\bin\javac -g hellow~1
    which gives me the following error:
    javac: invalid flag: hellow~1
    I would really appreciate any suggestions anyone out there has for solving this apparently simple & stupid problem.

    Many thanks for these suggestions. I finally got javac to work by putting the file name HelloWorldApp.java inside of quote marks (i.e. "HelloWorldApp.java"). The program compiled the file, & I now have a HelloWorldApp.class file in my java directory. Unfortunately, I am now having trouble with the next tutorial step: getting java to use the file.
    I am discovering there are some very strange things about DOS since the last time I used it. For example, the cd command recognizes either cd c:\progra~1\java OR c:\"Program Files"\java. If the quote marks are omitted a "file not found" error is returned. There seems to be some sort of problem with ways that long file names are dealt with in DOS. I notice that many contribs to this list enter long file names or directories without quote marks; indeed, this is standard format in the java tutorial. This is probably a really dumb question, but is there someway to tell DOS to recognize long names without quote marks?
    Once again, thanks for the help.

  • Is there an iTunes.exe command-line switch/syntax reference list?

    Is there an iTunes.exe command-line switch/syntax reference list?
    I would like iTunes to automatically play my music (selectable/programmable) when I click on the iTunes icon.
    Thank you in advance, ACJ

    Hi,
    Thank you for posting in Windows Server Forum.
    The switch /control indicates that you can take the control of the session which you have taken. Generally when we take remote desktop session we will already get the control of that session but in some case where some administrator will not give full access
    or control of remote session to the user. At that if they know this option they can use to control that remote session.
    Use command line parameters with Remote Desktop Connection
    http://windows.microsoft.com/en-in/windows/command-line-parameters-remote-desktop-connection#1TC=windows-7
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • Sun Web Server 6 to 7 Command Line Migration - Syntax Question

    I have used the GUI-based migration tool in a development environment and it works flawlessly. However, in prod environments I cannot use the GUI as a matter of policy. In reading the 6x to 7x migration guide, the following example is included for command-line based migrations:
    wadm> migrate-server [--user=admin-user] [--passwordfile=*admin-pswd-file*][--host=admin-host][--port=admin-port][--no-ssl][--rcfile=*rcfile*][--echo][--no-prompt][--verbose][--search-collection-copy-path=directory][--log-dir=directory]([--all|[--config=newconfigname[--instance=instancename]) --server-root=path
    In looking at my 6 and 7 web server instances, I cannot locate a password file or the rcfile. Is the password file optional? Do you have to create one or does the server generate this for you? Also, what is the rcfile and where would I find it?
    Thanks!

    As a rule, any option mentioned b/w [ and ] is optional.
    Both password-file and rcfile are provided to avoid any prompts by the CLI.
    For example if the password-file is provided (with the passwords) then the CLI will not prompt for the passwords. If not, the CLI will prompt for passwords.
    In the rcfile you may set variables for path to the password file, user name, standard option values like config name, vs name, etc.
    Find more details in http://blogs.sun.com/yamini/entry/starting_off_with_web_server.
    For more details on the individual commands check out http://docs.sun.com/app/docs/doc/820-2204/6ndqrqrou?l=en&a=view

  • Creating Job definition using Command line.

    Hi all,
    is there a possibility to create a job through command line, with parameter as CMD and source as any batch file and scheduling it on the fly.
    Let me know...
    Always
    sai.

    yes, you can use ldapmodify to add objectclasses. You should modify cn=schema and follow the objectclasses and attributes syntax. You can check config/schema directory in any dsee instance for examples.
    Other way is adding objectclasses editing directly 99user.ldif schema file whereas dsee is down.

  • How to delete more than one workbook from command line

    Hi, I'd like to delete more than one workbook from command line:
    The following syntax, it doesn't work....but I followed the manual instructions:
    dis51adm.exe /connect eul/eul@uatdb /delete /workbook "ALE_TEST_1, ALE_TEST_2" /eul eul /log D:\Ale\delete.log
    where:
    eul/eul@uatdb: is the db’s schema/user where the EUL is installed;
    /delete "ALE_TEST_1, ALE_TEST_2": is the command to delete the workbooks, specified inside the “” (with the relative path)
    /log D:\Ale\delete.log: is the command to write a log’s file named “delete.log” to track the action     
    The log file says:
    22/4/2008 4:00:26 μμ
    dis51adm.exe /connect /delete /workbook ALE_TEST_1, ALE_TEST_2 /eul eul /log D:\Ale\delete.log
    Document ALE_TEST_1, ALE_TEST_2 not found in EUL.
    Internal EUL Error: ObjectNotFound - Can't find EUL element
    There are 0 eul elements to be deleted.
    Completed deleting eul elements.
    22/4/2008 4:00:29 μμ
    Anyone can tell me how is the right syntax ?
    Thanks in advance
    Alex

    Hi Rod
    I was coming to that conclusion myself but wanted to wait until the other avenues had been exhausted first - aka making sure of the workbook names.
    I checked through all of the command line documentation and read nothing which clearly indicated that only one workbook could be processed at a time, other than the fact that the syntax says workbook and not workbooks, which could be a big clue.
    I think you are right though in that it has to be one at a time, which would be a pain.
    Best wishes
    Michael

Maybe you are looking for

  • POPUP FM to get values from a table control?

    I know about the FM POPUP_GET_VALUES to get one or more values from a popup dialog box.  I would like to find a similar FM that allows getting values from a table control or something that allows entry of multiple lines of values.  Is there such a th

  • Native SQL Execution- Dump Table Does Not Exists in DB

    Hi Experts, we have created a table in the Oracle Database DBTAB by logging into oracle directly. Now I need to insert records in this table from ABAP report by using EXEC- ENDEXEC block. But I am getting a dump saying-- "Table doesnot exists in the

  • How to use ADD_METADEF to add a custom metadata field

    Hi All, I am trying to add a custom metadata field to check in profile, and this I want to do using RIDC library through my java program. I have tried the following code, but some how I could not see its getting added to Information Fields and also t

  • Can i plug a data stick into the usb lead used to charge my i pad ?

    I need to transfer my Nikon NX viewer software from from CD  disc to my i pad, i have copied complete software disc data to usb data stick, what is the best way to transfer the data to my i pad. any help would be appreciated.

  • Automatically create batch during return delivery

    Dear SD Gurus, Good Day! Is there any way to make the system to create batch automatically during return delivery?? The requirement is, to get the system to work like MM where batch can be set to be created automatically by movement type. During retu