问题描述
我运行命令语法"cacls d:\ dd/t/g every:r"来访问网络共享文件夹.
但是向我显示了确认消息.
我想这样做,而无需要求确认或安静模式来执行上述命令语法.
我将如何在命令提示符下执行?
请任何人以正确的方式帮助我...
I run to command syntax ''cacls d:\dd /t /g everyone:r'' for access the network share folder.
But confirmation msg shown to me.
I want to do that, without being asked for confirmation or quiet mode to execute above command syntax.
How will i perform in command prompt???
please anybody help me in right way...
推荐答案
someApplication.exe /param1 /param2:value < userinput
在.NET应用程序的代码中,您可以通过使用System.Diagnostics.Process.Start
重定向输入流System.Diagnostics.Process.StandardInput
来实现.您还可以重定向StandardOutput
和StandardError
字符串.
请查看带有输入重定向的示例代码: http://msdn.microsoft.com /en-us/library/system.diagnostics.process.standardinput.aspx [ ^ ].
另请参见 http://msdn.microsoft.com/en-us/library/system.marshalbyrefobject. aspx [^ ].
In the code of you .NET application, you can do it by redirecting of the input stream System.Diagnostics.Process.StandardInput
using System.Diagnostics.Process.Start
. You can also redirect StandardOutput
and StandardError
strings.
Please see the sample code with input redirection: http://msdn.microsoft.com/en-us/library/system.diagnostics.process.standardinput.aspx[^].
See also http://msdn.microsoft.com/en-us/library/system.marshalbyrefobject.aspx[^].
这篇关于进入安静模式命令提示符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!