Samba Configuration Script

Hi.
Because i won´t edit my smb.conf manually, i search the web for a script, doing that for me.
I found a  script  in the Kanotix-Linux wiki. I change it a little bit so it works with Arch Linux.
I hope it will be usefull.
#!/bin/bash
# Sambaconf 3.0 for Kanotix
# by Andreas Weber
# 20.06.2004
# [email protected]
# http://www.it-weber.net/sambaconf
function sudo_wrapper ()
if [ $UID != 0 ]; then
if [ -d /KNOPPIX ]; then
exec sudo "$0" "$@" ||exit 1
else
if [ -n "$DISPLAY" ]; then
if [ -f /usr/bin/kdesu -o -f /usr/kde/3.2/bin/kdesu ]; then
kdesu "$0" "$@" ||exit 1
else
$DIALOG --title "$ProgName" --msgbox "You need to be root to run this Script." 10 35
fi
else
echo -e "nnYou need to be root to run this Script.n"
exit 1
fi
exit 100
fi
fi
function dialog_wrapper ()
XDIALOG_HIGH_DIALOG_COMPAT=1
export XDIALOG_HIGH_DIALOG_COMPAT
LANG=C
export LANG
DIALOG=dialog
[ -n "$DISPLAY" ] && [ -x /usr/bin/Xdialog ] && DIALOG="Xdialog"
function check_smb ()
SMBINST=FALSE
if [ -f /etc/rc.d/samba ]; then
SMBINST=TRUE
STARTSMB="/etc/rc.d/samba start"
STOPSMB="/etc/rc.d/samba stop"
RESTARTSMB="/etc/rc.d/samba restart"
RELOADSMB="/etc/rc.d/samba reload"
fi
if [ "$SMBINST" = "FALSE" ]; then
if [ -f /usr/sbin/smbd ]; then
SMBINST=TRUE
STARTSMB="/usr/sbin/smbd -D;/usr/sbin/nmbd -D"
STOPSMB="killall -HUP smbd 2&>/dev/null;killall -HUP nmbd 2&>/dev/null"
RESTARTSMB="$STOPSMB;$STARTSMB"
RELOADSMB="$STOPSMB;$STARTSMB"
else
$DIALOG --title "ERROR" --msgbox "SAMBA not found.nnMaybe not installed." 20 50
exit 1
fi
fi
function inputbox ()
$DIALOG --stdout --no-cancel --title "$ProgName" --inputbox "n$1nn" 20 "$2"
function passwordbox ()
$DIALOG --stdout --no-cancel --title "$ProgName" --passwordbox "n$1nn" 12 "$2"
function askyn ()
$DIALOG --title "$ProgName" --yesno "n$1n" $2 $3
echo $?
function splash ()
$DIALOG --title "$ProgName" --msgbox "
$ProgNamennAuthor:Andreas [email protected]://www.it-weber.com/smbconfnnn
This Script is experimental. There will be no warranty. Use it at you own Risk!nnnPress OK to continue.nn " 20 50
function check_live ()
if [ -f /cdrom/KNOPPIX/KNOPPIX ]; then
MODE=CDROM
else
MODE=HDD
fi
function get_plugin ()
if [ ! -f "/opt/lib/kde3/ksambakonqiplugin.la" ]; then
#if [ "$MODE" = "CDROM" ]; then
pacman -S ksambaplugin
#echo "Continue without plugin."
#else
#cd /var/cache/apt/archives
#wget - http://www.it-weber.net/smbconf/download/v3.0/ksambaplugin_0.5-1_i386.deb
# if [ ! -f "/var/cache/pacman/pkg/ksambaplugin-0.5b2-1.pkg.tar.gz" ]; then
# $DIALOG --title "$ProgName" --msgbox "ERROR: Download of ksambaplugin failed." 10 50
# exit 1
# else
$DIALOG --title "$ProgName" --msgbox "ksambplugin succsessfully installed"
# fi
fi
function SMB_USER_CREATE ()
if [ "$MODE" = "CDROM" ]; then
SMB_USER=knoppix
WIN_USER=$(inputbox "What is the Windows Username of $SMB_USERnnexample: webera." 50)
if [ ! "$WIN_USER" ]; then
$DIALOG --title "$ProgName" --msgbox "ERROR: Required field is blank." 10 50
S_USER=FAILED
return
fi
SMB_PASS=$(passwordbox "Please type the Password for $SMB_USER:" 50)
if [ ! "$SMB_PASS" ]; then
$DIALOG --title "$ProgName" --msgbox "ERROR: Required field is blank." 10 50
S_USER=FAILED
return
fi
echo "$SMB_USER=$WIN_USER" >> $UMAP
smbpasswd -a $SMB_USER "$SMB_PASS"
$DIALOG --title "$ProgName" --msgbox "$SMB_USER created." 10 50
else
SMB_USER=$(inputbox "Type the Username to create a Samba User:nnexample: webera." 50)
if [ ! "$SMB_USER" ]; then
$DIALOG --title "$ProgName" --msgbox "ERROR: Required field is blank." 10 50
S_USER=FAILED
return
fi
cut -d: -f1 /etc/passwd |grep $SMB_USER
if [ "$?" != "0" ]; then
$DIALOG --title "$
ProgName" --msgbox "$SMB_USER is not a known Linux User.nUser must be also exist as a Linux User." 10 50
S_USER=FAILED
return
fi
WIN_USER=$(inputbox "What is the Windows Username of $SMB_USERnnexample: webera." 50)
if [ ! "$WIN_USER" ]; then
$DIALOG --title "$ProgName" --msgbox "ERROR: Required field is blank." 10 50
S_USER=FAILED
return
fi
SMB_PASS=$(passwordbox "Please type the Password for $SMB_USER:" 50)
if [ ! "$SMB_PASS" ]; then
$DIALOG --title "$ProgName" --msgbox "ERROR: Required field is blank." 10 50
S_USER=FAILED
return
fi
echo "$SMB_USER=$WIN_USER" >> $UMAP
smbpasswd -a $SMB_USER "$SMB_PASS"
$DIALOG --title "$ProgName" --msgbox "$SMB_USER created." 10 50
fi
# create Administrator Account
SMB_PASS=$(passwordbox "Please type the Password for root / Administrator:" 50)
if [ ! "$SMB_PASS" ]; then
$DIALOG --title "$ProgName" --msgbox "ERROR: Required field is blank." 10 50
S_USER=FAILED
return
fi
echo "root=Administrator" >> $UMAP
smbpasswd -a root "$SMB_PASS"
$DIALOG --title "$ProgName" --msgbox "root / Administrator Account created." 10 50
S_USER=OK
function workgroup ()
rm -f $CONF
rm -f $UMAP
rm -f $PMAP
echo
WKS=$(inputbox "Please type the Name of your Workgroup:nnexample: Kanotix-net." 50)
if [ ! "$WKS" ]; then
$DIALOG --title "$ProgName" --msgbox "ERROR: Required field is blank." 10 50
S_WKS=FAILED
return
fi
echo "[global]" > $CONF
echo " workgroup = $WKS" >> $CONF
echo " netbios name = $HOSTNAME" >> $CONF
echo " server string = host %h Version %v for %I" >> $CONF
echo " security = user" >> $CONF
echo " encrypt passwords = yes" >> $CONF
echo " map to guest = Bad User" >> $CONF
echo " username map = $UMAP" >> $CONF
echo " smb passwd file = $PMAP" >> $CONF
echo " socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192" >> $CONF
echo " character set = ISO8859-1" >> $CONF
echo " printcap name = cups" >> $CONF
echo " load printers = yes" >> $CONF
echo " printing = cups" >> $CONF
echo " guest ok = yes" >> $CONF
echo " " >> $CONF
SMB_USER_CREATE
if [ "$S_USER" = "FAILED" ]; then
SMB_USER_CREATE
fi
ASK=$(askyn "Would you like to share the Homedrives?nnThis Shares will only available for the Owner." 10 50)
if [ ! "$ASK" ]; then
exit 1
fi
if [ "$ASK" = "0" ]; then
echo "[homes]" >> $CONF
echo " comment = Home Directories" >> $CONF
echo " writeable = yes" >> $CONF
echo " browseable = no" >> $CONF
echo " dos filetimes = true" >> $CONF
echo " valid users = %S" >> $CONF
echo " read-only = no" >> $CONF
echo " " >> $CONF
fi
ASK=$(askyn "Would you like to share your Printers?" 10 50)
if [ ! "$ASK" ]; then
exit 1
fi
if [ "$ASK" = "0" ]; then
echo "[printers]" >> $CONF
PUSER=$(inputbox "Please type the Userame of the Printer-Administrator:nnexample: Administrator or root." 50)
if [ ! "$PUSER" ]; then
$DIALOG --title "$ProgName" --msgbox "ERROR: Required field is blank." 10 50
S_WKS=FAILED
return
fi
echo " printer admin = $PUSER" >> $CONF
echo " comment = ALL Printers" >> $CONF
echo " browsable = no" >> $CONF
echo " path = /var/tmp" >> $CONF
echo " printable = yes" >> $CONF
ASK=$(askyn "Would you like to restrict the nPrinters for known Users only?nnIf you answer no, all Users will have Access to your Printers." 15 50)
if [ "$ASK" = "0" ]; then
echo " public = no" >> $CONF
else
echo " public = yes" >> $CONF
fi
echo " writable = no" >> $CONF
echo " create mode = 0700" >> $CONF
echo "" >> $CONF
fi
$RESTARTSMB
if [ "$MODE" = "CDROM" ]; then
$DIALOG --title "$ProgName" --msgbox "Basic Configuration written and Samba started." 10 50
else
$DIALOG --title "$ProgName" --msgbox "Basic Configuration written and Samba started.nnTo handle the Shares please use ksambaplugin in kcontrol." 20 50
fi
S_WKS=OK
function smb_killall ()
$STOPSMB
ps -ae |grep smbd
if [ "$?" != "0" ]; then
killall -HUP smbd 2&>/dev/null
killall -HUP nmbd 2&>/dev/null
fi
function diff_config_start ()
/usr/sbin/nmbd -D --configfile=$CONF
/usr/sbin/smbd -D --configfile=$CONF
function smb_restart ()
$RESTARTSMB
# Here start's the Script
# Set ENV
ProgName="Sambaconf 3.0"
CONF=/etc/samba/smb.conf
UMAP=/etc/samba/smbusers
PMAP=/etc/samba/smbpasswd
TMPF=/tmp/smb.tmp
# Start the Function's
dialog_wrapper
sudo_wrapper
splash
check_live
check_smb
get_plugin
workgroup
if [ "$S_WKS" = "FAILED" ]; then
workgroup
else
exit 0
fi
Sorry for this "large" post. but i´ve got no webspace to upload thsi script.

