1
是否有可能使用vbscript以編程方式加密文件(使用EFS)。是否有任何EFS API可以在Windows 7上與c#一起使用?如何使用vbscript使用EFS加密文件?
是否有可能使用vbscript以編程方式加密文件(使用EFS)。是否有任何EFS API可以在Windows 7上與c#一起使用?如何使用vbscript使用EFS加密文件?
我翻譯你的答案爲C#:
WshShell sh1 = new WshShell();
var retval = sh1.Run("CIPHER /E /S:" & strDir, 0, True);
還沒有答案!同時一個選項是使用如下因素腳本
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")