|
I have two questions. 1.please see my Script
; Sets the Login script as hidden. SetConsole("hide") ; Determines the OS type to either Server or Workstation $OSType = Checkversion()
If InGroup ("Domain Users") Use S: "\\TPE-APP04\Clipart$" Use M: "\\TPE-APP02\Share_M$" Use Q: "\\TPE-APP04\Template$" Use I: "\\TPE-FPS01\Common$" Use F: @HOMESHR EndIf
If InGroup( "MXTAIW") Use G: "\\TPE-FPS01\MX_Client$" Use P: "\\TPE-APP02\MX_Public$" Use J: "\\TPE-APP04\MX_AC$" Use O: "\\TPE-APP02\MX$" Use K: "\\TPE-APP02\MX_Program$" Use T: "\\TPE-APP04\AcNielsen$" Use H: "\\TPE-APP04\RainMaker$" Endif
If InGroup( "MSTAIW") Use G: "\\TPE-FPS01\MS_Client$" Use P: "\\TPE-APP02\MS_Public$" Use J: "\\TPE-APP04\AC_Buying$" Use K: "\\TPE-APP02\Program$" Use T: "\\TPE-APP04\AcNielsen$" Use H: "\\TPE-APP04\RainMaker$" Use O: "\\TPE-APP02\MS$" Endif
If InGroup( "CITAIW") Use G: "\\TPE-FPS01\CI_Client$" Use P: "\\TPE-APP02\CI_Public$" Use K: "\\TPE-APP02\Program$" Endif
If InGroup("IT") Use P: /DEL Use P: "\\TPE-APP02\Public$" Use X: "\\TPE-FPS01\FPS01_C$" Use W: "\\TPE-FPS01\FPS01_D$" EndIf
If InGroup("Results") Use J: /DEL Use J: "\\TPE-APP04\AC_OM$" EndIF
If InGroup("JWT") Use J: /DEL Use J: "\\TPE-APP04\AC_JWT$" EndIF
If InGroup("MCI") Use J: /DEL Use J: "\\TPE-APP04\AC_Buying$" EndIF
If InGroup("OM") Use J: /DEL Use J: "\\TPE-APP04\AC_OM$" EndIF
If InGroup ("MCI" Or "MDigital" ) Use T: "\\TPE-APP04\AcNielsen$" EndIf
Select Case InGroup("TeamB") Use O: /DEL Use O: "\\TPE-APP02\TeamB$" Case InGroup("TeamC") Use O: /DEL Use O: "\\TPE-APP02\TeamC$" Case InGroup("TeamD") Use O: /DEL Use O: "\\TPE-APP02\TeamD$" Case InGroup("MCI") Use O: /DEL Use O: "\\TPE-APP02\MCI$" Case InGroup("Mdigital") Use O: /DEL Use O: "\\TPE-APP02\Mdigital$" Case InGroup("MIM") Use O: /DEL Use O: "\\TPE-APP02\MIM$" Case InGroup("TeamA") Use O: /DEL Use O: "\\TPE-APP02\TeamA$" EndSelect
If InGroup("Domain Users") Run "cscript \\TPE-DCS01\NETLOGON\vbs\L_N_B_ID.vbs" Run "cscript \\TPE-DCS01\NETLOGON\vbs\GetDrive.vbs" EndIF
My Question is some users say they can't get the O driver in the Explorer,but when I manual to map this driver that exist already in the Explorer but it doesn't show out in the windows. please let me know what can I do?
2.how do I revise the executive person when users logon the server?
|