Registry: Unterschied zwischen den Versionen

Aus xinux.net
Zur Navigation springen Zur Suche springen
Zeile 48: Zeile 48:
 
==del share "misc"==
 
==del share "misc"==
 
  net conf delshare misc
 
  net conf delshare misc
 +
==restore registry shares==
 +
net registry import shares.reg

Version vom 25. Juni 2014, 19:49 Uhr

first look

keys

tdbtool /var/lib/samba/registry.tdb keys

keys and values

tdbtool /var/lib/samba/registry.tdb dumps

shares in the registry

smb.conf

you must add this

registry shares = yes 

add the share "misc"

net conf addshare misc /daten/misc writeable=y guest_ok=n "misc share in registry"

look in the share misc in registry

net registry export  HKLM\Software\Samba /dev/stdout | grep -A 3 misc

[HKLM\SOFTWARE\Samba\smbconf\misc]
"path"="/daten/misc"
"comment"="misc share in registry"
"guest ok"="no"
"read only"="no"

test the share

 smbclient -U% -L localhost
Domain=[XINUX] OS=[Unix] Server=[Samba 4.1.8-SerNet-Ubuntu-8.trusty]

	Sharename       Type      Comment
	---------       ----      -------
	IPC$            IPC       IPC Service (Samba 4.1.8-SerNet-Ubuntu-8.trusty)
	sysvol          Disk
	netlogon        Disk
	misc            Disk      misc share in registry
Domain=[XINUX] OS=[Unix] Server=[Samba 4.1.8-SerNet-Ubuntu-8.trusty]

	Server               Comment
	---------            -------

	Workgroup            Master
	---------            -------

add values to a share "misc"

net conf setparm  misc "browseable" "no"

delete values from a share "misc"

net conf delparm  misc "browseable

save registry shares

net registry export  HKLM\software\samba  shares.reg

del share "misc"

net conf delshare misc

restore registry shares

net registry import shares.reg