Cifs oes2sp1 linux Default Share names

Why is it the default Volume Share name always show up when I restart cifs.. especially _ADMIN volume. I tried to use iManager to remove them, also use cifsnov -srn from server console. It seems to work until cifs restart and they show up again. Any ideas? Thank you.

Sept 2013, OES11 sp1 : Still Not Fixed.
Also, FYI, if in iManager I remove the default shares where the sharename is the same as the volume name and I add a specific share where the share name is different from the volume name and it accepts that and it presents that just as expected then the CIFS server should NOT be auto adding the shares I have removed. This is especially vexing when using junctions between two volumes on the same server.
Please ONLY share the volumes I have explicitly exported via iManager. NO MORE DEFAULT SHARES! Please and Thank-you.
Ron

Similar Messages

  • Get default printer share name

    Can someone give a code snippet of how to get the default printer share name?
    I'm able to get the printer name with the following but can't get the share name.
        private void listClientPrinters(PrintService[] pServers) {
            for (int i = 0; i < pServers.length; i++) {
                javax.print.PrintService ps = pServers;
    write_message("Client Printer "+i+": "+ps.getName());
    }Thanks,                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    hi,
    Please refer the code elow..u should be able to crack this roblem..
      data: l_usr01 like usr01.
      CALL FUNCTION 'GET_PRINT_PARAM'
        EXPORTING
          I_BNAME = sy-uname
        IMPORTING
          E_USR01 = l_usr01.
      output_options-TDARMOD = '1'.
      output_options-TDDEST = l_usr01-spld.
      output_options-TDRECEIVER = sy-uname.
      output_options-TDCOPIES = '1'.
      output_options-TDIMMED ='X'.
      output_options-TDDELETE = 'X'.
      output_options-TDLIFETIME = 0.
      output_options-tdnoprev = 'X'.
      output_options-tdnoprint = space.
      output_options-tddelete = 'X'.
    Please, assign points, if u have found it useful..
    Thanks,
    Nivin

  • WRT610N Only Default share is Visible

    Hi,
    I'm having an issue with my WRT610N v2 router. I've connected a USB HDD that has been correctly recognized.
    I've have configured sharing settings but only the Default share is visible from the network. I've tested it from Ubuntu and Windows 7 machines with same results.  I will appreciate any help to solve this.
    Shared Folders Summary
    Partition
    Share Folder
    Groups with Access
    Default
    WD15
    /WD15
    admin(r & w)
    HDD
    WD15
    /WD15
    admin(r & w), linux(r & w)
    From linux terminal l I typed the following commands:
    findsmb
                                    *=DMB
                                    +=LMB
    IP ADDR         NETBIOS NAME     WORKGROUP/OS/VERSION
    192.168.2.1     WRT610N        [MSHOME] [Unix] [Samba 3.0.25c]
    192.168.2.100   LINUX-DESKTOP+[MSHOME] [Unix] [Samba 3.4.7]
    smbclient -L WRT610N
    Domain=[MSHOME] OS=[Unix] Server=[Samba 3.0.25c]
        Sharename       Type      Comment
        Default         Disk      
        IPC$            IPC       IPC Service ("")
    Domain=[MSHOME] OS=[Unix] Server=[Samba 3.0.25c]
        Server               Comment
        WRT610N              
        Workgroup            Master
        MSHOME               

    I think only the default folder is mapped on the router that is reason you are not able to access the other folders.
    To access the other folder as well open the setup page of the router go Storage Tab > Click on Create Share new window will pop up on the screen wherein you will find the Public or Default, So below you need to click on "Return to Upper Folder". Once you click on it the Current Folder will be "Root"(/) then give the Display Name.
    Now add Admin in Group with Access then click on save settings.
    Now you need to map the drive on you computer. Once you will map the drive you will be able see all the folders.

  • How to set the default file name for upload

    Hi All,
    I have the following BSP app for a file upload of a csv file. I want the page when displayed show the default file name to be loaded as c:\db1\currentPM.csv
    What changes do I need to make to get the default file name in the BSP app.
    Thanks
    Karen
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content id               = "content"
                   design           = "classicdesign2002design2003"
                   controlRendering = "sap"
                   rtlAutoSwitch    = "true" >
      <htmlb:page title="File Upload " >
        <htmlb:form method       = "post"
                    encodingType = "multipart/form-data">
              <htmlb:textView text   = "File:"
                              design = "STANDARD" />
              <htmlb:fileUpload id          = "uploadID"
                                onUpload    = "UploadFile"
                                upload_text ="Upload"/>
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    On Input Processing
    event handler for checking and processing user input and
    for defining navigation
    DATA: EVENT TYPE REF TO IF_HTMLB_DATA,
          DATA TYPE REF TO CL_HTMLB_FILEUPLOAD,
          LV_OUTPUT_LENGTH TYPE I,
          LV_TEXT_BUFFER TYPE STRING,
          FILE_NAME TYPE STRING,
          FILE_PATH TYPE STRING ,
          INTERN TYPE TABLE OF  ZALSMEX_TABLINE.
    DATA: LT_BINARY_TAB TYPE TABLE OF SDOKCNTBIN .
    TYPES: BEGIN OF TY_TAB,
           FIELD1(2) TYPE C,
           FIELD2(2) TYPE C,
           FIELD3(2) TYPE C,
           FIELD4(2) TYPE C,
           FIELD5(2) TYPE C,
           END OF TY_TAB.
    DATA:  WA_TAB TYPE TY_TAB,
           IT_TAB TYPE TABLE OF TY_TAB.
    TYPES: BEGIN OF TY_LINE,
              LINE(255) TYPE C,
           END OF TY_LINE.
    DATA:  WA_LINE TYPE TY_LINE,
           IT_LINE TYPE TABLE OF TY_LINE.
    EVENT = CL_HTMLB_MANAGER=>GET_EVENT_EX( REQUEST ).
    IF EVENT IS NOT INITIAL AND EVENT->EVENT_NAME = HTMLB_EVENTS=>FILEUPLOAD.
      DATA ?= CL_HTMLB_MANAGER=>GET_DATA( REQUEST = RUNTIME->SERVER->REQUEST NAME = 'fileUpload' ID = 'uploadID' ).
      FILE_NAME = DATA->FILE_NAME.
      FILE_PATH = FILE_NAME.
      IF DATA IS NOT INITIAL.
        CALL FUNCTION'SCMS_XSTRING_TO_BINARY'
         EXPORTING BUFFER = DATA->FILE_CONTENT
         IMPORTING OUTPUT_LENGTH = LV_OUTPUT_LENGTH
         TABLES BINARY_TAB = LT_BINARY_TAB .
        CALL FUNCTION'SCMS_BINARY_TO_STRING'
        EXPORTING INPUT_LENGTH = LV_OUTPUT_LENGTH
         IMPORTING TEXT_BUFFER = LV_TEXT_BUFFER
         TABLES
         BINARY_TAB = LT_BINARY_TAB.
        IF SY-SUBRC = 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        SPLIT LV_TEXT_BUFFER AT CL_ABAP_CHAR_UTILITIES=>CR_LF INTO TABLE IT_LINE.
        IF SY-SUBRC = 0.
          LOOP AT IT_LINE INTO WA_LINE.
           SPLIT WA_LINE AT CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB
            split wa_line at ','
            INTO WA_TAB-FIELD1 WA_TAB-FIELD2 WA_TAB-FIELD3 WA_TAB-FIELD4 WA_TAB-FIELD5.
            append wa_tab to it_tab.
          ENDLOOP.
        ENDIF.
      ENDIF.
    ENDIF.

    Also, I missed another point.
    In the folder c:\dbdata I have a number of CSV files on the user frontend. I would like the BSP application to get the list of files in the folder and process them one after the other. How can I get the list of files on the folder in the user PC and how to process them one after the other.
    I want the form to display only the default folder and once I press on upload it must process all files and display the status of processing on the same page.
    Please kindly share ideas how I can implement this app.
    Thanks
    Karen

  • Network share name keeps changing

    I have setup my eMac to have the network share name eMac but it keeps changing into +eMac (2)+ does anyone know why?

    well I do, but a short while later.
    or some weeks or even month later, I can do it again.
    this is a problem because I need to connect to it from my server.
    the server is a Dell PowerEdge 1650 (I know, old, but it was cheap and it does the trick) which is running Linux Ubuntu Server 9.10 "Karmic Koala", since it's a server I did not install a DE(desktop environment) so I need to use the bash or shell (depending on what I do, since it has both)
    how I connect it like this (on the sever):
    +mount -t nfs "emac.local:/dev/macintosh HD" /storage/nfs/emac/+
    the problem here: I use a DHCP, with DHCP reservation.
    since I use DHCP reservation the IP should not change.
    but the DHCP reservation doesn't really work correctly,
    because of this, if my mac is offline (A.K.A off, I never disconnect it), the IP is in the pool, and thus can be assigned to a other computer.
    since the IP may change depending on if it is on at a given time.
    I need a way to always successfully identify my emac.
    for this I use the network name.
    and now it changes too!
    which means that in order to find it I need to know if it still has the same network name, or what it's IP is.
    I can find the IP from a web browser since it's my router who is my DHCP.
    but the server doesn't have one.
    so I'd have to use a other computer, since the router doesn't allow SSH/TELNET connections.

  • Default the Name of the Adobe Form while saving

    Hi,
    I am calling an Adobe Form from Webdynpro.  While saving the form i need to default the name of the Form.  Can anyone help me to solve this issue.
    Thanks & Regards.

    Hi Manikandan
    I got a requirement as exactly you have posted, default the PDF filename while saving it (In Adobe forms).
    If you have any solution for it, kindly share it with me.
    Thanks & Regards,
    Rajesh P

  • Public folders share name

    I have been messing around with trying to figure out why my iMac and Macbook won't see my Windows Vista machine and why the vista machine will see the iMac but not the Macbook. In the process I removed the public folder shares for the two user accounts I have on the iMac. Now when I tried to re-add them they go in fine but when I look at the share names from my Macbook its Public and Public-1 How can I get them back to be Username's Public Folder?

    G'day Spectre,
    I hope you are up for some command line action to fix this up!
    These names are managed by directory services, and you will need to use a dscl session to correct them. I recommend a thorough back up of your system before doing this! I have assumed that your shortname is spectre and your long name is Spectre... just change it as needed in the commands.
    Steps:
    1. Open Terminal from an administrator account
    2. Enter:
    sudo dscl .
    Do not miss the "dot" at the end, or the next command won't work.
    3. You will be prompted for your administrator password. Enter it and press return.
    4. At the new command prompt ">", enter
    cd /SharePoints
    list
    5. You will probably see something like "Public" and "Public-1". Your command prompt will now be "/SharePoints>"
    6. Enter
    cd Public
    read
    7. You will see a detailed listing with something like:
    dsAttrTypeNative:afp_guestaccess: 1
    *dsAttrTypeNative:afp_name: Public*
    dsAttrTypeNative:afp_shared: 1
    dsAttrTypeNative:directory_path: /Users/spectre/Public
    *dsAttrTypeNative:ftp_name: Public*
    dsAttrTypeNative:sharepointgroupid: (long hex string)
    dsAttrTypeNative:smb_createmask: 644
    dsAttrTypeNative:smb_directorymask: 755
    dsAttrTypeNative:smb_guestaccess: 1
    *dsAttrTypeNative:smb_name: Public*
    dsAttrTypeNative:smb_shared: 1
    AppleMetaNodeLocation: /Local/Default
    *RecordName: Public*
    RecordType: dsRecTypeStandard:SharePoints
    Take note of the bold items above (afp_name, ftp_name, smb_name, RecordName).
    8. Enter:
    create . afp_name Spectre\'s\ Public\ Folder
    create . ftp_name Spectre\'s\ Public\ Folder
    create . smb_name Spectre\'s\ Public\ Folder
    change . RecordName Public Spectre\'s\ Public\ Folder
    read
    Note the backslashes (\) which are essential to get the command to work correctly.
    9. You should now see a listing with all of the "Public" names replaced by "Spectre's Public Folder". Obviously you should substitute the appropriate "long name" for "Spectre".
    10. Enter:
    cd /SharePoints
    list
    11. You should now see "Spectre's Public Folder" and "Public-1".
    12. Repeat steps 6 to 10 with Public-1
    13. When you have finished, exit dscl by entering:
    quit
    14. You should now see the proper folder name from AFP, SMB or FTP clients....
    Cheers,
    Rodney
    p.s. Credit to Axel Luttgens on nabble.com - which is where I found the details of this. I have experimented with it on my own machine, and confirmed that it works.

  • Sender Mail Adapter - default interface name

    Hi,
    I need to receive through one e-mail sender channel tree different kind of messages.
    In sender mail adapter I specify ecept other parameters "Default Interface Name". When I send a message with a same as defined in an interface the message is processed correctly.
    But when I send a different kind of message then I get an error : "Receiver could not be determined".
    Is any way around how through one sender e-mail adapter receive a different kinds of messages ?
    Thanks for any help,
    Marian

    Hello Marzian,
    have you find a solution for this problem?
    We're facing the same issue.
    thanks,
    -Peter Ha

  • Can i set a default file name with path when using IOpenFileDialog?

    At present, if i use
    IDFile xmlDataFile("C:\\a.txt");
    openFileDialog->DoDialog(&xmlDataFile, resultFiles, kFalse, &title);
    It use "C:\" as its default folder, but the file name box is empty, what i want is to show "a.txt" as its default file name.
    It looks like there is no such api to set a default in  IOpenFileDialog.
    Am i right?

    At present, if i use
    IDFile xmlDataFile("C:\\a.txt");
    openFileDialog->DoDialog(&xmlDataFile, resultFiles, kFalse, &title);
    It use "C:\" as its default folder, but the file name box is empty, what i want is to show "a.txt" as its default file name.
    It looks like there is no such api to set a default in  IOpenFileDialog.
    Am i right?

  • Default event names in iCal?

    Is it possible in iCal to set default event name per calendar, so that when I put in my work schedule each event is titled "work" without me having to type it in each time?

    No (unless you use Automator), however, you could create an additional calendar, one that would represent your work schedule.
    You could also use the (32 year old) Copy-Paste feature.
    If you really have big schedule, you should consider making an automator workflow which would create events with a default name
    Cheers.

  • Windows storage server 2012 share not connecting by share name but connecting thru IP address from windows XP machines

    We have a windows storage server 2012 (HP storage server) in our domain. All of sudden We had a issue, connecting the server shares using the share name only from XP machines, but it is connecting through IP address with a delayed response. We are getting
    the below error message from all the windows XP SP2 machines in our domain.
    "\\<share name> is not accessible. You might not have permission to use this network resource. Contact the administrator of this server to find out if you have a access permissions.
    Login Failure: The target account name is incorrect."
    But it is connecting while we are trying from windows 7 machines.  Also the other server shares (Windows 2003 server) are connecting without any issues using the share name. In addition to this we gave everyone permission for this share. And it worked
    well before but not now. Could you please suggest any solution for this complex issue?
    Thanks,
    UdayaKumar S

    Hi,
    We are getting the below critical alert mail often from our storage server. This could be the problem? 
    vent from Blade NODE01.*****.com, In Enclosure: EM-E83935ED70F6, Network Interface Lost Connectivity.
    Description: "A network interface has failed. An Ethernet adapter's status changed from OK to Error, or an Ethernet team's status changed to Error from another state."
    Source: CIM Indication from CSP Provider
    Date: 02-06-2014 Time: 18:52:26
    Blade: NODE01.****.com
    NetworkAddresses:
    Severity is Critical
    Recommended Actions: Check the network cables, switches, and hubs for the cause of the failure.
    Note: For More information please refer the Windows System Logs in the Event Viewer

  • What is the default user name and password for oracle databse 10g

    Hi: gurus, I just recently installed the oracle 10g personal edition and trying to log on to the enterprise manger, but can't figure it out the user name and password, can some one help me and tell me what is the default user name and password to logon to the oracle instance. BTW during the installation I choose two passowrds one for the schema and one for the global database orcl. I wonder will I be using one of these passwords. Still I don't have any clue for the "User Name".
    thanks

    system/manager and sys/change_on_install are still valid default passwords when database is manually created. If DBCA was used, passwords will be those defined at creation time inside DBCA.
    In case passwords have been forgotten, those can be reset:
    From an OS commnad prompt, set ORACLE_SID, ORACLE_HOME and PATH environment variables, just to make sure you are pointing to the right Oracle Home installation, and issue:
    OS> sqlplus / as sysdba
    SQL> alter user sys identified by yourNewSysPassword;
    SQL> alter user system identified by yourNewSystemPassword;
    And you're done with it.
    HR Madrid

  • How to set selected file in FileChooser showSaveDialog to default file name

    Hi,
    How do I set selected file in JavaFX 2.0 FileChooser showSaveDialog, so I can prompt the user with a suggested default file name?
    I am converting a Java Swing application I wrote a few years ago to JavaFX 2.0.
    In the Swing application, I use setSelectedFile() as follows:
    JFileChooser jFileChooser = new JFileChooser();
    jFileChooser.setSelectedFile(new File(backupfile));
    jFileChooser.setCurrentDirectory(new File(outputDirectory));
    FileFilter filter = new FileNameExtensionFilter("Comma Delimited (*.csv)", "csv");
    jFileChooser.addChoosableFileFilter(filter);
    jFileChooser.setFileFilter(filter);
    filter = new FileNameExtensionFilter("XML Document (*.xml)", "xml");
    jFileChooser.addChoosableFileFilter(filter);
    jFileChooser.setAcceptAllFileFilterUsed(false);
    jFileChooser.setDialogTitle("Export File");
    int returnVal = jFileChooser.showDialog(jFrame, "Export");
    This would show a file chooser with the file name text field pre-populated with a default backup file name.
    I can't find an equivalent in JavaFX.
    Also, in the Swing application, I was able to determine which extension filter was selected at run time using getFileFilter().getDescription() as follows:
    String extension = jFileChooser.getFileFilter().getDescription();
    if (extension.equals("XML Document (*.xml)")) { ...
    I can't find an equivalent in JavaFX.
    Thanks,
    Barry

    You can use the open sequence file method on the application manager (then you only need to wire the file path)
    Rodéric L
    Certified LabVIEW Architect

  • Need help adding a default file name in a file chooser of save dialog type

    I need to create a file chooser with save dialog type, how can I add a highlighted default file name into the File Name textfield? As in Microsoft Word, when you want to save a document, a default file name Doc1.doc will appear in the File name text field of the file chooser even when you change to other directories.

    For JRE 1.4.0 you can use this fix:
    public class FileChooserFix implements PropertyChangeListener {
      private String fileName;
       * @see PropertyChangeListener
      public void propertyChange(PropertyChangeEvent ev) {
        JFileChooser chooser = (JFileChooser)ev.getSource();
        if (JFileChooser.FILES_ONLY == chooser.getFileSelectionMode()) {
          if (JFileChooser.SELECTED_FILE_CHANGED_PROPERTY.equals(ev.getPropertyName())) {
            File selectedFile = (File)ev.getNewValue();
            if (selectedFile != null) {
              // remember fileName of selected file
              fileName = selectedFile.getName();
          if (fileName != null &&
              JFileChooser.DIRECTORY_CHANGED_PROPERTY.equals(ev.getPropertyName())) {
            // reset selected file
            File directory = (File)ev.getNewValue();
            chooser.setSelectedFile(new File(directory, fileName));
       * Convenience method to create a fixed file chooser.
       * @return      fixed file chooser
      public static JFileChooser create() {
        JFileChooser chooser = new JFileChooser();
        chooser.addPropertyChangeListener(new FileChooserFix());
        return chooser;

  • AdobePDFViewer.plugin And Default File Name When Saving

    When I grab a PDF document from a web page, it opens in a Safari Window just fine, as expected. I get the Adobe Plug-in Tool Bar as expected. So now I want to File:Save As the document that I have grabbed and am now looking at in my Safari window. The File:Save As dialog opens and the document title always defaults to 'downloadDocument' instead of the actual name of the file that I have grabbed, even if the html has passed the true file name to the browser and plug in. This means I have to retype the name of the document before I click OK. What a pain......
    I cannot find a preference or other setting that would be controlling this. I've looked through the Safari Prefs and the Adobe Prefs
    I should note that I have Acrobat Pro 9.0.0 installed, and I'm running Safari 3.2.1 (5525.27.1) on an MBP 2.5GHz C2D with 4GB of RAM. OS X v10.5.6 totally current.
    How do I get the default file name in the File:Save As dialog to be the name of the file I have grabbed?

    Well, that results in the correct document name appearing in the Save As dialog.
    However, it also means all the Adobe tools are gone.
    And more importantly, it means that the in-document bookmarks are not available for use. The bookmarks are critical in our application. We work with very long documents (big insurance policies) that have many sections and hence they are all bookmarked so that we can move from section to section easily and find the specific sections, pages, endorsements, etc. that we need.
    So, it appears my next step is to "visit" Adobe and find out why they don't play nice??????

Maybe you are looking for