Put an item in Startup folder without admin rights

1

I need to put a script in windows 7 (Enterprise) at startup after the login, but I don't have the admin rights. We need to put it for all users who use this computer.

I share a computer at work with a few more people. If I can put in the this script in startup, it is really going to help all of us. The company is very big and hence there is a lot of red tape involved if I asked the IT department to do it for us.

I have already ascertained that I can't even boot up with a USB or a CD. So, booting up with some Windows PE operating system is also out of the question.

Is there any way of doing it?

Ali Syed

Posted 2014-04-05T17:05:25.373

Reputation: 161

This cannot be done without administrator privileges. – Ramhound – 2014-04-05T17:10:42.570

:( really? There has t o be way! – Ali Syed – 2014-04-05T17:11:08.257

Yes; Really; You really do need Administrator permissions to do this. – Ramhound – 2014-04-05T17:11:48.293

I mean, it is windows... aren't there any open loop holes? – Ali Syed – 2014-04-05T17:12:42.777

No What you want requires Administrator permissions. Since you cannot change what programs start up when a user logs in. Why don't you just create a shortcut that is started manually by the user instead? – Ramhound – 2014-04-05T17:14:52.257

Answers

2

No with the details provided it's not possible.

If you are able to change boot order, you could boot of a USB/CD containing a operating system and manually place script in start folder for all users. You could also use offline registry editor if booting off a CD/USB.

If you cannot change boot order then the only other option would be to exploit a process running as administrator on the computer. Unless you can write you own shellcode and have an understanding of exploits I would stay away from that area. As exploits are not always what they claim to be you never know what shellcode that exploit might run on your system.

Tim Jonas

Posted 2014-04-05T17:05:25.373

Reputation: 506