|
Answer» I need to create a simple auto EXECUTION file.
One of them is for example that everytime the computer boots, it will create a folder. For example it will create a folder called hello.
Is it possible to make an auto execution file for that? Thank YOUSO you want something that would make a folder every time the computer boots? ASSUMING you have WINDOWS XP, you could make a batch file: @echo off md hello exit That as a batch file would create a folder named 'hello' and if you want that to happen every boot, put it in the Task Scheduler and have it run every time the computer bootsOr you could put it in the startup folder, or use the registry to make it start every time you boot.
|