Jump to content

qwerty2nd

Member
  • Posts

    3
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Finland

About qwerty2nd

qwerty2nd's Achievements

0

Reputation

  1. Hello. I'm having problem mapping network share with Vista Business using script run by VPN client. There is no domain in this setup, only file server (win 2003 std) in its own workgroup and few clients that connect to servers file share over vpn tunnel. The clients use Zyxel's Zywall ipsec VPN client to open the tunnel and it is configured to run a script that maps the share from server. The problem is that the script does not work in Vista if run by the VPN client. The script is simple logon.cmd (net use x: \\server\share /user:server\user password). Heres what I have tried: -Adjust the ntlm level with secpol.msc -Set more user rights to share -Disabled UAC -Disabled firewall -Different kind of script (VBS) -add 1. Added EnableLinkedConnections reg value ( http://support.microsoft.com/kb/937624 ) But so far nothing have worked. The drive appears under network location but has big red X over it and showing as disconnected network drive. If I try to access it I get "Logon failure: unknown user name or bad password" announcement. This might not sound like big problem since the share is accessible by running the script manually or mapping the share manually but some users find even that too complicated and difficult to be done everytime VPN tunnel is opened.. Here is view from Vista / network location Here is view from server after the VPN client has run the drive mapping script This is the alternate VBS script I used ' From the book, "Windows XP Cookbook" ' ISBN: 0596007256 ' ------ SCRIPT CONFIGURATION ------ strDrive = "x:" strPath = "\\server\share" strUser = "server\user" strPassword = "password" boolPersistent = false ' True = Persistent ; False = Not Persistent ' ------ END CONFIGURATION --------- set objNetwork = WScript.CreateObject("WScript.Network") objNetwork.MapNetworkDrive strDrive, strPath, boolPersistent, _ strUser, strPassword WScript.Echo "Successfully mapped drive"
  2. Now I managed to do it. I just put these ENFORCECACHE=1 LOCALCACHEDRIVE=c:\ straight to setup command. For somereason it did not do the cache when I had those in setup.ini.
  3. Hello. I'm trying to get office 2003 installed from UNC path so that it would also install that local installation source, MSOcache. This way the updates can be installed without the original UNC install source. But the problem is that I cannot get the install to do it. I don't know what I'm doing wrong. I have office install files (.cab, setup.exe, setup.ini and custom.mst) in my UNC path and i have no problems with install but that local MSOcache folder. In setup.ini I've tried lines: [Cache] ENFORCECACHE=1 LOCALCACHEDRIVE=c:\ (I have the newer setup.exe) I also tried these lines: [Cache] PURGE=0 CDCACHE=auto DELETEABLECACHE=0 and I've tried to run setup.exe with switch /b like told here http://helpnet.installshield.com/robo/proj..._EXECmdLine.htm Should that MSOcache folder even appear with these install options?
×
×
  • Create New...