> For the complete documentation index, see [llms.txt](https://windows.dfirhandbook.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://windows.dfirhandbook.com/windows-artifacts/persistence/crowdstrike-searches/files-written-to-startup-folder.md).

# Files Written to Startup Folder

````splunk-spl
event_platform=win
| search event_simpleName IN ("*Written*")
| search ComputerName="*" ```Change this to search for a specific host```
| search FilePath="*\\Start Menu\\Programs\\Startup*" 
| table _time, event_simpleName, aid, ComputerName, FileName, FilePath
````
