search for: bat

Displaying 20 results from an estimated 4065 matches for "bat".

Did you mean: at
2008 Feb 29
1
patch for random.c
Dear all, while looking for some inspiration of how to organise some code, I studied the code of random.c and noticed that for distributions with 2 or 3 parameters the user is not warned if NAs are created while such a warning is issued for distributions with 1 parameter. E.g: R version 2.7.0 Under development (unstable) (2008-02-29 r44639) [...] > rexp(2, rate=Inf) [1] NaN NaN Warning
2011 Aug 06
1
3.5.9: logon scripts are not working under non root user
...l is OK. logon script is working, but it's totally not working under all other users. turning on debugging reveals that under non root it's incorrectly parsing the logon script name from config (adding full network path to filename) unix_convert called on file "ancor-srv/netlogon/logon.bat" unix_convert begin: name = ancor-srv/netlogon/logon.bat, dirpath = , start = ancor-srv/netlogon/logon.bat Intermediate not found ancor-srv but it's parsing correctly when login under root user unix_convert called on file "logon.bat" unix_convert begin: name = logon.bat, dirpath...
2014 Dec 16
2
Samba "%G" replacement not working in "Logon script" ?
Dear all, I experience now a strange bug with Samba 4.1.11 : When I define a fixed-name as logon script in smb.conf, it works : logon script = employee.bat But if I try either %g.bat or %G.bat, or even "%G.bat", it doesn't work : * logon script = %g.bat * logon script = %G.bat * logon script = "%G.bat" In the logs, there was a message showing that Samba was trying to open the "%G.bat" file and that the file...
2014 Dec 27
2
Bug found in Samba 4 ?
...al post, below, I gave some details about smb.conf, but to summarize: * I am using Samba 4.1.11. * server role = classic primary domain controller * domain logons = yes * domain master = yes * When I define a fixed-name as logon script in smb.conf, it works : * logon script = employee.bat * But if I try either %g.bat or %G.bat, or even "%G.bat", it doesn't work : * logon script = %g.bat * logon script = %G.bat * logon script = "%G.bat" I can give more details, now: * I tried this, which proves that while only %U is working, all others (%G, %g, %...
2003 Feb 21
1
2.2.7a - lot of open/close calls
I'me trying to track down a performance problem as I posted yesterday and as I increase the log level I've noticed this... [2003/02/21 08:19:06, 2] smbd/open.c:open_file(245) dm389245 opened file mr00257.bat read=Yes write=No (numopen=1) [2003/02/21 08:19:06, 2] smbd/close.c:close_normal_file(213) dm389245 closed file mr00257.bat (numopen=0) [2003/02/21 08:19:06, 2] smbd/open.c:open_file(245) dm389245 opened file mr00257.bat read=Yes write=No (numopen=1) [2003/02/21 08:19:06, 2] smbd/close.c:close_...
2014 Dec 21
2
Samba "%G" replacement not working in "Logon script" ?
Dear Ricky, Thanks a lot for your answer. But I still have two problems: 1. I am not using samba as AD DC but as PDC. 2. What I would need is the primary group... Do you thinks %WORKGROUP% could work ? 3. And should I use %WORKGROUP% in smb.conf or in batch login script... Thanks a lot in advance for your help... Denis Le 18.12.2014 21:58, Ricky Nance a ?crit : > Dennis, if you are running samba as an AD DC, you will need to use the new variable names %ACCOUNTNAME% and %WORKGROUP%. > > Ricky > > On Tue, Dec 16, 2014 at 1:2...
2014 Dec 26
4
Bug found in Samba 4 ?
...4 01:25, Denis BUCHER a ?crit : > >> Dear Ricky, Thanks a lot for your answer. But I still have two problems: 1. I am not using samba as AD DC but as PDC. 2. What I would need is the primary group... Do you thinks %WORKGROUP% could work ? 3. And should I use %WORKGROUP% in smb.conf or in batch login script... Thanks a lot in advance for your help... Denis Le 18.12.2014 21:58, Ricky Nance a ?crit : Dennis, if you are running samba as an AD DC, you will need to use the new variable names %ACCOUNTNAME% and %WORKGROUP%. Ricky On Tue, Dec 16, 2014 at 1:23 PM, Denis BUCHER <dbucherml at h...
2014 Dec 31
2
Bug found in Samba 4 ?
...etails about smb.conf, but to summarize: > > * I am using Samba 4.1.11. > * server role = classic primary domain controller > * domain logons = yes > * domain master = yes > > * When I define a fixed-name as logon script in smb.conf, it works : > * logon script = employee.bat > * But if I try either %g.bat or %G.bat, or even "%G.bat", it doesn't work : > > * logon script = %g.bat > * logon script = %G.bat > * logon script = "%G.bat" > > I can give more details, now: > > * > > I tried this, which proves that...
2009 Jun 29
4
wine / vcvarsall.bat
Hi there, I am trying to play with wine and I cannot figure out how to read a bat file that would define some env var for me. I followed instructions from: http://appdb.winehq.org/objectManager.php?sClass=version&iId=14208 And everything seems to be installed nicely for me (thanks to winetricks !): $ find ~/.wine | grep nmake /home/mathieu/.wine/drive_c/Program Files/M...
2015 Jan 04
2
Bug found in Samba 4 ?
...etails about smb.conf, but to summarize: > > * I am using Samba 4.1.11. > * server role = classic primary domain controller > * domain logons = yes > * domain master = yes > > * When I define a fixed-name as logon script in smb.conf, it works : > * logon script = employee.bat > * But if I try either %g.bat or %G.bat, or even "%G.bat", it doesn't work : > > * logon script = %g.bat > * logon script = %G.bat > * logon script = "%G.bat" > > I can give more details, now: > > * > > I tried this, which proves that...
2006 Aug 02
5
Finding the position of a variable in a data.frame
...I can find the row by doing a subset on the data.frame but how do I find out here "blaw " is in columns without manually counting them or converting names(Df) to a list and reading down the list. Simple example cat <- c( 3,5,6,8,0) dog <- c(3,5,3,6, 0) rat <- c (5, 5, 4, 9, 0) bat <- c( 12, 42, 45, 32, 54) Df <- data.frame(cbind(cat, dog, rat, bat)) Df subset(Df, bat >= 50) ----results cat dog rat bat 5 0 0 0 54 Thus I know that my target is in row 5 but how do I figure out where 'bat' is? All I want to do is be able to say Df[5,4] <- 100...
2004 Feb 01
3
Several logon script bat files?
I simply wonder if I can have several different logon script bat files for MS Win users that validates through my Samba PDC? Let's say that group "users" should have logon batch users.bat and the members of the group "sales" should have both users.bat and sales.bat executed at logon? Or can I in some way use ONE script with parameters t...
2002 Sep 25
1
Win95 .bat Issue
For some reason I'm getting Access denied errors when I try to execute a .bat file that resides on a TRU64 samba share, from a Win95 command prompt. The drive is mapped as x:\ & for the sake of testing, the directory has been recursively set to 777 (chmod). Command prompt output: x:\> x:\r235\src\ntprpst\sharc\mta\src\build_sharc_fta.bat Access denied - x:\r235\src\...
2014 Dec 29
0
Bug found in Samba 4 ?
...nf, but > to summarize: > > - I am using Samba 4.1.11. > - server role = classic primary domain controller > - domain logons = yes > - domain master = yes > - When I define a fixed-name as logon script in smb.conf, it works : > - logon script = employee.bat > - But if I try either %g.bat or %G.bat, or even "%G.bat", it doesn't > work : > - logon script = %g.bat > - logon script = %G.bat > - logon script = "%G.bat" > > I can give more details, now: > > - > > I tried this,...
2006 Apr 06
12
net drive mapping not working in login script
...[U ] User SID: S-1-5-21-1439502771-4027299746-1242570080-3004 Primary Group SID: S-1-5-21-1439502771-4027299746-1242570080-513 Full Name: aillin Home Directory: \\ucd01\aillin\.9xprofile HomeDir Drive: P: Logon Script: \\ucd01\netlogon\aillin.bat Profile Path: \\ucd01\profiles\.msprofile Domain: UCD Account desc: Workstations: vim /vavr/lib/samba/netlogon/aillin.bat echo Setting Current Time... net time UCD01 /set /yes echo Mapping Network Drives to StressFree File Server UCD01... net use k: UCD01protel net use s: U...
2008 Jan 19
0
batchfiles 0.4-0
batchfiles 0.4-0 consists of a set of Windows Vista .bat, .hta and .pl files. More information is available on the home page: http://batchfiles.googlecode.com CHANGES - now tested with Vista exclusively (use 0.3-2 instead on XP) - sweave.bat now has no dependencies on the other batch files. With...
2008 Jan 19
0
batchfiles 0.4-0
batchfiles 0.4-0 consists of a set of Windows Vista .bat, .hta and .pl files. More information is available on the home page: http://batchfiles.googlecode.com CHANGES - now tested with Vista exclusively (use 0.3-2 instead on XP) - sweave.bat now has no dependencies on the other batch files. With...
2014 Dec 31
0
Bug found in Samba 4 ?
...using Samba 4.1.11. >> - server role = classic primary domain controller >> - domain logons = yes >> - domain master = yes >> >> >> - When I define a fixed-name as logon script in smb.conf, it works : >> - logon script = employee.bat >> - But if I try either %g.bat or %G.bat, or even "%G.bat", it doesn't >> work : >> >> >> - logon script = %g.bat >> - logon script = %G.bat >> - logon script = "%G.bat" >> >> I can give more details, n...
2002 Jun 25
7
SAMBA-LDAP and variable substition
Hello, Im using Samba and LDAP together and if I use the scriptPath attribute for a user defined in LDAP, it seems that variable substitions no longer work like they did when you're using the global logon script parameter in smb.conf. example: scriptPath = scripts\%m.bat ==> %m.bat is NOT substituted to machinename.bat Because the "logon scripts" directive of smb.conf will no longer be used when using Samba and LDAP together, I'm wondering how I can take advantage of variable substition? Or am I missing something? If you have any information,...
2003 May 13
2
Samba 2.2.8a smbd/vfs.c:reduce_name not handling sym links correctly
I am seeing some odd behavior on a Solaris 8 system. If I try to access a symlinked file, reduce_name is having a problem with the link >From a level 10 log: [2003/05/12 11:50:12, 3, pid=18558] lib/util.c:(387) unix_clean_name [/disk2/OC192/syee_test1.bat] [2003/05/12 11:50:12, 3, pid=18558] smbd/vfs.c:(800) reduce_name [disk2/OC192/syee_test1.bat] [/vobstore] [2003/05/12 11:50:12, 3, pid=18558] smbd/vfs.c:(574) vfs_ChDir to disk2/OC192 [2003/05/12 11:50:12, 3, pid=18558] smbd/vfs.c:(574) vfs_ChDir to /vobstore [2003/05/12 11:50:12, 3, pid=185...