|
Question : logon script >nul part
|
|
There is a logon script net use m: \\server\share /yes>nul. What does /yes>nul mean? THX
|
Answer : logon script >nul part
|
|
The >nul just stops the command window from displaying a correct connection
If we use >nul at the end...
C:\>net use Z: \\server1\share /yes>nul
we get no feedback, but if we dont use >nul
C:\>net use Z: \\server1\share /yes The command completed successfully.
it tells us that it has been completed sucessfully
|
|
|