Mombu the Microsoft Forum

Go Back   Mombu the Microsoft Forum > Microsoft > 2003 Question
User Name
Password
REGISTER NOW! Mark Forums Read




Reply
1 30th October 10:31
kmonroe.mgbp
External User
 
Posts: 1
Default 2003 Question



What do you mean with MMX extended?
Group - [Console Root\Local Computer Policy] EXTENDED
I am aible to add any snap in to the console to create my own.

For the script also describe more in detail, does it run as startup
script or logon script?
LOGON
default domain policy / User Configuration / Windows settings /
Scripts / logon

Also post the script content and how did you start it.

---------------SCRIPT-START--------------
Option Explicit
Dim objNetwork
Dim strDriveLetter, strRemotePath, strUserName
strDriveLetter = "X:"
strRemotePath = "\\mgbp2k\users"
Set objNetwork = WScript.CreateObject("WScript.Network")
strUserName = objNetwork.UserName
objNetwork.MapNetworkDrive strDriveLetter, strRemotePath _
& "\" & strUserName
WScript.Echo " Share, check: "& strDriveLetter
WScript.Quit
---------------SCRIPT-END--------------
  Reply With Quote


 


2 30th October 10:33
meinolf weber
External User
 
Posts: 1
Default 2003 Question



Hello kmonroe.mgbp,

See inline.

Best regards

Meinolf Weber
Disclaimer: This posting is provided "AS IS" with no warranties, and confers
no rights.
** Please do NOT email, only reply to Newsgroups
** HELP us help YOU!!! http://www.blakjak.demon.co.uk/mul_crss.htm


Sorry, can not follow this path on my test machine to the "Group - [Console
Root\Local Computer Policy] EXTENDED"

If you use this one:

Option Explicit
Dim objNetwork, strUserName, strDriveLetter, strHomeServer
Set objNetwork = CreateObject("WScript.Network")
strDriveLetter = "X:"
strHomeServer = "\\mgbp2k\users"
strUserName =objNetwork.UserName
objNetwork.MapNetworkDrive strDriveLetter, strHomeServer & strUserName
Wscript.Echo " Share, check: " & strDriveLetter
WScript.Quit
  Reply With Quote
Reply


Thread Tools
Display Modes




666