5天后VB.Net自我删除

时间:2014-11-18 07:09:49

标签: vb.net self-destruction

我必须执行以下代码。

Dim Info As ProcessStartInfo = New ProcessStartInfo()
Info.Arguments = "/C ping 1.1.1.1 -n 1 -w 3000 > Nul & Del """ & Application.ExecutablePath.ToString & """"    
Info.WindowStyle = ProcessWindowStyle.Hidden
Info.CreateNoWindow = True
Info.FileName = "cmd.exe"
Process.Start(Info)`

代码将删除执行时的文件。如何对程序进行编码,以便在首次执行后5天调用该函数。

提前致谢。

1 个答案:

答案 0 :(得分:0)

您可以执行以下操作

1-创建一个Windows服务应用程序,检查此链接以获取更多信息 Developing Windows Service Applications

2-使用计时器,查看此链接以获取更多信息

Windows service and timer

希望这会对你有所帮助