Hi Vladimir, Plases read the Rules: <http://wpkg.org/Support> Vladimír Pšenička wrote: > WPKG path user is domain account (in Domain Users group), which have > access to network share, where is SW > WPKG execution context users is SYSTEM > > This combination doesnt work (access denied) For me it does perfectly. I guess you probably did not specify a full user name including the domain prefix. You need to specify the username to access the share in the form "<domain>\<user>" not user "<user>" as Windows will use a local user name in this case. Here is a sample configuration which works for me (settings.xml): <?xml version="1.0" encoding="UTF-8"?> <configuration> <file>\\software\RemInst\wpkg\wrapper.js</file> <path-user>MYDOMAIN\domainuser</path-user> <path-password>*hashed-password*</path-password> <exec-user>SYSTEM</exec-user> <exec-password></exec-password> <parameters>/synchronize</parameters> <silent>YES</silent> <pre-action></pre-action> <post-action></post-action> <show-GUI>NO</show-GUI> <logon-delay>0</logon-delay> <logon-message-1>Installing apps.</logon-message-1> <logon-message-2>do not reboot</logon-message-2> <script-variable name="SOFTWARE">\\software\RemInst\software</script-variable> <script-variable name="SETTINGS">\\software\RemInst\settings</script-variable> <priority>normal</priority> <stop-service-after-done>YES</stop-service-after-done> <laptop-mode>YES</laptop-mode> <server-connecting-method>standard</server-connecting-method> <server-connecting-ip>software</server-connecting-ip> <server-connecting-timeout>3</server-connecting-timeout> <server-connecting-script-timeout>3</server-connecting-script-timeout> <server-connecting-script-file></server-connecting-script-file> </configuration> br, Rainer |