We have just converted workstations from xp to Win7. Users get network shares via batch scipt login scripte (ie: logon1.bat). Below is the login script.
@Echo off
CLS
@Net USE /persistent:no
@Net Use * /Delete /Y
@net use H: "\\abc-san\Users\%USERNAME%"
@net use P: "\\abc-san\Shared\Public"
@net use S: "\\abc-san\Shared"
@net use L: "\\abc-san\abc2\ABC\CONFIDENTIAL"
@net use N: "\\abc-san\abc2\ABC\FISCAL ADMINISTRATION"
@net use U: "\\abc-san\abc2\ABC"
cscript \\abc-san\shared\Public\Notices\Login\Update.vbs
Call p:\notices\advisory\advisory.bat
Only a select set of users get the L: and N: drive mappings. In XP if a user was not a member of the "ABC-Confidential" group or "ABC-Fiscal" group the login script would continue to run and just bypass trying to map a drive. In Windows 7 we have found that the login script will hang on mapping drive L: if the user is not a member of "ABC-Confidential" and on drive N: if the user is not a member of "ABC-Fiscal". Is therre a setting in Windows 7 to ignore this and just continue mapping the drives?
I would appreciate any assistance as we are currently at a loss. The person who created these scripts is long gone.