Do you want to mount windows folder in linux and share your files?
Refer this article from my blog
[Mount Windows folder on Linux|http://kamranagayev.wordpress.com/2009/04/06/mount-windows-folder-on-linux/]
Kamran Agayev A. (10g OCP)
http://kamranagayev.wordpress.com
[Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

Similar Messages

  • Samba Configuration

    Hi,
    guys i tried to communicate with oracle installed on RHEL4
    but not successfull
    i am not being able to communicate ...
    i think my samba configuration is causing problem
    can sombody guide me
    thanks.

    Do you want to mount windows folder in linux and share your files?
    Refer this article from my blog
    [Mount Windows folder on Linux|http://kamranagayev.wordpress.com/2009/04/06/mount-windows-folder-on-linux/]
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • Why does unchecking the "use automatic configuration script" box on Internet Explorer 8 fix connectivity errors?

    As long as I have been in the job and we have been using IE as our browser, we have controlled the proxy settings with an automatic configuration file.
    Recently, with IE8 on WinXP and Win7, we have had situations with the user getting various connectivity errors. By unchecking the "use automatic configuration script" box, they start working. But we don't change anything else.
    These error are not consistent from machine to machine.
    We are in a AD Domain environment
    These are the two errors I have documented.
    Error: 5
    Description: The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine.
    Access to resrouce is forbidden by server while attempting to access server at
    http://content.mpl.org/cgi-bin/admin/pwtest.exe?CISOVER=60.
    Please check the permissions to the file on th eserver.
    Two very different problems. Both somehow fixed by unchecking the box.
    The config file itself has not been changed in over a year.
    Can anyone explain why unchecking this box, but not making any other changes to the proxy settings would fix connectivity problems? These are all external sites that need to go through the proxy.
    Thanks.

    Hi,
    You can use the steps in the following thread to disable this option:
    uncheck "use automatic configuration script" in IE LAN settings 
    http://social.technet.microsoft.com/Forums/en-US/winserverGP/thread/05a7c683-075e-435c-8583-da8fd3559cf2
    Or try to
    reset Internet Explorer settings and select use automatic configuration script to see whether it could work.
    Hope this helps.
    Vincent Wang
    TechNet Community Support

  • Use System Proxy Settings - when this is selected in FF v3.6.6, does it adhere to the same local IE proxy setting? We use a pac file configured in "Use automatic configuration script."

    Does anyone know what Firefox looks at locally on the PC when the "Use System Proxy Settings" setting is selected? It appears to be the default setting, recently changed from "No Proxy" of versions past...
    Our company uses a pac file specified in IE under "Use automatic configuration script" - with this new default, does it adhere to the same setting in:
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]

    I may be wrong but I think that the "Use System Proxy Settings" makes sense only on Linux and generally speaking "other OSes". As far as I know there is no generic proxy settings in Windows operating system.
    The one I know is in the registry part of Internet Explorer.
    So in my understanding in Windows, Use System Proxy Settings = No Proxy

  • Trying to use a proxy server automatic configuration script

    I have just started a new course and my university require every machine that connects to use a proxy configuration script and I am having a spot of bother getting it all set up.
    I have managed to get Firefox set up using the script (I was given a URL for the script and was able to get point the firefox settings at it.) Whilst this allows me to browse the web whilst on campus, it does not allow me to sync all my work to my git, svn and backup server, or in other words, anything that requires an internet connection.
    I am currently using Gnome 3, however, if it is easier to use this kind of thing, then I can switch off to another WM.
    If it helps, the URL for the config file is located here:  http://www-config.strath.ac.uk/proxy.config
    Thanks in advance for any help that can be offered.
    Edit: I tried sticking the url into the Proxy configuration URL bit in the Network settings screen, but that either doesn't work, or I don't know what I am doing (In all fairness, one is just as likely as the other)
    Last edited by nimmo (2011-09-02 21:46:21)

    Ah, I hadn't noticed it giving different contents when you grabbed it when off campus...
    I have  a copy that I downloaded yesterday here:
    function FindProxyForURL(url, host) {
    if (
    isInNet(dnsResolve(host),"130.159.0.0","255.255.0.0")
    || isInNet(dnsResolve(host),"10.0.0.0", "255.0.0.0")
    || isPlainHostName(host)
    || dnsDomainIs(host, "localhost")
    || isInNet(dnsResolve(host),"127.0.0.1","255.255.255.255")
    ) return "DIRECT";
    else if (
    shExpMatch(url, "http://www.gownhire.co.uk/*")
    || shExpMatch(url, "http://www.edeandravenscroft.co.uk/*")
    || shExpMatch(url, "http://launch01.strath.youth-unlimited.com/*")
    ) return "PROXY dangermouse.net.strath.ac.uk:8080";
    else if (
    shExpMatch(url, "http://*.facebook.com/*")
    || shExpMatch(url, "https://*.facebook.com/*")
    || shExpMatch(url, "http://*.fbcdn.net/*")
    || shExpMatch(url, "https://*.fbcdn.net/*")
    || shExpMatch(url, "http://*.bebo.com/*")
    || shExpMatch(url, "https://*.bebo.com/*")
    || shExpMatch(url, "http://*/gateway/gateway.dll*")
    || shExpMatch(url, "https://*/gateway/gateway.dll*")
    ) return "PROXY zloty-p.net.strath.ac.uk:8080";
    else return "PROXY tambala-p.net.strath.ac.uk:8080; PROXY kwacha-p.net.strath.ac.uk:8080; PROXY rouble-p.net.strath.ac.uk:8080";
    [rant]
    Looking more closely at the contents of that file, I am starting to be less impressed with the wireless service. At St Andrews I just had to install a certificate and setting up a WPA2-Enterprise profile and that was that, none of this logging into a web portal as if I was in a coffee shop hotspot nonsense.
    [/rant]

  • Need help with configure script for audacious plugin

    Hello. I have written a small plugin for audacious, that uses an Amarok script to retrieve song lyrics and displays them in a window. I'd like to make an AUR package of it, but I don't even know how to write a configure script. I used to compile it with audacious-plugins, but I suppose a package with all audacious plugins plus my own would be sort of a duplicate of the vanilla audacious-plugins.
    Can anyone help me?

    btn1.addEventListener(MouseEvent.CLICK,f1):
    function f1(e:MouseEvent){
    nextFrame();
    btn2.addEventListener(MouseEvent.CLICK,f2):
    function f2(e:MouseEvent){
    prevFrame();

  • How to make system update with "use automatic configuration script" and an URL

    Hello,
    all our laptop using "use automatic configuration script" with an "accelerated_pac_base.pac" prxy setting.
    How can we make system update work with that ?
    And no way for us to by pass this proxy settings with
    Thanks

    I mean there is no general method which is capable of correcting all possible errors found by schema validation.
    For example if the validation says it expected to find an <organization> element or a <company> element but it found a <banana> element, there is no way to determine what repair is necessary.
    Anyway the requirement is fighting against the way things work in the real world. The purpose of validation is just to find out whether a document matches a schema. If it doesn't, then too bad. Send it back to be fixed or replaced. If you are having a problem because you repeatedly get documents which don't quite match your schema, then you need to train the users to produce valid documents or to give them tools which help them do that.

  • VBscript - how to Disable "Use Automatic configuration Script"

    Hi There
    I currently have the below script in a vbs file;
    Const HKEY_CURRENT_USER = &H80000001
    Set objShell = CreateObject("WScript.Shell")
    strPC = objShell.ExpandEnvironmentStrings("%COMPUTERNAME%")
    On Error Resume Next
    Set objReg = GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\default:StdRegProv")
    strKeyPath = "Software\Microsoft\Windows\CurrentVersion\Internet Settings"
    strValueName = "ProxyEnable"
    objReg.GetDWORDValue HKEY_CURRENT_USER,strKeyPath,strValueName,dwValue
    '#==============================================================================
    '# If
    IE Proxy is currently enabled display message and ask user whether it
    '# should
    then be disabled
    '#==============================================================================
    If dwValue = 1 Then
    IEPrompt = MsgBox ("Hello David. Your Proxy is on,  Do you want to turn it off?", vbQuestion+vbYesNo, "Disable IE Proxy")
    If IEPrompt = vbYes Then
    dwValue = 0
    objReg.SetDWORDValue HKEY_CURRENT_USER,strKeyPath,strValueName,dwValue 
    MsgBox "Thank You David, your proxy is now off. Have a nice day" & _
    ".",vbInformation, "Disable IE Proxy"
    ElseIf IEPrompt = vbNo Then
    MsgBox "David, your Proxy is still on " & _
    ".",vbInformation, "Disable IE Proxy"
    End If
    '#==============================================================================
    '# If
    IE Proxy is currently disabled display message and ask user whether it
    '# should
    then be enabled
    '#==============================================================================
    ElseIf dwValue = 0 Then
    IEPrompt = MsgBox ("Hello David. Your Proxy is off,  Do you want to turn it on?", vbQuestion+vbYesNo, "Enable IE Proxy")
    If IEPrompt = vbYes Then
    dwValue = 1
    objReg.SetDWORDValue HKEY_CURRENT_USER,strKeyPath,strValueName,dwValue
    MsgBox "Thank You David, your proxy is now on. Have a wonderful day" & _
    ".",vbInformation, "Enable IE Proxy"
    ElseIf IEPrompt = vbNo Then
    MsgBox "David, your Proxy is still on" & _
    ".",vbInformation, "Enable IE Proxy"
    End If
    End If
    This only turns off the proxy server in IE/Tools/Internet Options/Connections/Lan Settings.
    Can I get this same code to turn of the 'Automatic configuration' check boxes instead or as well?
    Many thanks
    Luke

    Hi Luke,
    We hope your issue has been resolved
    The registry for use automatic configuration script is under HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\AutoConfigURL
    (For per user) It shows when script is set to work.
    Regarding to question about scripting or VB script, I’d suggest that post your issue at TechNet scripting Forum and MSND forum. There you can get more effective suggestion by other experts who familiar with scripting. Your understanding is highly appreciated.
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=vbgeneral
    And just for your reference, we do have a Group Policy for that, link it to a scope (Site, Domain, or OU level) which contain user account object.
    For more information please refer to following MS article:
    Configure a Registry Item
    https://technet.microsoft.com/en-us/library/cc753092.aspx
    Regards
    D. Wu
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Javascript events received in configurator scripts

    Can javascript events from photoshop like a new layer being created be sent to a configurator script function like in the HTML or a configurator embedded script? 

    You need check the document of extended script or Photoshop SDK, Configurator just generate a UI wrapper.
    So by my understanding, if you can do it in a normal *.jsx, then you can try add it to configurator panel.
    Check the exported panel folder, you can found a file with name <YourPanelName>.jsx. You can add your callback function there.
    Or you can create a standalone .jsx file, and use the scriptfile button.
    Or you can copy your .jsx file to preset/scripts, then call it as an menu item.

  • Returning Invalid type when reading auto configuration script

    Hi Everyone,
    I�m using the JDK 1.5 plug-in API for reading the proxy settings. It working fine for HTTP and DIRECT connection, but it�s not working with automatic configuration script. I followed the below procedure for reading the settings
    1. Installed and configured the Apache HTTP Server as a proxy server.
    2. Created a �proxy.pac� file and placed it in the �C:\WINDOWS� folder. Content of the file is given below.
    function FindProxyForURL(url, host)
    if (isInNet(myIpAddress(), "192.168.1.0", "255.255.255.0"))
      return "PROXY 192.168.1.165:80";
    else
      return "DIRECT";
    }3.Changed the Internet setting in IE by specifying the proxy automatic configuration location as �file://c:/windows/proxy.pac�
    4.Accessed the browser and it�s working fine as I can see in the apache log file.
    5.When I executed the below code it showing me the proxy connection as the Direct one.
    private static void detectProxyUsingJDK15()
        try
          System.setProperty("java.net.useSystemProxies", "true");
          List list = ProxySelector.getDefault().select(new URI(PROXY_DETECT_URL));
          for (Object aList : list)
            Proxy proxy = (Proxy) aList;
            System.out.println("Proxy : "+proxy);
            InetSocketAddress address = (InetSocketAddress) proxy.address();
            System.out.println("address : "+address);
            if (address == null)
              System.out.println("Proxy not defined");
            else
              System.out.println("" + address.getPort());
              System.out.println("" + address.getHostName());
              System.out.println("" + proxy.type().toString());
        catch (Exception e)
          e.printStackTrace();
      }Please note that when I executed the above code after changing the settings IE by disabling the automatic configuration script and giving the proxy server details it showed me the proxy connection as HTTP
    If anyone has any idea on how to fix this issue then please let me know
    Thanks

    Try to configure Java consolle to use the .pac file and not to use "browser setting"
    OA

  • Workstation Manager service clears Automatic Configuration Script Properties.

    We have a weird problem where when the workstation manager service
    starts it clears the Automatic Configuration Script within Internet
    Explorer. Now out of our 400 odd PCs, only about 3 are doing it. For
    now we have counter acted it by putting in an actual Proxy Server in,
    but if we disable the workstation manager service, restart the PC, the
    Automatic scripting is still in place.
    We have gone through the group polices, and through the Zen
    policies, we can't work out where Workstation Manager is receiving its
    instructions to do this?
    We are running Novell Client 4.9.1 SP2, we applied SP2 for the client
    to see if this would resolve the error but it didn't
    Thanks in advance,
    Jim

    I will follow those instructions in that TID you supplied me, you can
    log in as any user, and even if you tick the workstation only box, the
    problem still occurs.
    Thanks,
    Jim
    Jared Jennings wrote:
    > Jim,
    >
    > > We have gone through the group polices, and through the Zen
    > >policies, we can't work out where Workstation Manager is receiving its
    > >instructions to do this?
    >
    > What if you unassociate all policies from the user and workstation that
    > this happens to?
    >
    > Does it matter who logs into the machine?
    > You might enable group policy logging to find which policy is doing this.
    > http://support.novell.com/cgi-bin/se...i?10093312.htm
    >
    > --
    > Jared Jennings
    > Data Technique, Inc.
    > Novell Support Forums Sysop
    > http://wiki.novell.com

  • Configuring script for lt42

    Hi,
    I am able to print pickslips for single TO's by configuring a customized script in OMLV for warehouse which is compatible with standard print program RLVSDR40.
    But when i try printing multiple TO's from LT42 which uses standard print program RLKOMM40 it doesnot pick the form configured in omlv for the warehouse rather it takes up the standard Print layout.
    Can anyone tell me how do I configure the customized script for LT42??

    Hi,
    Try to configure Script in OMNU transaction code..i am not sure it is working or not...But OMNU also using to configure Scripts and Print programs for TO's.

  • Content Player Configuration - SCRIPT ERROR.

    Hi All,
    I launched content player configuration page using the url "http://hostname:portnumber/lms/mediator/config".
    Page got displayed but I am getting the script error " _htmlbMessageBar' is undefined " and " Object expected " in the browser status bar.
    Also HTMLB components in the page like table, tab, buttons are not displayed.
    Functions are working fine. Only the look and feel is not proper.
    Kindly help me to solve this issue.
    Regards
    Eben Joyson.

    Hi Eben.
    Always use a fully qualified domain name (FQDN): http://hostname.domain:portnumber/lms/mediator/config
    See note https://service.sap.com/sap/support/notes/1334956[1334956|https://service.sap.com/sap/support/notes/1334956] for details and explanation.
    Best regards,
    Aliaksandr Zhukau

  • SAMBA configuration in unix- to install heterogeneous system

    HI all,
    i have sap 4.7 central instance(hp-ux,oracle 9.2.0.6) server.  i want to add
    one more dialog instance which is loaded on Windows.
    for this i need to configure samba ( to avoid unix case sensitive problem, and user authentication problem ).
    I want to know how to configure samba in my unix server. which version i need to download and where to download.
    Please let me know the procedure.
    Regards,
    satish kumar

    If you´ve installed it then you can use the howtos on the following site:
    http://us3.samba.org/samba/docs/man/Samba-HOWTO-Collection/
    to configure it.
    Markus

  • Samba configuration on solarisintel 8

    hai i heve downloaded and installed samba server on my intel solaris 8 .. can any one help me to configure the server so that i can login from a widows desktop.
    help.. appriciated.
    konkani

    Modify the configuration file that resided in /usr/local/samba/lib/smb.conf
    For example:
    [global]
         workgroup =WORKGROUP
         netbios name = yourhostname
         default = global
         security = share
         encrypt passwords = yes
         server string = Samba V2.2.2
    [Shared_Folder]
         read list = guest,@guest
         writable = yes
         valid users = root,@root
         hide dot files = no
         path = /usr/local/src
         public = yes
    Of course, if you are want to join in Windows Domain, addional configure is necessary.

Maybe you are looking for