CMD and UNC Paths in Login Script

D

David

I am running a .cmd file as a login script on Domain Controllers.

The script works fine on 2k boxes but every time it runs on a 2k3 box, the
following error message appears:

CMD.EXE was started with the above path as the current directory.
UNC paths are not supported. Defaulting to Windows directory.


The script still runs fine, but is there any way i can get rid of this error
message?


Thanks!
 
J

Jerold Schulman

I am running a .cmd file as a login script on Domain Controllers.

The script works fine on 2k boxes but every time it runs on a 2k3 box, the
following error message appears:

CMD.EXE was started with the above path as the current directory.
UNC paths are not supported. Defaulting to Windows directory.


The script still runs fine, but is there any way i can get rid of this error
message?


Thanks!

Add the following to the logon script:

REG ADD "HKCU\Software\Microsoft\Command Processor" /V DisableUNCCheck /T REG_DWORD /F /D 1

The second time it runs for a user, the message will be gone.

NOTE: REG.EXE is built into Windows XP and Windows Server 2003.
It is installed on Windows 2000 from the Support Tools folder on the Windows 2000 CD-ROM.

Alternately, store the following DisUNCCK.reg file in the netlogon share of each DC:
REGEDIT4

[HKEY_CURRENT_USER\Software\Microsoft\Command Processor]
"DisableUNCCheck"=dword:00000001


In the logon script, add
regedit /s %LOGONSERVER%\NETLOGON\DisUNCCK.reg

Jerold Schulman
Windows Server MVP
JSI, Inc.
http://www.jsiinc.com
http://www.jsifaq.com
 
A

Al Dunbar

ThorstenK said:
perhaps just beginn the script with a "cls" to get rid of the message.

That's what we do, and nobody has complained yet about it.

/Al
 
M

Mark V

[ ]
Add the following to the logon script:

REG ADD "HKCU\Software\Microsoft\Command Processor" /V
DisableUNCCheck /T REG_DWORD /F /D 1

That's interesting Jerold. XP, W2K3 only?
It seems not to have yet made it into a Tip. At least, a search on
DisableUNCCheck
does not hit.
[ ]
 
J

Jerold Schulman

[ ]
Add the following to the logon script:

REG ADD "HKCU\Software\Microsoft\Command Processor" /V
DisableUNCCheck /T REG_DWORD /F /D 1

That's interesting Jerold. XP, W2K3 only?
It seems not to have yet made it into a Tip. At least, a search on
DisableUNCCheck
does not hit.
[ ]

All versions of NT, from NT 4.0 - NT 5.2 (and beyond).
It will make the tips soon.

Jerold Schulman
Windows Server MVP
JSI, Inc.
http://www.jsiinc.com
http://www.jsifaq.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top