如何使用带有vbscript的EFS加密文件?

时间:2013-01-12 12:17:09

标签: c# encryption vbscript

是否可以使用vbscript以编程方式加密文件(使用EFS)。是否有任何可以与Windows 7上的c#一起使用的EFS API?

2 个答案:

答案 0 :(得分:1)

我将你的答案翻译成C#:

WshShell sh1 = new WshShell(); 
var retval = sh1.Run("CIPHER /E /S:" & strDir, 0, True); 

答案 1 :(得分:0)

还没有答案!同时一个选择是使用以下脚本

Dim strDir, objShell, FSO, WshShell
strDir = "D:\TestFolder"
Set objShell = CreateObject("Shell.Application")
Set FSO = CreateObject("Scripting.FileSystemObject")
Set WshShell = WScript.CreateObject("WScript.Shell")
retval = WshShell.Run("CIPHER /E /S:" & strDir, 0, True)
MsgBox("Success")