I have script of powershell that create ftp site this how I can run this script in on-startup using setup factory program

有帮助吗?

解决方案

on-startup(before setup begin)

runscript("NameOfYourPowerShell.ps1");


function runscript(path)
l1="C:\\WINDOWS\\system32\\windowspowershell\\v1.0\\powershell.exe C:\\"
l2=path
    file = io.open("c:\\runscript.bat","w");
    file:write(l1..l2);
    file:close("c:\\runscript.bat");
    Shell.Execute("c:\\runscript.bat", "", "", "", SW_HIDE,true);
    File.Delete("c:\\runscript.bat");
end
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top