System error 67 has occurred

System error 67 has occurred


What does the "System error 67 has occurred" message mean?

This can happen when using the NET USE networking command.

Let's use an example. When mapping a drive on a server and launching some application using a script, we usually use the NET USE networking command. For example, the following script:

:mapApache
If Exist "Q:\Apache_v14_4_1\" Goto :launch

:mapQ
net use Q: /delete
net use Q: \\web-server-01\Apache\ /persistent:yes
 
:launch
cd /d Q:\QRMAL14_1_176

call Apache_ERFMain.exe
pause
exit

If you do the mapping with the red back slash, you will receive the System error 67 has occurred error message.

In layman's terms, this really means "the network name cannot be found."

This message happens because of the back slash. The back slash signifies that you are looking for a folder lower than Apache_v14_4_1. The solution is to get rid of the 2nd slash. So, the statement would be the following:

net use Q: \\web-server-01\Apache /persistent:yes

System error 67 occurred related message

The System error 67 occurred message is very similar to the System error 85 has occurred message as it also relates to mapping.

Where can I find more information?

The NET USE command page provides a lot of helpful information relevant to this topic.

The NET SHARE command page talks about sharing folders from the server perspective.

I need help with System error 67 has occured

See our discussion forum, some answers related to System error 67 has occured can be found there.

By the way, here is one related article: Snap-in failed to initialize.

.

Discuss this article or this topic in our discussion forum:
(The table bellow shows a list of 8 most recent topics posted in our discussion forum. Visit our discussion forum to see more. It is possible the links below are not related to this page, but you can be certain you will find related posts in the discussion forum. You can post one yourself too.)
Email this article to a friend:
TO: 
FROM: 
2 + 6 - 3 = 
.
How can I link to this web page?

It is easy, just include the code provided below into your HTML code.

<a href="http://www.maxi-pedia.com/system+error+67+has+occured" title="www.Maxi-Pedia.com: System error 67 has occurred" target="_blank">System error 67 has occurred</a>
.