Ask a Question related to Windows Server, Design and Development.
-
Preet #1
Mapping Command
What command enetered at the DOS prompt of a Windows XP
machine will drive letter(eg K) that is located on the
windows 2003 Server
Preet Guest
-
Acrobat 6.01: File Command disappears on Command Bar
On the Command Bar (File, Edit, View, etc.) the File Command disappears in many Acrobat operations. Is there a parameter available to insure that... -
RUN/execute a Command-Line command from an ASP page
Hi, I need to RUN/execute a Command-Line command from an ASP page. This is the command: sse45.exe -i k:\o\2.wmv -o k:\o\2.shh -w 128 -df 0 -m 2... -
Windows Explorer Right Click Command (+ Custom Command Script)
Ok got a tricky question about custom scripts, I would like to add a Windows Explorer Right Click Command - that allows me to select an image/s... -
Multi command files and running them from the command prompt
Use the -td§ option . Details are in the section titled Command Line Processor Options in the Command Reference. "Derek Clarkson"... -
change key mapping for Option and Command on Mac OS 9.x
Hi, I am doggedly trying to use a PC keyboard on my G4 here at work. :) It's running OS 9.0.4. I've found articles explaining how to use... -
Dave #2
Re: Mapping Command
Preet wrote:
You want to map a drive K: ??> What command enetered at the DOS prompt of a Windows XP
> machine will drive letter(eg K) that is located on the
> windows 2003 Server
NET USE
[devicename | *] [\\computername\sharename[\volume] [password | *]]
[/USER:[domainname\]username]
[/USER:[dotted domain name\]username]
[/USER:[username@dotted domain name]
[/SMARTCARD]
[/SAVECRED]
[[/DELETE] | [/PERSISTENT:{YES | NO}]]
NET USE {devicename | *} [password | *] /HOME
NET USE [/PERSISTENT:{YES | NO}]
Dave Guest
-
-
Login Script
I got exam tommorroow and I am revising the exam but
cudnt find this answer just need to know how it would be
wrriten, if u cud please help me in this, Will be highly
obliged thank u, Following is my exact question and got
windows server at my uni, I am at home so cant even do it
proper way, Just need the answer.
What command enetered at the DOS prompt of a Windows XP
machine will drive letter k:to the \cp685\Data directory
that is located on the windows 2003 Server named ITMS
DEMO.
Thanks heeps
Guest
-
TheSingingCat #5
Re: Login Script
Depending on what server authenticates the client, that server will also run
the logon script. If you need a different logon script to run for a
particular person/group etc. You may just have to write another logon
script (and duplicate the commands in the first if desired) with the other
commands you want to execute. From there, just designate the new script for
the users who need it.
Perhaps there is an easier way or I misunderstood your desired results, but
I *think* that method would at least work.
tsc
"Dave" <1@1.ca> wrote in message
news:u4QzFq7UEHA.3788@TK2MSFTNGP12.phx.gbl...> Can I write a login script for 1 particular server?
TheSingingCat Guest
-
Richard Gutery #6
Re: Login Script
net use k: \\ ITMSDEMO\\cp685\Data
if you want the drive mapping to be to reconnected at next login use the
/persistent:yes switch
<anonymous@discussions.microsoft.com> wrote in message
news:1d5c001c453bb$ec05f660$a401280a@phx.gbl...>
> I got exam tommorroow and I am revising the exam but
> cudnt find this answer just need to know how it would be
> wrriten, if u cud please help me in this, Will be highly
> obliged thank u, Following is my exact question and got
> windows server at my uni, I am at home so cant even do it
> proper way, Just need the answer.
>
> What command enetered at the DOS prompt of a Windows XP
> machine will drive letter k:to the \cp685\Data directory
> that is located on the windows 2003 Server named ITMS
> DEMO.
>
> Thanks heeps
Richard Gutery Guest
-
Roland Hall #7
Re: Login Script
"Richard Gutery" <rgutery@mentorits.com> wrote in message
news:el60q17UEHA.3016@tk2msftngp13.phx.gbl...
: net use k: \\ ITMSDEMO\\cp685\Data
no space after \\
\\ only once
\\server\share
: if you want the drive mapping to be to reconnected at next login use the
: /persistent:yes switch
net use k: \\servername\sharename
persistent mapping across reboots
net use k: \\servername\sharename /persistent:yes
no persistence
net use k: \\servername\sharename /persistent:no
to connect as another user that has same password as the account your logged
on as
net use k: \\servername\sharename /u:domain\username
[note: if it is different and password is omitted, you will be prompted to
enter it]
to connect as another user with a different password
net use k: \\servername\sharename password /u:domain\username
you can also add all of this together
net use k: \\servername\sharename password /u:domain\username /persistent:no
to map next available drive [all other applies]
net use * \\servername\sharename
to make an anonymous connection
net use \\servername\ipc$ "" /u:""
Note:
servername can also be IP address or FQDN
Ex.
net use * \\servername.subdomain.domain.com\sharename password
/u:subdomain.domain.com\username /persistent:no
net use * \\xxx.xxx.xxx.xxx\sharename password /u:xxx.xxx.xxx.xxx\username
/persistent:no
[note: xxx.xxx.xxx.xxx = ip address]
to delete a mapping
net use k: /del
or delete all mappings
net use * /del
[note: you will be asked to confirm]
HTH...
--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Online Support for IT Professionals -
[url]http://support.microsoft.com/servicedesks/technet/default.asp?fr=0&sd=tech[/url]
How-to: Windows 2000 DNS:
[url]http://support.microsoft.com/default.aspx?scid=kb;EN-US;308201[/url]
FAQ W2K/2K3 DNS:
[url]http://support.microsoft.com/default.aspx?scid=kb;EN-US;291382[/url]
Roland Hall Guest



Reply With Quote

