Hi all, hi Friedrich,

I need to update a REG_EXPAND_SZ setting:

Original:
---------
HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\SubSystems\Windows
%SystemRoot%\system32\csrss.exe ObjectDirectory=\Windows
SharedSection=1024,20480,768 Windows=On SubSystemType=Windows
ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3
ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16

Must become:
------------
%SystemRoot%\system32\csrss.exe ObjectDirectory=\Windows
SharedSection=1024,20480,8192 Windows=On SubSystemType=Windows
ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3
ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16

So the part, that has to be changed is:
SharedSection=1024,20480,768
into:
SharedSection=1024,20480,8192
The third number (768) is the size of non-interactive (services)
sessions, and has to become: 8192

So how can I accomplish this with SB?

Can somebody please help me?

--
Best regards,
Jeffrey